- Hardware
- Also: relaxation time
- Also: coherence time
- Also: dephasing time
T1 and T2 Times
T1 is the time for a qubit to decay from the excited state |1⟩ to the ground state |0⟩. T2 is the time over which the qubit's phase coherence is maintained. Both set the window in which useful quantum computation can occur.
Every qubit is a physical system embedded in a noisy environment. Even if left completely alone, a qubit will lose its quantum information through two distinct mechanisms: energy relaxation (captured by ) and phase randomization (captured by ). These two timescales define the window in which a quantum circuit must complete before decoherence overwhelms the computation.
The details
: Energy relaxation. The excited state is energetically unstable. Over time, the qubit emits a photon or phonon to the environment and returns to . The probability of remaining in decays exponentially:
This is called amplitude damping. After one period, the excited state population has dropped to of its original value. is measured by preparing , waiting a variable delay , then measuring and fitting the exponential decay.
: Dephasing. Even if a qubit stays in the right energy level, its phase can randomize. A qubit in the superposition gradually loses the phase relationship between its components. The Bloch vector shrinks in the equatorial plane: . Dephasing includes contributions from and from pure dephasing . The fundamental constraint is ; in practice, is often much less because low-frequency noise (flux noise, charge noise) dephases without causing energy transitions.
vs . Free induction decay (FID) measures , which captures both inhomogeneous broadening and intrinsic dephasing. Spin-echo sequences insert a refocusing pulse to cancel slow, static noise, recovering a longer . Dynamical decoupling sequences extend coherence further by applying multiple refocusing pulses.
Platform comparison:
| Platform | Gate time (2Q) | ||
|---|---|---|---|
| Superconducting | 100-500 μs | 50-300 μs | ~100 ns |
| Trapped ion | 1-100 s | 1-10 s | ~100 μs |
| Photonic | Very long | Limited by loss | ~ns |
| NV center | ~1 ms | ~1 ms (RT) | ~μs |
Simulating T1 decay with a Qiskit noise model:
from qiskit import QuantumCircuit, transpile
from qiskit_aer import AerSimulator
from qiskit_aer.noise import NoiseModel, thermal_relaxation_error
T1, T2, gate_time = 200e-6, 100e-6, 100e-9 # seconds
noise_model = NoiseModel()
noise_model.add_all_qubit_quantum_error(
thermal_relaxation_error(T1, T2, gate_time), ['id', 'u1', 'u2', 'u3']
)
qc = QuantumCircuit(1, 1)
qc.x(0) # Prepare |1>
qc.id(0) # Wait one gate time
qc.measure(0, 0)
sim = AerSimulator(noise_model=noise_model)
counts = sim.run(transpile(qc, sim), shots=4096).result().get_counts()
print(counts) # Small probability of measuring 0 due to T1 decay
Why the gate time / ratio matters. The error per gate from decoherence is roughly . Superconducting qubits achieve gate times against , giving an error fraction around per gate. Trapped ions have longer gate times () but much longer (), yielding a similar or better ratio. Improving gate speed or coherence time both reduce error rates.
Why it matters for learners
and are the physical root cause of why quantum computing is hard. Every circuit must complete within a small multiple of . Error correction extends the effective coherence of logical qubits beyond the physical limit, but at the cost of many physical qubits per logical qubit. Knowing typical and values by platform helps calibrate which algorithms are executable today and which require fault-tolerant hardware.
Common misconceptions
Misconception 1: is always shorter than . The inequality is a fundamental bound, but can approach in systems with low pure dephasing. Trapped-ion qubits encoded in magnetic-field-insensitive transitions can approach this limit; the statement ” is always much shorter” is true only for superconducting qubits.
Misconception 2: Longer and always means better performance. Coherence times matter only relative to gate times. A qubit with and 1 ms two-qubit gates is worse than a qubit with and 10 ns gates. The useful figure of merit is the number of gates that fit within .
Misconception 3: and are the same thing. includes reversible slow noise that refocusing pulses can cancel; (from spin echo) reflects only irreversible dephasing. Reporting without context can make a device appear noisier than its intrinsic dephasing rate implies.