Fina a singular value decomposition for $$A=\begin{bmatrix} -2 & 2 \\ -1 & 1 \\ 2 & -2\end{bmatrix}.$$ Find a (full svd)singular value decomposition for the matrix $A$.
My working thus far not sure how to determine u2 and u3 . A little confused on the whole process. ANy workings step by step that can assit would be appreciated.
$$A^TA=\begin{pmatrix} 9 & -9 \\ -9 & 9 \end{pmatrix}$$
For the eigenvalue $\lambda=18$ I found a normalized eigenvector of $\frac{1}{\sqrt 2}\begin{pmatrix} -1 \\ 1 \end{pmatrix}$. For $\lambda=0$ I found an eigenvector of $\frac{1}{\sqrt 2}\begin{pmatrix} 1 \\ 1 \end{pmatrix}$ and so $$V=\frac{1}{\sqrt{2}}\begin{pmatrix} -1 & 1 \\ 1 & 1 \end{pmatrix}.$$ $\Sigma$ is the $3\times 2$ matrix whose diagonal is composed of the singular values $$\Sigma=\begin{pmatrix} \sqrt{18} & 0 \\ 0 & 0 \\ 0&0 \end{pmatrix}.$$
$$U1=\begin{pmatrix}\frac{2}{3} \frac{1}{3} \frac{-2}{3}\end{pmatrix}.$$
Your $A$ is rank $1$, as you can see by inspection. Thus the shape of $U,\Sigma,V^T$ in the reduced SVD are $3 \times 1,1 \times 1$ and $1 \times 2$ respectively. So you were actually done before computing the eigenvector with eigenvalue $0$.
If you want a full SVD, then you need shapes of $3 \times 3,3 \times 2$ and $2 \times 2$. To assemble this, you need to compute a unit eigenvector of $A$ with eigenvalue zero (which will be any unit vector orthogonal to $v_1$). This will be your $v_2$, which completes the set of right singular vectors. Then you need to get vectors $u_2,u_3$ that $\{ u_1,u_2,u_3 \}$ is an orthonormal system; this completes the set of left singular vectors.