|
|
|
|
|
by marginalia_nu
1682 days ago
|
|
They are very much equivalent. You can express complex numbers with a 2x2 matrix of real numbers. R =
1 0
0 1
I =
0 1
-1 0
I and R form a basis that spans something that behaves like a complex plane.You have the expected identities R^2 = R IR = I I^2 = -R I^3 = -I I^4 = R Transposition is complex conjugate. You can put them into exponentials, e^Ix = cos(x) + I sin(x); everything works as you would expect. |
|