adjoint of a matrix with real entries?

1.7k Views Asked by At

An adjoint matrix $A^*$ is equivalent to the matrix conjugate transpose $A$, but I thought conjugate can only be calculated when there's complex entries. How do I go about calculating the conjugate of a matrix with only real entries, $$A=\begin{bmatrix} 1 & 1 \\ 1 & -1 \\ 0 & 1\end{bmatrix},$$ for example.

2

There are 2 best solutions below

0
On BEST ANSWER

The conjugate of a real number is just the number itself. So the adjoint of a real matrix is its transpose. For the example you give, if $$A = \begin{bmatrix}1 & 1 \\ 1 & -1 \\ 0 & 1\end{bmatrix}$$ then $$A^* = \begin{bmatrix}1 & 1 & 0\\ 1 & -1 & 1\end{bmatrix}.$$

0
On

As you know the conjugate of $ a+bi$ is $a-bi$

Thus if $b=0$ the conjugate of $a$ is $a$ itself.

Same goes for real matrices where the conjugate is identical to the matrix itself.