# $\lvert\Phi^-\rangle$ (Phi-minus state) The **phi-minus state** $\lvert\Phi^-\rangle$ is one of the four [[bell-states|Bell states]] — the maximally entangled two-qubit states. It is an equal superposition of $\lvert 00\rangle$ and $\lvert 11\rangle$ with a relative minus sign. Like [[ket-phi-plus|$\lvert\Phi^+\rangle$]], both qubits always give the same outcome in the computational basis; the minus sign is only visible in phase-sensitive measurements. $$\lvert\Phi^-\rangle = \frac{1}{\sqrt{2}}(\lvert 00\rangle - \lvert 11\rangle) = \frac{1}{\sqrt{2}}\begin{pmatrix}1\\0\\0\\-1\end{pmatrix}$$ It is prepared from $\lvert\Phi^+\rangle$ by applying $Z$ to either qubit, or directly as $\text{CX}\lvert -\rangle\lvert 0\rangle = \lvert\Phi^-\rangle$. In the X basis, $\lvert\Phi^-\rangle = \tfrac{1}{\sqrt{2}}(\lvert +-\rangle + \lvert -+\rangle)$, giving anti-correlated X-basis measurements — the opposite of $\lvert\Phi^+\rangle$. ## Qiskit ```python # Prepare |Φ−⟩ = (|00⟩ − |11⟩)/√2 — same as |Φ+⟩ preparation, then Z on qubit 0. from qiskit import QuantumCircuit from qiskit.quantum_info import Statevector qc = QuantumCircuit(2) qc.h(0) # |00⟩ → (|00⟩ + |10⟩)/√2 qc.cx(0, 1) # CX: → (|00⟩ + |11⟩)/√2 = |Φ+⟩ qc.z(0) # Z on qubit 0: |Φ+⟩ → |Φ−⟩ print(Statevector(qc).data) ``` ## Applying gates Single-qubit gates act on qubit 1. By symmetry of $\lvert\Phi^-\rangle$, applying $X$, $Y$, or $Z$ to qubit 2 gives the same result. ^ Gate ^ Result ^ Comment ^ | [[i-gate]] | $I_1\lvert\Phi^-\rangle = \lvert\Phi^-\rangle$ | Identity leaves the state unchanged. | | [[x-gate]] | $X_1\lvert\Phi^-\rangle = -\lvert\Psi^-\rangle$ | Flips qubit 1; $\lvert 00\rangle\to\lvert 10\rangle$ and $\lvert 11\rangle\to\lvert 01\rangle$ with the minus sign preserved. Equivalent to $\lvert\Psi^-\rangle$ up to global phase. | | [[y-gate]] | $Y_1\lvert\Phi^-\rangle = i\lvert\Psi^+\rangle$ | Bit-flip with phase; the two $i$ factors combine constructively, removing the relative minus sign. Equivalent to $\lvert\Psi^+\rangle$ up to global phase. | | [[z-gate]] | $Z_1\lvert\Phi^-\rangle = \lvert\Phi^+\rangle$ | Negates the $\lvert 11\rangle$ term, cancelling the relative minus sign and recovering $\lvert\Phi^+\rangle$. | | [[h-gate]] | $H_1\lvert\Phi^-\rangle$ (not a Bell state) | Bell measurement circuit: CX then $H_1$ maps $\lvert\Phi^-\rangle\to\lvert 10\rangle$. | | [[s-gate]] | $S_1\lvert\Phi^-\rangle = \tfrac{1}{\sqrt{2}}(\lvert 00\rangle - i\lvert 11\rangle)$ | Adds a phase of $i$ to the $\lvert 11\rangle$ term; combined with the minus sign gives $-i$. Not a standard Bell state. | | [[t-gate]] | $T_1\lvert\Phi^-\rangle = \tfrac{1}{\sqrt{2}}(\lvert 00\rangle - e^{i\pi/4}\lvert 11\rangle)$ | Adds a phase of $e^{i\pi/4}$ to the $\lvert 11\rangle$ term; combined with the minus sign. Not a standard Bell state. | | [[rx-gate]] | Mixes $\lvert\Phi^-\rangle$ with $\lvert\Psi^-\rangle$ | X-type rotations couple the $\lvert\Phi^-\rangle$ and $\lvert\Psi^-\rangle$ Bell states. | | [[ry-gate]] | Mixes $\lvert\Phi^-\rangle$ with $\lvert\Psi^+\rangle$ | Y-type rotations couple the $\lvert\Phi^-\rangle$ and $\lvert\Psi^+\rangle$ Bell states. | | [[rz-gate]] | $R_z(\theta)_1\lvert\Phi^-\rangle = \tfrac{e^{-i\theta/2}}{\sqrt{2}}(\lvert 00\rangle - e^{i\theta}\lvert 11\rangle)$ | Modifies relative phase only; at $\theta=\pi$ gives $\lvert\Phi^+\rangle$ up to global phase. | | [[cx-gate]] | $\text{CX}\lvert\Phi^-\rangle = \lvert -\rangle\lvert 0\rangle$ | Disentangles $\lvert\Phi^-\rangle$ back to the product state used to prepare it. | | [[swap-gate]] | $\text{SWAP}\lvert\Phi^-\rangle = \lvert\Phi^-\rangle$ | $\lvert 00\rangle$ and $\lvert 11\rangle$ are symmetric under qubit exchange; eigenstate of SWAP with eigenvalue $+1$. | | [[iswap-gate]] | $\text{iSWAP}\lvert\Phi^-\rangle = \lvert\Phi^-\rangle$ | $\lvert 00\rangle$ and $\lvert 11\rangle$ are unchanged by iSWAP; eigenstate with eigenvalue $+1$. | ## Reaching other Bell states ^ State ^ Gates ^ Comment ^ | $\lvert\Phi^-\rangle$ | $I\lvert\Phi^-\rangle = \lvert\Phi^-\rangle$ | The identity gate leaves $\lvert\Phi^-\rangle$ unchanged. | | [[ket-phi-plus|$\lvert\Phi^+\rangle$]] | $Z_1\lvert\Phi^-\rangle = \lvert\Phi^+\rangle$ | Z on qubit 1 cancels the relative minus sign; same-value Z correlations are preserved. | | [[ket-psi-minus|$\lvert\Psi^-\rangle$]] | $X_1\lvert\Phi^-\rangle = -\lvert\Psi^-\rangle$ | X on qubit 1 switches from same-value to anti-correlated Z-basis correlations, reaching $\lvert\Psi^-\rangle$ up to global phase. | | [[ket-psi-plus|$\lvert\Psi^+\rangle$]] | $Y_1\lvert\Phi^-\rangle = i\lvert\Psi^+\rangle$ | Y on qubit 1 reaches $\lvert\Psi^+\rangle$ up to global phase $i$. |