An intuitive overview of the Pauli operators, their matrices, and how they transform qubits.
Pauli X, Y, and Z are the fundamental single-qubit operations. They flip amplitudes and phases and form a basis for more complex gates.
X = [[0, 1], [1, 0]] Y = [[0, -i], [i, 0]] Z = [[1, 0], [0, -1]]
X is a π-rotation around the X-axis, Y around the Y-axis, Z around the Z-axis. Applied twice, each returns the qubit to its original state.
Open the Playground, start with |0⟩, place X to get |1⟩. Combine H then Z then H to emulate an X via basis change. Experiment with measurement statistics.
From error correction (stabilizers) to variational algorithms, Paulis are everywhere. Measuring along different axes effectively measures Pauli observables.