LINEAR-ALGEBRA · Interactive Practice | Unit 31 · Video 4
| Formula | Name | Description |
|---|---|---|
| Singular Value Decomposition | orthogonal; diagonal () | |
| Orthogonal inverse | Inverse equals transpose — free! | |
| Pseudo-inverse of | Invert nonzero entries, transpose the shape | |
| Moore–Penrose pseudo-inverse | The "inverse that always exists" |
Reciprocate each nonzero singular value, leave the zeros untouched, and transpose the shape.
💡 As a singular value shrinks toward , its reciprocal explodes — which is why real algorithms threshold tiny singular values to rather than inverting them.
The products and carry exactly ones on the diagonal — projections, never the full identity.
💡 A matrix with a null space cannot have a true two-sided inverse; these projections are the closest to the identity the null spaces allow.
With more equations than unknowns, returns the line that minimizes the squared residuals.
Question 1
A diagonal matrix has a nonzero singular value on its diagonal. In the pseudo-inverse , what value sits in the corresponding diagonal position?
✅ Correct! Each nonzero singular value is inverted: 4 → 1/4.
❌ Not quite. The pseudo-inverse takes the reciprocal of each nonzero singular value.
Solution:
To build , each nonzero singular value is replaced by its reciprocal:
So becomes . (Zeros stay zero — we never divide by zero.)
Question 2
Suppose is a matrix. What are the dimensions of its pseudo-inverse ?
✅ Correct! The shape transposes: a 3×4 matrix gives a 4×3 pseudo-inverse.
❌ Not quite. Remember that building Σ⁺ also transposes the shape from m×n to n×m.
Solution:
Building has two steps: invert the nonzero entries, and transpose the shape.
If is , then is .
For that is , the pseudo-inverse is .
Question 3
True or False: For a rank-deficient matrix, the product always equals the identity matrix.
✅ Correct! It is a projection with only r ones on the diagonal — not the identity.
❌ Not quite. ΣΣ⁺ is a projection onto the column space; the null space directions become zeros.
Solution:
The statement is False. The product is a projection, not the identity.
It is an matrix with exactly ones on the diagonal (where is the rank) and zeros for the remaining null-space directions. For a rank-deficient matrix, is smaller than the matrix size, so there are trailing zeros and the result cannot be the identity.
A matrix with a null space cannot have a true two-sided inverse — the projections (onto the column space) and (onto the row space) are the closest thing to identity the null spaces allow.
Question 4
Starting from and using the fact that and are orthogonal, which expression gives the pseudo-inverse ?
✅ Correct! Reversing the order and using the orthogonal inverses gives A⁺ = V Σ⁺ Uᵀ.
❌ Not quite. Reverse the factor order and use V⁻¹=Vᵀ (so (Vᵀ)⁻¹=V) and U⁻¹=Uᵀ.
Solution:
To invert a product, reverse the order and invert each factor:
Now use orthogonality:
Everything collapses cleanly to:
The transposes fall out for free because and are orthogonal — all the difficulty stayed quarantined inside .
Solved: 0 / 4