1.1 States and Observables#
Overview#
Quantum mechanics begins with the simplest system: a single two-level particle, the qubit. What does it mean to describe a quantum system, and how do we formalize physical observables? This unit develops the mathematical language — state vectors in Hilbert space, Hermitian operators, and the Bloch sphere — that encodes all quantum information about a qubit.
Topics#
Lesson |
Title |
Core Question |
|---|---|---|
1.1.1 |
What are the goals of a physics theory, and how does a qubit realize them? |
|
1.1.2 |
How do we parametrize qubit states, and what does the Bloch sphere reveal? |
|
1.1.3 |
Why must observables be Hermitian, and what do Pauli operators tell us about a qubit? |
Key Concepts#
Qubit: A two-dimensional Hilbert space \(\mathbb{C}^2\). Every pure state is \(\vert\psi\rangle = \alpha\vert 0\rangle + \beta\vert 1\rangle\) with \(\vert\alpha\vert^2 + \vert\beta\vert^2 = 1\).
Global phase: The overall phase \(\mathrm{e}^{\mathrm{i}\phi}\vert\psi\rangle\) is unobservable — it drops out of all measurement probabilities.
Bloch sphere: Modding out normalization and global phase, a qubit state maps one-to-one to a point \((\theta,\varphi)\) on the unit sphere. The Bloch vector \(\boldsymbol{n} = \langle\hat{\boldsymbol{\sigma}}\rangle\) gives the spin expectation values.
Hermitian operators: Observables satisfy \(\hat{O} = \hat{O}^\dagger\), guaranteeing real eigenvalues (measurement outcomes) and orthonormal eigenstates.
Spectral decomposition: Every Hermitian operator resolves as \(\hat{O} = \sum_m m\,\vert m\rangle\langle m\vert\), connecting its eigenvalues and eigenprojectors.
Pauli operators: \(\hat{\sigma}^x, \hat{\sigma}^y, \hat{\sigma}^z\) form a basis for traceless \(2\times 2\) Hermitian matrices and satisfy \([\hat{\sigma}^i, \hat{\sigma}^j] = 2\mathrm{i}\epsilon^{ijk}\hat{\sigma}^k\) and \(\{\hat{\sigma}^i, \hat{\sigma}^j\} = 2\delta^{ij}\hat{I}\).
Learning Objectives#
Represent a qubit state as a vector in \(\mathbb{C}^2\) and as a point on the Bloch sphere; explain why global phase is unobservable.
Compute eigenvalues, eigenstates, and spectral decompositions of Pauli matrices.
Evaluate commutators and anticommutators of Pauli operators and use their algebra.
Calculate expectation values \(\langle\hat{\sigma}^i\rangle\) for a general qubit state and relate them to the Bloch vector.
Project#
Project: Quantum State Tomography via Classical Shadow Measurements#
Objective: Implement classical shadow tomography to reconstruct arbitrary quantum states from weak, non-invasive measurements. This is a frontier technique in quantum information science that enables efficient state characterization on near-term quantum devices.
Background: Classical shadow tomography (Huang, Kueng & Preskill, 2020) offers a paradigm shift in state characterization. Rather than directly measuring observables and performing state reconstruction via optimization, shadow tomography uses randomized measurements followed by efficient classical post-processing. This approach is resource-efficient (scales logarithmically with state dimension) and robust to noise—key advantages for NISQ devices. The technique connects measurement incompatibility (section 1.2) to practical quantum advantage.
Suggested Approach:
Literature survey: Study the classical shadow formalism in Huang et al. (Nature Phys. 2020). Understand random unitary rotations, median-of-means estimation, and confidence bounds.
Implementation: Write code to (1) simulate a quantum device generating multiple copies of an unknown state; (2) apply random Clifford rotations and measure in the computational basis; (3) use the classical shadow protocol to reconstruct the fidelity \(F = \langle\psi_{\text{true}}|\rho_{\text{reconstructed}}|\psi_{\text{true}}\rangle\).
Benchmark: Compare shadow tomography (few measurements) against standard tomography (many bases) for various qubit states (computational, superposition, entangled if extended). Quantify sample complexity and fidelity as a function of measurement rounds.
Analysis: Discuss noise robustness, why the protocol succeeds despite measurement incompatibility, and connection to the Bloch sphere geometry.
Expected Deliverable: Research report (6-8 pages) including: literature review of shadow tomography, detailed protocol description, numerical results on 1-2 qubit systems, comparison with alternative tomography methods, and discussion of applicability to near-term devices.
Key References: Huang, Kueng & Preskill (2020) “Predicting many properties of a quantum system from very few measurements”; “Classical Shadows for Quantum Information and Machine Learning” review; recent experimental implementations on IonQ or IBM quantum processors.