M HYPE SPLASH
// updates

Transpose of conjugate transpose?

By Emma Payne
$\begingroup$

What is the transpose of a conjugate transpose? Let's say we have a matrix $A$ and its conjugate transpose $A^{*}$, would the transpose of the conjugate transpose be the conjugate of $A$, i.e. $\bar{A}$?

Would one represent that as follows:

$A^{*T} = \bar{A}$

I have seen this written out as numpy code, but I don't know how to represent it.

$\endgroup$

1 Answer

$\begingroup$

The transpose of the transpose is the original matrix, as transposition is an involution.

So you're right, the transpose of the conjugate transpose of a matrix $A$ is just the conjugate $\bar A$, although I think this notation is not heavily used in linear algebra.

$\endgroup$ 3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy