How do I test if a matrix is unitary?
Show older comments
My current test for a unitary matrix is shown in the code, I'd also like to know if U = e^(iH) [i is the complex number] is coded correctly. Thanks!
U = exp(i*H)
Uinverse = inv(U)
UConjTran = U'
if UConjTran == Uinverse
disp('U is unitary')
else
disp('U is NOT unitary')
end
Accepted Answer
More Answers (3)
Azzi Abdelmalek
on 9 May 2016
Your code is correct, but when the inverse is calculated, there maybe some errors (even if it's equal to 10^(-6)) caused by the precision allowed by any computer (software and hardware). It's recommended to test using a tolerance.
U = exp(i*H);
Uinverse = inv(U);
UConjTran = U';
tol=10^(-6);
er=abs(UConjTran-Uinverse)
if sum(er(:))<tol
disp('U is unitary')
else
disp('U is NOT unitary')
end
1 Comment
Bryan Acer
on 9 May 2016
Pawel Tokarczuk
on 9 May 2016
Your notation suggests that what you need is the matrix exponential:
U = expm(i*H);
This is not the same thing (in general) as the element-wise exponential:
V = exp(i*H);
Try it and be convinced. Anyway, the test for a unitary matrix is:
U*U' = U'*U = I, to some floating-point tolerance, where I is the unit matrix.
Finally, bear in mind that the evolution operator U takes on a more complicated (time-ordered) form when Hamiltonians H evaluated at different times do not commute.
See: Merzbacher ("Quantum Mechanics"), Constantinescu and Magyari ("Problems in Quantum Mechanics"), etc.
Kevin
on 9 May 2016
0 votes
Maybe you have already thought about this but decided not to use this method.
Another way to test if a matrix is unitary is to check if (U * U') == square identity matrix (with some threshold). This way, you can avoid matrix inversion.
Another way that I can think of is to use SVD (Matlab function svd).
Categories
Find more on Nearest Neighbors in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!