[Math] How to prove that Unitary Transformation is isometric

isometrylinear algebranormed-spaces

I am studying Image Processing in which unitary transforms play an important role, one reason that I found for their use in image transformation is isometry(they preserve distance), I found a relevant answer for this on the same site The difference between an isometric operator and a unitary operator on a Hilbert space?. Where to prove the same author starts with, $$||Tx-Ty||=||x-y||$$this can be proven by $$|T|||x-y||$$ where $|T|=1$ and T is unitary, but here he further adds on to prove that

"Because of the definition of the norm in terms of the inner product and the definition of adjoint operators, this is equivalent to $$⟨T^HTx,x⟩=⟨x,x⟩\quad\quad \forall x$$ This implies that $T^H T=I$. Conversely, if $T^H T=I$, you can show that T is an isometry"

Now this proof is necessary other wise any matrix with determinant 1 can be used for transformation, which off course isn't true. Can somebody help me with the missing link, I am not an expert in linear algebra and just know basics of norm.

Best Answer

First, notice that if we have two vectors $$ v = \begin{pmatrix} v_1 \\ v_2 \\v_3 \end{pmatrix} \ \ w = \begin{pmatrix} w_1 \\ w_2 \\w_3 \end{pmatrix} $$

we can rewrite the dot product $$\langle v, w\rangle = v^H \times w = \begin {pmatrix} v_1^* & v_2^* & v_3^*\end{pmatrix} \times \begin{pmatrix} w_1 \\ w_2 \\ w_3 \end{pmatrix}$$

Now, we wish to show that the operators that preserve distances are exactly the unitary operators.

Let $T: V \to V$ be any operator.

Now, to show that $T$ preserves distances, we need that $$ \langle T v, T w \rangle = \langle v, w \rangle $$

this is because, if $T$ preserves the inner product structure, then it also preserves the metric generated by the inner product ($|v| = \sqrt{\langle v, v \rangle})$

Now,

$$ \langle T v, T w \rangle = (T v)^H \times (T w) = (v^H T^H) (Tw) = v^H (T^HT) w $$

However, we want $$ \langle T v, T w \rangle = \langle v, w \rangle $$

So this implies that,

$$ v^H (T^HT) w = v^H w \\ \implies T^H T = I $$

which tells us that any operator $T$ that preserves the inner product structure (and hence the metric) must be unitary.

Related Question