How can I decide which are the connected components by looking at the eigenvectors of laplacian matrix ?
I have the following adjacency matrix (all nodes are different), and have created the Laplacian matrix. I calculated the eigenvalues:
$λ_1 = 0$, $λ_2 = 0$, $λ_3 = 1$ which mean there is 2 connected components.
The eigenvectors are :
(0,x2,x3) and (-x2,x2,0) as calculated using this site:
https://matrixcalc.org/en/vectors.html
I was wondering, how can I find the connected components using the eigenvectors?