LINEAR-ALGEBRA
| Formula | Name | Description |
|---|---|---|
| Column recipe | Column of tells how decomposes in the basis | |
| Change of basis | Relates two matrix representations of the same | |
| Eigenvector condition | If basis is eigenvectors, | |
| Power of diagonal | Eigenbasis makes iteration trivial |
One transformation wears a tangled matrix in the standard basis and a clean diagonal one in its eigenbasis.
๐ก Challenge: set or and watch 's off-diagonal entries vanish โ both matrices coincide.
Applying times means in the standard basis, but only in the eigenbasis.
๐ก The eigenbasis is the dream, but finding it costs about โ which is why large-scale work leans on the cheaper, nearly-diagonalizing Fourier and wavelet bases.
Each column of a transformation's matrix is simply the coordinates of where a basis vector lands.
Question 1
Let be a linear transformation. Using the standard basis , suppose
What is the matrix of in the standard basis?
โ Correct! Each becomes column , not row .
โ Not quite. You wrote the coefficients as rows instead of columns. The vector goes down column 1, not across row 1.
โ Not quite. Remember: column of is exactly the coefficient vector of in the chosen basis.
Solution:
Column of the matrix is the coefficients of in the basis.
Stacking these as columns:
The answer is [[3, -2], [5, 4]].
Question 2
Suppose and are similar matrices related by for some invertible .
True or False: and represent different linear transformations.
โ Correct! Similar matrices describe the same in different bases โ the matrix is just a costume.
โ Not quite. Similar matrices describe the same transformation. The formula is exactly how the same looks under a change of basis.
โ Not quite. Try again โ the hints above can help.
Solution:
The statement is False.
Similar matrices represent the same linear transformation , just expressed in different bases. The matrix is the change-of-basis matrix that translates coordinates from one basis to the other:
Read right to left: start with a vector in the -basis, apply to translate to the -basis, apply (the transformation), then apply to translate back. Same transformation โ different coordinate language.
This is the central insight of the video: a transformation is one thing, but its matrix depends on the basis.
Question 3
A linear transformation has three eigenvectors forming a basis, with eigenvalues , , .
What is the matrix of in the eigenvector basis ?
โ Correct! In the eigenvector basis, is diagonal with the eigenvalues on the diagonal.
โ Not quite. Those would be eigenvalues of , not . Since , column has (not ) on the diagonal.
โ Not quite. Using the column recipe with the eigenvector condition produces a diagonal matrix.
Solution:
Apply the column recipe in the eigenvector basis:
So the matrix is:
This is the central magic of the eigenvector basis: becomes diagonal, and every direction is independent.
Question 4
For an image with about pixels, we'd love to diagonalize transformations like blurring or compression using the eigenvector basis. In practice, engineers use the Fourier basis or wavelet basis instead.
What is the main reason for this choice?
โ Correct! The eigenvector basis is the ideal but unreachable choice; Fourier and wavelet bases are the practical near-diagonal alternatives.
โ Not quite. The eigenvector basis diagonalizes exactly, but its cost () is prohibitive at scale. Fourier and wavelets diagonalize approximately โ that's the trade.
Solution:
The eigenvector basis would be the ideal choice โ it diagonalizes perfectly. But finding eigenvectors of an matrix costs roughly operations, and at this is around operations โ completely impractical, and numerically unstable too.
The engineering compromise:
These bases aren't the true eigenvectors, but they're close enough that the resulting matrix is approximately diagonal, while being cheap to compute. That trade โ perfect diagonalization for computational feasibility โ is the heart of modern signal processing.
Solved: 0 / 4