Suppose that a [[matrix]] M contains [[Arithmetic/Complex|complex numbers]]. Then the [[wp:conjugate transpose|conjugate transpose]] of M is a matrix M^H containing the [[complex conjugate]]s of the [[matrix transposition]] of M. ::: (M^H)_{ji} = \overline{M_{ij}} This means that row j, column i of the conjugate transpose equals the
complex conjugate of row i, column j of the original matrix. In the next list, M must also be a square matrix. * A [[wp:Hermitian matrix|Hermitian matrix]] equals its own conjugate transpose: M^H = M. * A [[wp:normal matrix|normal matrix]] is commutative in [[matrix multiplication|multiplication]] with its conjugate transpose: M^HM = MM^H. * A [[wp:unitary matrix|unitary matrix]] has its [[inverse matrix|inverse]] equal to its conjugate transpose: M^H = M^{-1}.
This is true [[wikt:iff|iff]] M^HM = I_n and iff MM^H = I_n, where I_n is the identity matrix.
;Task: Given some matrix of complex numbers, find its conjugate transpose. Also determine if the matrix is a: ::* Hermitian matrix, ::* normal matrix, or ::* unitary matrix. ;See also: * MathWorld entry: [http://mathworld.wolfram.com/ConjugateTranspose.html conjugate transpose] * MathWorld entry: [http://mathworld.wolfram.com/HermitianMatrix.html Hermitian matrix] * MathWorld entry: [http://mathworld.wolfram.com/NormalMatrix.html normal matrix] * MathWorld entry: [http://mathworld.wolfram.com/UnitaryMatrix.html unitary matrix]