• 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 T1T_1) and phase randomization (captured by T2T_2). These two timescales define the window in which a quantum circuit must complete before decoherence overwhelms the computation.

The details

T1T_1: Energy relaxation. The excited state 1|1\rangle is energetically unstable. Over time, the qubit emits a photon or phonon to the environment and returns to 0|0\rangle. The probability of remaining in 1|1\rangle decays exponentially:

P(1,t)=et/T1P(|1\rangle, t) = e^{-t/T_1}

This is called amplitude damping. After one T1T_1 period, the excited state population has dropped to e137%e^{-1} \approx 37\% of its original value. T1T_1 is measured by preparing 1|1\rangle, waiting a variable delay tt, then measuring and fitting the exponential decay.

T2T_2: Dephasing. Even if a qubit stays in the right energy level, its phase can randomize. A qubit in the superposition 12(0+1)\frac{1}{\sqrt{2}}(|0\rangle + |1\rangle) gradually loses the phase relationship between its components. The Bloch vector shrinks in the equatorial plane: X(t)=et/T2\langle X \rangle(t) = e^{-t/T_2}. Dephasing includes contributions from T1T_1 and from pure dephasing TϕT_\phi. The fundamental constraint is T22T1T_2 \leq 2T_1; in practice, T2T_2 is often much less because low-frequency noise (flux noise, charge noise) dephases without causing energy transitions.

T2T_2^* vs T2T_2. Free induction decay (FID) measures T2T_2^*, which captures both inhomogeneous broadening and intrinsic dephasing. Spin-echo sequences insert a refocusing pulse to cancel slow, static noise, recovering a longer T2T2T_2 \geq T_2^*. Dynamical decoupling sequences extend coherence further by applying multiple refocusing pulses.

Platform comparison:

PlatformT1T_1T2T_2Gate time (2Q)
Superconducting100-500 μs50-300 μs~100 ns
Trapped ion1-100 s1-10 s~100 μs
PhotonicVery longLimited 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 / T2T_2 ratio matters. The error per gate from decoherence is roughly Δt/T2\Delta t / T_2. Superconducting qubits achieve 100 ns\sim 100\text{ ns} gate times against T2100 μsT_2 \sim 100\text{ μs}, giving an error fraction around 10310^{-3} per gate. Trapped ions have longer gate times (100 μs\sim 100\text{ μs}) but much longer T2T_2 (1 s\sim 1\text{ s}), yielding a similar or better ratio. Improving gate speed or coherence time both reduce error rates.

Why it matters for learners

T1T_1 and T2T_2 are the physical root cause of why quantum computing is hard. Every circuit must complete within a small multiple of T2T_2. 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 T1T_1 and T2T_2 values by platform helps calibrate which algorithms are executable today and which require fault-tolerant hardware.

Common misconceptions

Misconception 1: T2T_2 is always shorter than T1T_1. The inequality T22T1T_2 \leq 2T_1 is a fundamental bound, but T2T_2 can approach 2T12T_1 in systems with low pure dephasing. Trapped-ion qubits encoded in magnetic-field-insensitive transitions can approach this limit; the statement ”T2T_2 is always much shorter” is true only for superconducting qubits.

Misconception 2: Longer T1T_1 and T2T_2 always means better performance. Coherence times matter only relative to gate times. A qubit with T2=100 msT_2 = 100\text{ ms} and 1 ms two-qubit gates is worse than a qubit with T2=100 μsT_2 = 100\text{ μs} and 10 ns gates. The useful figure of merit is the number of gates that fit within T2T_2.

Misconception 3: T2T_2^* and T2T_2 are the same thing. T2T_2^* includes reversible slow noise that refocusing pulses can cancel; T2T_2 (from spin echo) reflects only irreversible dephasing. Reporting T2T_2^* without context can make a device appear noisier than its intrinsic dephasing rate implies.

See also