Relation between second eigenvalue of Laplacian and Spectral Clustering
Contents
Relation between second eigenvalue of Laplacian and Spectral Clustering¶
\( \rightarrow \) If \( \phi^* \) is conductance of \( G, \) we can use \( v_2(L) \) to find a cut of conductance
\( \rightarrow \) For any vector \( v, \)
\( \rightarrow \) We saw that \( v_1 = \bar{1} \frac{1}{\sqrt{n}} \)
where
\( \underline{Claim:} \) We can also write
Consider a set \( S \subseteq V \)
where
\( \rightarrow \) If \( u \perp \bar{1}, \) then denominator of \( (2) \)
\( \rightarrow \) Rayleight quotient for \( S \)
Hence \( \lambda_2 \) is really a “relaxed”/soft version of \( \sigma(G) / \phi(G) \)
Cheeger’s Inequality¶
\( \hspace{3mm} \) Implies that using \( v_2, \) we can find a cut where expansion is
Spectral Clustering¶
\( \rightarrow \) For regular graphs
\( \hspace{5mm} - \) Find \( L = dI - A \) or \( I - \frac{1}{d}A \)
\( \hspace{5mm} - \) Find \( v_2(L) \)
\( \hspace{5mm} - \) Sort all vertices by their coordinates of \( v_2 \)
\( \hspace{5mm} - \) Find best prefix i.e. \( S_i = \{ 1, ..., i \} \) as per new numbering

Fig. 28 Spectral Clustering¶
\( \\ \hspace{5mm} \) n cuts \( \rightarrow \) report one with smallest conductance
\( \rightarrow \) For non-regular graphs,
\( \hspace{5mm} - L = I - D^{-1/2}AD^{-1/2} \)
\( \hspace{5mm} - \) Calculate \( v_2(L) \) and still find best prefix cut
\( \hspace{5mm} - \) If \( \phi^* \) is optimal conductance cut, we are guaranteed a cut of conductance no more that \( O(\sqrt{\phi^*} logn) \)

Fig. 29 Sorting of vertices in Spectral Clustering¶