Every physical qubit is weakly coupled to its surroundings. An excited qubit (∣1⟩)
can spontaneously emit a photon and relax to the ground state (∣0⟩). This energy
dissipation is called amplitude damping, and its characteristic timescale is T1
(the longitudinal or energy-relaxation time).
Kraus operators of the amplitude-damping channel
For a damping strength γ∈[0,1], the amplitude-damping channel is defined by
two Kraus operators
K0=(1001−γ),K1=(00γ0).
You can verify trace-preservation directly:
K0†K0+K1†K1=(1001−γ)+(000γ)=I.✓
The channel acts on a density matrix ρ as
E(ρ)=K0ρK0†+K1ρK1†.
K1 is a lowering operator: it maps ∣1⟩ to ∣0⟩ and annihilates ∣0⟩.
Its presence means that excited-state population drains into the ground state at rate γ.
What happens to each element of the density matrix
Let ρ=(ρ00ρ10ρ01ρ11).
Carrying out the matrix products gives
E(ρ)=(ρ00+γρ111−γρ101−γρ01(1−γ)ρ11).
Two effects are visible:
Population transfer. The excited-state population ρ11 decreases by the factor
(1−γ), and the fraction γρ11 moves to the ground state, raising ρ00.
Coherence decay. The off-diagonal (coherence) terms shrink by the factor 1−γ.
At γ=1 the channel is maximally damping: the qubit always ends in ∣0⟩ regardless
of the input, and all coherences vanish.
Effect on the excited state
For the pure excited state ρ=∣1⟩⟨1∣=(0001),
the formula above simplifies to
E(∣1⟩⟨1∣)=(γ001−γ).
The qubit has relaxed to a classical mixture: with probability γ it is now in ∣0⟩
and with probability 1−γ it remains in ∣1⟩. There is no superposition because
the off-diagonal entries of ∣1⟩⟨1∣ were zero to begin with.
Effect on a superposition
A superposition ∣+⟩=21(∣0⟩+∣1⟩) has the density matrix
∣+⟩⟨+∣=21(1111).
After the amplitude-damping channel with strength γ:
E(∣+⟩⟨+∣)=21(1+γ1−γ1−γ1−γ).
The probability of measuring ∣0⟩ is the (0,0) entry:
P(0)=21+γ=ρ00+γ⋅ρ11.
For γ=0.5 this gives P(0)=0.75: the excited-state component has half a chance of
falling to the ground state, raising the ground-state probability above the ideal 0.5.
Connection to T1 on real hardware
On a physical device the damping strength γ grows with idle time t:
γ(t)=1−e−t/T1.
A qubit left idle for t≪T1 suffers little energy loss (γ≈t/T1). For
t=T1, γ≈0.63; for t≫T1 the qubit is almost certain to be found in
∣0⟩. Typical superconducting qubits have T1 in the range of tens to hundreds of
microseconds (Krantz et al., 2019; cited in the Qiskit Textbook), which constrains the maximum
depth of useful circuits.
Try it
The amplitude-damping channel with γ=0.5 is applied to ∣+⟩. Using the
formula P(0)=ρ00+γ⋅ρ11, compute and return the probability of
measuring ∣0⟩ after the channel acts.
Run your code to see the quantum state.
Sign in on the full site to ask questions and join the discussion.