Derivation: From Eigenvalues to Singular Values
The SVD
Matrix Spaces from the SVD
Eckart-Young: Low-Rank Approximation
Key SVD Properties
Properties Checklist
- $\text{rank}(A) = $ number of nonzero singular values
- Nonzero eigenvalues of $A^TA$ and $AA^T$ are identical — but $AA^T$ has $(m-n)$ extra zero eigenvalues when $m > n$
- Therefore: eigenvalues of $A^TA \neq$ eigenvalues of $AA^T$ in general (P8.1 is false)
- Removing a zero row does NOT change nonzero singular values (P8.3 is true for zero rows)
- Singular values are always non-negative — they don't tell you the sign of eigenvalues of $A$
- If $A$ is square and diagonalizable: $U = V$ (same eigenvectors, just different names)
- SVD is not unique: signs of columns of $U$ and $V$ can flip simultaneously
Practice Problems
Worked Answer
Eigenvalues of $A_1^TA_1$: $\lambda^2 - 40\lambda + (400-256) = 0 \Rightarrow \lambda^2 - 40\lambda + 144 = 0$
$\lambda = \frac{40 \pm \sqrt{1600-576}}{2} = \frac{40 \pm 32}{2}$, so $\lambda_1 = 36$, $\lambda_2 = 4$.
$\sigma_1 = \sqrt{36} = 6$, $\sigma_2 = \sqrt{4} = 2$
Worked Answer
$\lambda_j = \sigma_j^2$: $\lambda_1 \approx 1129.6$, $\lambda_2 \approx 121.9$, $\lambda_3 \approx 8.1$. Total $\approx 1259.6$.
$p=1$: $1129.6/1259.6 \approx 89.7\%$ — not enough.
$p=2$: $(1129.6+121.9)/1259.6 \approx 99.4\%$ — exceeds 96%.
$p = 2$ components
Worked Answer
P5.1 FALSE: $A_5^TA_5 \in \mathbb{R}^{3\times 3}$ has eigenvalues $\{1,4,9\}$. $A_5A_5^T \in \mathbb{R}^{4\times 4}$ has eigenvalues $\{1,4,9,0\}$. Not identical — $AA^T$ has an extra zero.
P5.2 TRUE: Nonzero singular values = $\sqrt{9}=3$, $\sqrt{4}=2$, $\sqrt{1}=1$. ✓
P5.3 TRUE: The last row of $A_5$ is all zeros. Removing it doesn't change the singular values. ✓
Answer: P5.2 and P5.3, not P5.1
Worked Answer
Insufficient information.
Singular values are eigenvalues of $A_6^TA_6$ (always non-negative). They don't tell us the eigenvalues of $A_6$ itself, which could be positive or negative. $\sigma_4 = 0$ means $A_6$ is singular, but that alone doesn't determine PSD, PD, or indefinite status.
Worked Answer
Null space basis = right singular vectors corresponding to $\sigma = 0$. Since the null space is 2D (2 zero singular values), we want the last 2 columns of $V_6$ (columns 3 and 4 of the $4\times 4$ matrix $V_6$). Answer: (c).