I'm trying to solve this:
Let $$D_{0}=\begin{bmatrix} 1 & 4\\ 2 & 5\\ 3 & 6 \end{bmatrix}$$
Find a D such that $$D^{*}D=I$$$$\operatorname{Im}D_{0}=\operatorname{Im}D$$ (D* is complex conjugate transpose of D)
I tried as following:
Calculate $$\operatorname{Im}D_{0}=\begin{Bmatrix} \begin{bmatrix} 1 \\ 0 \\ -1 \end{bmatrix} & \begin{bmatrix} 0\\ 1\\ 2 \end{bmatrix} \end{Bmatrix}$$
Gram-Schmidt orthogonalization process: $$\begin{bmatrix} 1\\ 0\\ -1 \end{bmatrix}\rightarrow \begin{bmatrix} 1\\ 0\\ -1 \end{bmatrix},\qquad\begin{bmatrix} 0\\ 1\\ 2 \end{bmatrix}\rightarrow \begin{bmatrix} 1\\ 1\\ 1 \end{bmatrix}$$
Let $$ v_{1}=\begin{bmatrix} 1\\ 0\\ -1 \end{bmatrix},\quad v_{2}=\begin{bmatrix} 1\\ 1\\ 1 \end{bmatrix},\quad v_{3}=\begin{bmatrix} a\\ b\\ c \end{bmatrix}$$ We have $$D=\begin{bmatrix} v_{1} &v_{2} &v_{3} \\ \end{bmatrix}$$
Because D*D=I, D is an unitary matrix. So $$\langle v_{1},v_{3}\rangle =0$$ and $$\langle v_{1},v_{3}\rangle =0$$
Solve above inner product equation. I have: $$D=\begin{bmatrix} 1/\sqrt{2} &1/\sqrt{3} & 1/\sqrt{6}\\ 0&1/\sqrt{3}&-2/\sqrt{6}\\ -1/\sqrt{2}&1/\sqrt{3}&1/\sqrt{6}\ \end{bmatrix}$$ Check my result: $D^*D = I$ -> correct
But the problem is: $$\operatorname{Im}D=\begin{bmatrix} 1 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & 1 \end{bmatrix}\neq \operatorname{Im}D_{0}???$$ Am I wrong?
You cannot have a $3 \times 3$ unitary matrix (which is known to be invertible) with a 2D (dimension 2) image space, because that would mean that the kernel is 1D (by rank-nullity theorem) ; alas, a matrix with a 1D kernel is not invertible. Contradiction...
You must look for a matrix $D$ which is $3 \times 2$ (3 lines and 2 columns).