Calcular la descomposición en valores singulares de una matriz $\mathbf{A}\in\mathbb{C}^{m\times n}_{\rho}$ $$ \mathbf{A} = \mathbf{U} \, \Sigma \, \mathbf{V}^{*} = % U \left[ \begin{array}{cc} \color{blue}{\mathbf{U}_{\mathcal{R}}} & \color{red}{\mathbf{U}_{\mathcal{N}}} \end{array} \right] % Sigma \left[ \begin{array}{cc} \mathbf{S}_{\rho\times \rho} & \mathbf{0} \\ \mathbf{0} & \mathbf{0} \end{array} \right] % V \left[ \begin{array}{c} \color{blue}{\mathbf{V}_{\mathcal{R}}}^{*} \\ \color{red}{\mathbf{V}_{\mathcal{N}}}^{*} \end{array} \right] \\ \\ \tag{1} $$ La belleza de la SVD es que proporciona una base ortonormal para los cuatro subespacios fundamentales de una matriz $\mathbf{A}\in\mathbb{C}^{m\times n}$ $$ \begin{align} % \mathbf{C}^{n} = \color{blue}{\mathcal{R} \left( \mathbf{A}^{*} \right)} \oplus \color{red}{\mathcal{N} \left( \mathbf{A} \right)} \\ % \mathbf{C}^{m} = \color{blue}{\mathcal{R} \left( \mathbf{A} \right)} \oplus \color{red} {\mathcal{N} \left( \mathbf{A}^{*} \right)} % \end{align} $$ Para calcular la SVD,
- Resolver el dominio encontrando los vectores propios de $\mathbf{A}^{*}\mathbf{A}$ . Salida: matriz de valores singulares $\mathbf{S}$ , $\color{blue}{\mathbf{V}_{\mathcal{R}}}$ .
- Compute $\color{blue}{\mathbf{U}_{\mathcal{R}}}$ utilizando $\mathbf{S}$ y $\color{blue}{\mathbf{V}_{\mathcal{R}}}$
1. Resolver $\ \color{blue}{\mathcal{R} \left( \mathbf{A}^{*} \right)}$
Primer paso :
Calcular la matriz del producto $$ % \begin{align} % \mathbf{W} = \mathbf{A}^{T}\mathbf{A} = % \left[ \begin{array}{cr} 2 & -1 \\ 2 & 1 \\ \end{array} \right] \left[ \begin{array}{rr} 2 & 2 \\ -1 & 1 \\ \end{array} \right] % = % \left[ \begin{array}{cc} 5 & 3 \\ 3 & 5 \\ \end{array} \right] % \end{align} % $$
Paso 2 :
Calcular el espectro de valores propios $\lambda \left(\mathbf{W}\right)$
$$ \det \mathbf{W} = 16, \qquad \text{trace } \mathbf{W} = 10 $$ El polinomio característico es $$ p(\lambda) = \lambda^{2} - \lambda \text{ trace } \mathbf{W} + \det \mathbf{W} = \lambda ^2-10 \lambda +16 = \left( \lambda - 8 \right) \left( \lambda - 2 \right) $$ Las raíces del $p(\lambda)$ son los valores propios de $\mathbf{W}$ : $$ \lambda \left(\mathbf{W}\right) = \left\{ 8, 2 \right\} $$
Paso 3 :
Calcular el espectro de valores singulares $\sigma$
Para obtener los valores singulares: forma $\tilde{\lambda}$ una lista ordenada de forma decreciente con $0$ valores eliminados: $$ \sigma = \sqrt{\tilde{\lambda}} = \left\{ 2\sqrt{2}, \sqrt{2} \right\} $$ Los valores singulares son las entradas diagonales del $\mathbf{S}$ : $$ \boxed{ \mathbf{S} = \sqrt{2}\left[ \begin{array}{cc} 2 & 0 \\ 0 & 1 \\ \end{array} \right] } $$
Paso 4 :
Calcular los vectores propios de $\mathbf{W}$
Herramienta fundamental: ecuación de valores propios $$ \mathbf{W} v_{k} = \lambda_{k} v_{k}, \qquad k = 1, 2 $$
$k=1$ : $$ % \begin{align} % \mathbf{W} v_{1} &= \lambda_{1} v_{1} \\ % \left[ \begin{array}{cc} 5 & 3 \\ 3 & 5 \\ \end{array} \right] % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] % &= % 8 % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] \\[3pt] % % % \left[ \begin{array}{c} 5 x + 3 y \\ 3 x + 5 y \\ \end{array} \right] &= \left[ \begin{array}{c} 8x \\ 8y \\ \end{array} \right]\\[3pt] % % % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] &= \left[ \begin{array}{c} 1 \\ 1 \\ \end{array} \right] % \end{align} % $$ El vector normalizado es el primer vector columna en $\color{blue}{\mathbf{V}_{\mathcal{R}}}$ . $$ \hat{v}_{1} = \frac{1}{\sqrt{2}} \left[ \begin{array}{r} 1 \\ 1 \\ \end{array} \right] $$
$k=2$ : $$ % \begin{align} % \mathbf{W} v_{2} &= \lambda_{2} v_{2} \\ % \left[ \begin{array}{cc} 5 & 3 \\ 3 & 5 \\ \end{array} \right] % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] % &= % 2 % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] \\[3pt] % % % \left[ \begin{array}{c} 5 x + 3 y \\ 3 x + 5 y \\ \end{array} \right] &= \left[ \begin{array}{c} 2x \\ 2y \\ \end{array} \right]\\[3pt] % % % \left[ \begin{array}{c} x \\ y \\ \end{array} \right] &= \left[ \begin{array}{c} -1 \\ 1 \\ \end{array} \right] % \end{align} % $$ El vector normalizado es el segundo vector columna en $\color{blue}{\mathbf{V}_{\mathcal{R}}}$ . $$ \hat{v}_{2} = \frac{1}{\sqrt{2}} \left[ \begin{array}{r} -1 \\ 1 \\ \end{array} \right] $$ Ensamblar: $$ \boxed{ \color{blue}{\mathbf{V}_{\mathcal{R}}} = \frac{1}{\sqrt{2}} % \left[ \begin{array}{cr} 1 & -1 \\ 1 & 1 \\ \end{array} \right] } $$
2. Resolver $\ \color{blue}{\mathcal{R} \left( \mathbf{A} \right)}$
Reorganizar (1) para recuperar $$ \color{blue}{\mathbf{U}_{\mathcal{R}}} = \mathbf{A} \color{blue}{\mathbf{V}_{\mathcal{R}}} \mathbf{S}^{-1} $$
El poder de la SVD es que alinea la $\color{blue}{range}$ y tiene en cuenta las diferencias de escala. Esto permite el cálculo directo mediante la ecuación (1): $$ \begin{align} \color{blue}{\mathbf{U}_{\mathcal{R}}} = \mathbf{A} \color{blue}{\mathbf{V}_{\mathcal{R}}} \mathbf{S}^{-1} % &= \left[ \begin{array}{rc} 2 & 2 \\ -1 & 1 \\ \end{array} \right] % \frac{1}{\sqrt{2}} \left[ \begin{array}{cr} 1 & -1 \\ 1 & 1 \\ \end{array} \right] % Sinv \left[ \begin{array}{cc} \frac{1}{2 \sqrt{2}} & 0 \\ 0 & \frac{1}{\sqrt{2}} \\ \end{array} \right] % \end{align} % $$ Por fin, $$ \boxed{ \color{blue}{\mathbf{U}_{\mathcal{R}}} = \left[ \begin{array}{cc} 1 & 0 \\ 0 & 1 \\ \end{array} \right] } $$
Respuesta final
$$ \mathbf{A} = \color{blue}{\mathbf{U}_{\mathcal{R}}} \mathbf{S} \color{blue}{\mathbf{V}_{\mathcal{R}}}^{*} = % \left[ \begin{array}{cc} 1 & 0 \\ 0 & 1 \\ \end{array} \right] % \sqrt{2} \left[ \begin{array}{cc} 2 & 0 \\ 0 & 1 \\ \end{array} \right] \frac{1}{\sqrt{2}} % \left[ \begin{array}{cr} 1 & -1 \\ 1 & 1 \\ \end{array} \right] % % $$