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
[tex]v'=Av[/tex]
where
[tex]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)[/tex]
# Here A includes a 3D the transformation formula. For example, if it is a rotation around z-axis with an angle [tex]\phi[/tex] if:
[tex]A = \begin{pmatrix} \cos(\phi) & \sin(\phi) & 0 \\ -\sin(\phi) & \cos(\phi) & 0 \\ 0 & 0 & 1 \end{pmatrix}[/tex]
# Then, if we apply the transpose of the [tex]A[/tex] to both sides:
[tex]A^{T}v'=A^{T}Av[/tex]
[tex]A^{T}v'= v[/tex]
# 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. [tex]E=p^2/2m + V(x)[/tex], but we have operators which are represented by matricies, ie. [tex]\mathbb{H}=\mathbb{P}^2/2m + V(\mathbb{X})[/tex] 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.
[tex]\mathbb{H}|n>= E_n |n>[/tex] and [tex]<n|\mathbb{H}^T= <n|E_n[/tex]
and expectation value of energy is
[tex]<E>=<n|\mathbb{H}|n>[/tex]
# 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.