Find the SVD form of the matrix $$A = \begin{pmatrix} 1 & 1 \\ 1& 1 \\ 1& 1 \end{pmatrix}$$
First, I calculated
$$A^TA = \begin{pmatrix} 3 & 3 \\ 3 & 3\end{pmatrix}$$
whose eigenvalues are $\lambda_1=6$, $\lambda_2=0$, so we get the singular values $\mu_1=\sqrt 6$ and $\mu_2=0$. Then the orthonormal eignvectors are: $u_1=1/\sqrt2 (1,1)$ And $u_2= 1/\sqrt2 (1,-1)$. So, I found the two matrix $\sum$ and $U^T$ where the SVD for A is of the form: $A=V \sum U^T$. I'm not sure how to find the orthogonal matrix V since I have a singular value which equals 0! Moreover i cannot multiply matrix because $\sum$ is not invertible. How can I finish it and get the SVD form for matrix $A$?
I am using information about SVD from the wikipedia page.