Bloch Sphere Explained (Qubit Visualization Made Simple)
January 2, 2025
The Bloch sphere is a geometric tool for visualizing the state of a single qubit. It turns an abstract complex vector into a point (or vector) in 3D, making superposition and phase much easier to reason about.
From a statevector to angles (θ, φ)
Any pure single‑qubit state can be written (up to a global phase) as:
where:
- is the polar angle from the axis ()
- is the azimuthal angle around the axis ()
The north pole is , the south pole is , and states on the equator are equal‑weight superpositions with different phases.
The Bloch vector
The Bloch sphere is often described using the Bloch vector . For a pure state, , and the vector points to a position on the sphere surface.
Intuitively:
- moving up/down changes the probability bias between and
- rotating around the vertical axis changes relative phase, which affects interference and outcomes in other measurement bases
Why this is different from a classical bit
A classical bit only has two discrete states: 0 or 1. A qubit has infinitely many pure states, parameterized by . Gates move the state smoothly across the sphere.
Quantum gates as rotations
Single‑qubit unitary gates correspond to rotations of the Bloch vector:
- X (Pauli‑X): 180° rotation about the axis (bit flip)
- Y (Pauli‑Y): 180° rotation about the axis (bit+phase flip)
- Z (Pauli‑Z): 180° rotation about the axis (phase flip)
- H (Hadamard): maps to (moves from the north pole to the direction)
- , , : rotations by arbitrary angles
Pure vs mixed states (noise lives inside the sphere)
The Bloch sphere surface represents pure states (ideal, no noise). Real hardware introduces noise and entanglement with the environment, producing mixed states. Mixed states are represented by vectors inside the sphere:
- pure:
- mixed:
This is a compact way to visualize decoherence: the Bloch vector shrinks toward the center.
Common misconceptions
“All qubit states lie on the surface.”
Only pure states do. Mixed states lie inside.“A single Bloch sphere can represent two qubits.”
Not in general. Two qubits require a 4D complex statevector (or a 4×4 density matrix).“The Bloch sphere shows measurement probabilities for any basis.”
The sphere represents the state. Probabilities depend on which measurement you perform.
Can the Bloch sphere represent entanglement?
Not directly. If two qubits are entangled, each individual qubit may look maximally mixed when considered alone (a vector near the center). The non‑classical correlation lives in the joint state, not in either qubit by itself.
Practical use in Qiskit
In practice, tools often display Bloch vectors to help you debug circuits and build intuition. A good next step is to run small circuits and inspect statevectors (and then, later, noisy simulations).
Next
- Revisit What is a Qubit? for the state representation.
- Continue to Measurement to see how probabilities become classical outcomes.