|
|
|
|
|
by chombier
3417 days ago
|
|
For me what made it clicked is realizing that complex numbers are 2D matrices: z = x + i y = [[x -y][y x]]. So really we should be writing z = x * [[1 0][0 1]] + y * [[0 -1][1 0]], but since it's tedious we just call 1 == [[1 0] [0 1]] the 2x2 identity matrix and i == [[0 -1][1 0]], and check that i^2 = -1. Then no more magical i number, the complex product can be derived from the matrix product, the exponential becomes the 2x2 matrix exponential, and so on. |
|