Pauli matrices #
@[reducible, inline]
The zeroth Pauli-matrix as a 2 x 2
complex matrix.
That is the matrix !![1, 0; 0, 1]
, which in Lean is more conveniently written 1
.
Equations
Instances For
The first Pauli-matrix as a 2 x 2
complex matrix.
That is, the matrix !![0, 1; 1, 0]
.
Equations
- PauliMatrix.σ1 = !![0, 1; 1, 0]
Instances For
The third Pauli-matrix as a 2 x 2
complex matrix.
That is, the matrix !![1, 0; 0, -1]
.
Equations
- PauliMatrix.σ3 = !![1, 0; 0, -1]
Instances For
@[simp]
@[simp]
@[simp]
Products #
These lemmas try to put the terms in numerical order.
We skip σ0
since it's just 1
anyway.