1 Answers
๐ What is a Unitary Matrix?
A unitary matrix is a complex square matrix $U$ whose conjugate transpose is also its inverse. In simpler terms, if you take a unitary matrix, find its conjugate transpose (take the transpose and then take the complex conjugate of each entry), and multiply the result by the original matrix, you should get the identity matrix. This property is crucial in quantum mechanics and signal processing.
- ๐ข Definition: A complex square matrix $U$ is unitary if $U^*U = UU^* = I$, where $U^*$ is the conjugate transpose of $U$ and $I$ is the identity matrix.
- ๐ฐ๏ธ Historical Context: Unitary matrices became prominent with the development of quantum mechanics in the early 20th century, where they describe transformations that preserve probability amplitudes.
โ๏ธ Key Principles of Unitary Matrices
Understanding the core principles behind unitary matrices makes solving problems easier. Here are the main aspects to consider:
- ๐ Preservation of Length: ๐ Unitary matrices preserve the length (or norm) of vectors. Mathematically, if $U$ is unitary and $x$ is a vector, then $||Ux|| = ||x||$. This is often described as $U$ being an isometric transformation.
- ๐ Preservation of Inner Product: ๐ฏ Unitary matrices also preserve the inner product between vectors. If $U$ is unitary and $x$ and $y$ are vectors, then $
= $. - โจ Eigenvalues: ๐ The eigenvalues of a unitary matrix have an absolute value of 1, lying on the unit circle in the complex plane. In other words, if $\lambda$ is an eigenvalue of $U$, then $|\lambda| = 1$.
- ๐ Orthonormal Columns (and Rows): ๐งฎ The columns (and rows) of a unitary matrix form an orthonormal basis. This means that each column has a length of 1, and any two distinct columns are orthogonal (their inner product is zero).
๐งช Solving Problems: Demonstrating Unitary Matrix Properties
Let's dive into solving problems to illustrate unitary matrix properties with examples.
Example 1: Verifying a Matrix is Unitary
Consider the matrix: $U = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix}$
To show $U$ is unitary, we need to prove $U^*U = I$. First, we find the conjugate transpose $U^*$. $U^* = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix}^* = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix}$
Now multiply $U^*U$: $U^*U = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix} \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix} = \frac{1}{2} \begin{bmatrix} 2 & 0 \\ 0 & 2 \end{bmatrix} = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} = I$
Since $U^*U = I$, the matrix $U$ is unitary.
Example 2: Preserving Vector Length
Let $U = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix}$ (as above) and $x = \begin{bmatrix} 1 \\ 1 \end{bmatrix}$. Then $Ux = \frac{1}{\sqrt{2}} \begin{bmatrix} 1+i \\ -i+1 \end{bmatrix}$.
$||x|| = \sqrt{1^2 + 1^2} = \sqrt{2}$. $||Ux|| = \sqrt{\left(\frac{1+i}{\sqrt{2}}\right)\left(\frac{1-i}{\sqrt{2}}\right) + \left(\frac{1-i}{\sqrt{2}}\right)\left(\frac{1+i}{\sqrt{2}}\right)} = \sqrt{\frac{2}{2} + \frac{2}{2}} = \sqrt{2}$.
Therefore, $||Ux|| = ||x||$, demonstrating that $U$ preserves vector length.
Example 3: Orthonormal Columns
Consider the columns of $U = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 & i \\ -i & 1 \end{bmatrix}$, which are $c_1 = \frac{1}{\sqrt{2}} \begin{bmatrix} 1 \\ -i \end{bmatrix}$ and $c_2 = \frac{1}{\sqrt{2}} \begin{bmatrix} i \\ 1 \end{bmatrix}$. Let's check their orthonormality:
- ๐ The length of $c_1$ is $||c_1|| = \sqrt{\left(\frac{1}{\sqrt{2}}\right)^2 + \left(\frac{-i}{\sqrt{2}}\right)\left(\frac{i}{\sqrt{2}}\right)} = \sqrt{\frac{1}{2} + \frac{1}{2}} = 1$. Similarly, $||c_2|| = 1$.
- ๐ The inner product $
= \left(\frac{1}{\sqrt{2}}\right)\left(\frac{-i}{\sqrt{2}}\right) + \left(\frac{-i}{\sqrt{2}}\right)\left(\frac{1}{\sqrt{2}}\right) = \frac{i}{2} - \frac{i}{2} = 0$.
The columns are orthonormal.
๐ก Conclusion
Unitary matrices are essential in many areas of mathematics and physics. Understanding their properties and how to demonstrate them is critical. By mastering these concepts, you'll be well-equipped to tackle advanced problems involving unitary transformations.
Join the discussion
Please log in to post your answer.
Log InEarn 2 Points for answering. If your answer is selected as the best, you'll get +20 Points! ๐