Daily Run: Quantum Entanglement
Day 1
Subtopics: The focus for this wave spans the CHSH inequality, the entropy of the three-qubit $W$ state, and the negativity under partial transposition.
CHSH inequality
- Downloaded arXiv:quant-ph/9705052 for background.
- Constructed the Bell state $|\Phi^+\rangle=(|00\rangle+|11\rangle)/\sqrt2$ and the CHSH operator in Python.
- Diagonalised the operator to confirm the Tsirelson bound $2\sqrt2$.
- Evaluated $\langle B\rangle=2.8284$ and logged it to
entanglement-data.csv
.
- Verified classical strategies never exceed $2$.
$W$-state entropy
- Represented the three-qubit $W$ state and traced out two qubits to obtain the single-qubit density matrix.
- Computed its eigenvalues $(2/3,1/3)$ and entropy $S=-\text{Tr}(\rho\log_2\rho)=0.918$ bits.
- Recorded the entropy in
entanglement-data.csv
.
- Cycled which qubits were traced; eigenvalues remained unchanged.
- Confirmed numerical stability to $10^{-6}$.
Negativity
- Constructed a random two-qubit mixed state and took the partial transpose with respect to the second qubit.
- Found eigenvalues numerically and summed the absolute values of the negative ones to obtain a negativity of $0.12$.
- Added the value to
entanglement-data.csv
for comparison.
- Checked a separable state which yielded zero negativity.
- Noted sensitivity to numerical precision in near-separable cases.
Subtopic assessment: Each computation yielded clear quantitative measures, making all three subtopics productive.