Matrix Proof using Unitary operators

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 7K views
andre220
Messages
75
Reaction score
1

Homework Statement



Show that if two square matrices of the same rank are related by unitary transformation [itex]\hat{A}=\hat{U}^\dagger\hat{B}\hat{U}[/itex] then their traces and determinants are the same.

Homework Equations



[itex]Tr(\hat{A}) =\sum\limits_{k=0}^{n}a_{kk}[/itex]
[itex]\hat{U}^\dagger\hat{U} = 1[/itex]

The Attempt at a Solution



Ok so I have no idea where to start with this, my first thought is to expand the RHS of the transformation:

[tex]=\left(u_{ij}\right)^\dagger b_{ij} u_{ij} = \left(u_{ji}b_{ji}^*\right)u_{ij}[/tex]

But I am not sure if this right or where to go from there.
 
Last edited:
on Phys.org
You're right I was missing two parts of it, I edited the initial post. It is correct now. For component of A, I am not quite what you mean, something like this?: [tex]A =<br /> \begin{pmatrix}<br /> a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\<br /> a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\<br /> \vdots & \vdots & \ddots & \vdots \\<br /> a_{n,1} & a_{n,2} & \cdots & a_{n,n}<br /> \end{pmatrix}[/tex]

And as for the properties of the trace: I'm familiar with most basic properties (I apologize, my einstein summation indices were not correct in the first post): i.e. [itex]Tr(AB) = Tr(BA)[/itex], [itex]Tr(BAB^{-1}) = Tr(A)[/itex], for example.
 
I think proving the weaker result that similar matrices have the same trace, determinant proves what you want, since being unitarily-equivalent/similar is stronger than just being similar.
 
Yeah after he said that I looked at it an yeah I was making too much of it: essentially it is just:

[itex]\mathrm{Tr}(\hat{A})=\mathrm{Tr}(\hat{U}^\dagger\hat{B}\hat{U}) = \mathrm{Tr}(\hat{B}\hat{U}^\dagger\hat{U}) = \mathrm{Tr}(\hat{B}\hat{1}) = \mathrm{Tr}(\hat{B})[/itex]

and then it would almost identical for the determinant. Thank you for your help.
 
andre220 said:
[itex]Tr(\hat{A}) =\sum\limits_{k=0}^{n}a_{kk}[/itex]
andre220 said:
[tex]=\left(u_{ij}\right)^\dagger b_{ij} u_{ij} = \left(u_{ji}b_{ji}^*\right)u_{ij}[/tex]
The definition of matrix multiplication is ##(AB)_{ij}=A_{ik}B_{kj}## (with summation over repeated indices). So
\begin{align}
&\operatorname{Tr A}=A_{kk}=(U^\dagger BU)_{kk}=(U^\dagger)_{ki}(BU)_{ik}=(U^\dagger)_{ki}B_{ij}U_{jk} =B_{ij}U_{jk}(U^\dagger)_{ki} =B_{ij}(UU^\dagger)_{ji}\\ &=B_{ij}\delta_{ji}=B_{ii}=\operatorname{Tr} B.
\end{align}
This is how you prove that the trace has that nice property. The proof that determinants are equally nice is more complicated, because the definition of "determinant" is more complicated than the definition of "trace".
 
Last edited:
Yeah after he said that I looked at it an yeah I was making too much of it: essentially it is just:

[itex]\mathrm{Tr}(\hat{A})=\mathrm{Tr}(\hat{U}^\dagger\hat{B}\hat{U}) = \mathrm{Tr}(\hat{B}\hat{U}^\dagger\hat{U}) = \mathrm{Tr}(\hat{B}\hat{1}) = \mathrm{Tr}(\hat{B})[/itex]

and then it would almost identical for the determinant. Thank you for your help
 
Ahh okay that makes sense, I'm still getting the hang of the sum notation.