[Math] adjoint of a matrix with real entries

linear algebramatrices

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.

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}.$$