|q⟩ Bad Qubits

advanced · Physics · Quantum Channels & Open Systems

Amplitude-Damping Channel

Amplitude damping models energy dissipation: a qubit in its excited state 1|1\rangle decays to the ground state 0|0\rangle by emitting a quantum into a cold environment. It is the channel behind spontaneous emission, photon loss, and T1T_1 relaxation, and — unlike the bit-flip or depolarizing channels — it is not a mixture of unitaries and not unital, so it stress-tests every idea in this module.

The physical picture

Let 0|0\rangle be the ground state and 1|1\rangle the excited state. In a small time, an excited qubit decays with probability γ[0,1]\gamma \in [0,1], dumping one quantum of energy into the environment; the ground state cannot decay. The two things that can happen — "a quantum was emitted" and "no quantum was emitted" — become the two Kraus operators.

Kraus operators

K0=(1001γ),K1=(0γ00).K_0 = \begin{pmatrix} 1 & 0 \\ 0 & \sqrt{1-\gamma} \end{pmatrix}, \qquad K_1 = \begin{pmatrix} 0 & \sqrt{\gamma} \\ 0 & 0 \end{pmatrix}.

K1=γ01K_1 = \sqrt{\gamma}\,|0\rangle\langle 1| is the emission operator: it sends the excited state to the ground state, weighted by the decay amplitude γ\sqrt\gamma. K0K_0 is the no-emission branch: it leaves 0|0\rangle alone but damps the 1|1\rangle amplitude by 1γ\sqrt{1-\gamma}, because the mere fact that no quantum was seen makes the excited state less likely. Trace preservation:

K0K0+K1K1=(1001γ)+(000γ)=1.K_0^\dagger K_0 + K_1^\dagger K_1 = \begin{pmatrix} 1 & 0 \\ 0 & 1-\gamma \end{pmatrix} + \begin{pmatrix} 0 & 0 \\ 0 & \gamma \end{pmatrix} = \mathbb{1}.

Action on a density matrix

Writing ρ=(ρ00ρ01ρ10ρ11)\rho = \begin{pmatrix} \rho_{00} & \rho_{01} \\ \rho_{10} & \rho_{11}\end{pmatrix}, the channel gives

E(ρ)=(ρ00+γρ111γρ011γρ10(1γ)ρ11).\mathcal{E}(\rho) = \begin{pmatrix} \rho_{00} + \gamma\,\rho_{11} & \sqrt{1-\gamma}\,\rho_{01} \\[4pt] \sqrt{1-\gamma}\,\rho_{10} & (1-\gamma)\,\rho_{11} \end{pmatrix}.

Three effects are visible. The excited population decays: ρ11(1γ)ρ11\rho_{11}\to(1-\gamma)\rho_{11}. That lost population flows into the ground state: ρ00ρ00+γρ11\rho_{00}\to\rho_{00}+\gamma\rho_{11}, conserving trace. And the coherences shrink by 1γ\sqrt{1-\gamma}. Iterating nn steps with per-step decay γ\gamma gives ρ11(1γ)nρ11\rho_{11}\to(1-\gamma)^n\rho_{11}; in continuous time ρ11(t)=et/T1ρ11(0)\rho_{11}(t)=e^{-t/T_1} \rho_{11}(0) with 1γ=eΔt/T11-\gamma = e^{-\Delta t/T_1}.

Not unital, not mixed-unitary

The fixed point is the ground state 00|0\rangle\langle 0|, not the maximally mixed state: E(1)=(1+γ001γ)1\mathcal{E}(\mathbb{1}) = \begin{pmatrix} 1+\gamma & 0 \\ 0 & 1-\gamma\end{pmatrix} \ne \mathbb{1}, so the channel is not unital. Geometrically it contracts the Bloch ball and translates it toward the north pole 0|0\rangle — an off-center shrink no mixture of unitaries (which always fixes the center) can reproduce.

Try it

Send the excited state ρ=11\rho = |1\rangle\langle 1| through the amplitude-damping channel with γ=0.3\gamma = 0.3, using the Kraus operators above. Return the surviving excited-state population 1E(ρ)1\langle 1|\mathcal{E}(\rho)|1\rangle. Physically this is (1γ)=0.7(1-\gamma) = 0.7 — compute it from kKkρKk\sum_k K_k\rho K_k^\dagger to confirm.

Run your code to see the quantum state.

Sign in on the full site to ask questions and join the discussion.