Intuition behind Eigenvalue solution matrix

eigenvalues-eigenvectorsintuitionlinear algebra

I've been watching the excellent course by 3Blue1Brown on Linear Algebra which is oriented towards giving students intuition into Linear Algebra concepts.

I am trying to find an intuitive way to understand the matrix we use to calculate eigenvalues. Specifically, I am trying to get an intuition for the matrix shown below (screen snapshot from 3Blue1Brown course).

Matrix for calculating Eigenvalues

I understand the derivation of this matrix calculation. I also understand that the determinant of this matrix is zero because the matrix transformation is "transforming" into a lower dimension because many (eigen) vectors are being collapsed/transformed into a single span in the new "transformed" vector space.

However, I'm trying to get an intuition as to what does it mean to subtract a scalar from the diagonal of a matrix.

That is, can anyone give me a geometric or algebraic intuition as to what it means to subtract off a scalar value from the diagonal of a matrix?

Best Answer

The scalars are being subtracted from the diagonal because those scalars times the identity matrix are being subtracted from the other matrix:

$\begin{bmatrix} 3 & 1 & 4\\ 1 & 5 & 9\\ 2 & 6 & 5 \end{bmatrix}$$\begin{bmatrix} 1 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & 1 \end{bmatrix}$

One way to visualize this would be to imagine the transformation of the first matrix, imagine the transformation of the scalar matrix, and then imagine subtracting the vectors from the second transformation from the first.

That's why this method finds eigenvalues. In both cases the eigenvectors are basically just being scaled by the same amount, so when they're subtracted from one another they produce the zero vector.

Related Question