Combining both the transpose and the complex conjugation, we achieve the Hermitian of a matrix. This concept is also known as the conjugate transpose. Symbolically, it's represented as \(\text{A}^{\text{\text{dag}}}\).
Start with the given matrix \(\text{A}\):
\(\text{A} = \begin{pmatrix} 1 & 0 & 2i \ i & -3 & 0 \ 1 & 0 & i \ ewline \end{pmatrix}\),
First find the conjugate:
\(\bar{\text{A}} = \begin{pmatrix} 1 & 0 & -2i \ -i & -3 & 0 \ 1 & 0 & -i \ ewline \end{pmatrix}\).
Next, transpose this conjugate:
\((\bar{\text{A}})^{\text{T}} = \begin{pmatrix} 1 & -i & 1 \ 0 & -3 & 0 \ -2i & 0 & -i \ ewline \end{pmatrix}\).
The final result is our Hermitian matrix. Breaking the process down you see\
- first transpose element wise
then complex conjugate - 1 remained 1
- -3 stays in position (2,2)
- -2i becomes 2i
Therefore \({(1,-i,1), (0,-3,0), (-2i,0,-i)}\). Summarizing this process follows two logical steps as previously shown.