nolanp2 said:
i can't visualise what's happening to a matrix when you calculate its transpose or adjoint. can anybody give me a useful way of visualising this?
# The matricies are just some mathematical tools (a bunch of numbers) and have different meanings in different contexts. So, the meaning of transposing a matrix is context dependent too.
# For example, we use matricies in coordinate transformations
v'=Av
where
v' = \begin{pmatrix} x' \\ y' \\ z' \end{pmatrix} \right), v = \begin{pmatrix} x \\ y \\ z \end{pmatrix}, A = \left( \begin{matrix} a & b & c\\ d & e & f \\ g & h & i \end{matrix} \right)
# Here A includes a 3D the transformation formula. For example, if it is a rotation around z-axis with an angle \phi if:
A = \begin{pmatrix} \cos(\phi) & \sin(\phi) & 0 \\ -\sin(\phi) & \cos(\phi) & 0 \\ 0 & 0 & 1 \end{pmatrix}
# Then, if we apply the transpose of the A to both sides:
A^{T}v'=A^{T}Av
A^{T}v'= v
# So, in this context transposition means the inverse transformation.
# In the context of Quantum Mechanics, we don't have scalar physical quantities which can be represented just by numbers and can be calculated as a function of state variables ie. E=p^2/2m + V(x), but we have operators which are represented by matricies, ie. \mathbb{H}=\mathbb{P}^2/2m + V(\mathbb{X}) And using probability theory we can calculate the expectation values of these quantities by taking the integrals of their eigenfunctions.
# The operators are acting to ket-spaces, and their hermitions are acting on bra-spaces.
\mathbb{H}|n>= E_n |n> and <n|\mathbb{H}^T= <n|E_n
and expectation value of energy is
<E>=<n|\mathbb{H}|n>
# If we want to understand what calculating the adjoints of hermitian matricies (operators) means in the context of QM first we have to understand the duality between ket and bra spaces.
# I hope, this information will help you to come closer to the answer of your question.