Agent Prompt: Exact Analytical Solution for PPT Discrimination of Two-Qubit Ensembles
Your objective is to derive and rigorously prove the closed-form analytical solution for the positive-partial-transpose (PPT) discrimination probability of a specific quantum state ensemble. Numerical approximation is insufficient; your final deliverable must be a rigorous mathematical proof consisting of exact, symbolic matching primal and dual SDP certificates.
1. Mathematical Setup
Let each denote , and write and . Alice holds the pair of systems and Bob holds . Fix real numbers with , and define four orthonormal states in :
For , define a resource state in :
At this is maximally entangled; at it is a product state. For an index set , define the ensemble where the states are drawn with uniform probability :
Let .
2. The PPT SDP Formulation
A measurement is a collection of positive semidefinite operators on summing to . The PPT measurement class requires each to have a positive semidefinite partial transpose across the bipartition between Alice's systems () and Bob's systems (). The optimal PPT discrimination probability, , is given exactly by this Semidefinite Program (SDP):
where is the partial transpose on Bob's systems.
3. The Target: Four-State Family Solution
Take , meaning the ensemble is the full orthonormal basis with the resource attached. It is known that the solution takes the following closed form:
Your task is to independently discover the exact function and rigorously prove it. As a calibration anchor, for the symmetric three-state family at , the optimal separable (and PPT) value is known to be . Use this structure to guide your ansatz.
4. Required Execution Pipeline
- High-Precision Sampling: Solve the SDP densely over a grid of values. Default solver tolerances are too loose; you must achieve roughly 10 digits of precision before fitting.
- Symbolic Regression: Use the high-precision numerical data to recover the explicit algebraic form of via symbolic regression (without looking it up).
- Exact Exact Dual Construction (The Proof): Read the structure of the optimal dual solution off the numerical solver (eigenvalues, eigenvectors, tight constraints). Guess the exact algebraic form of the primal and dual operators. Verify the primal-dual matching in exact arithmetic using a computer algebra system (e.g., SymPy). A verified matching primal and dual pair is the only acceptable proof.
5. Known Pitfalls & Guidelines
- System Ordering (Critical): The states live in , but the bipartition for the partial transpose is against . A system permutation is required before transposing. Getting this wrong produces plausible numbers that silently answer a different question.
- Exploit Symmetry: Both ensembles carry a symmetry group. Twirling over it block-diagonalizes the SDP, reducing it to small invariant blocks. This is the most reliable route to a closed form.
- Start at Boundaries: Solve analytically for , , and across all to pin the edges of the surface and constrain your candidate formula.
6. Recommended Tools
- toqito (Python): State discrimination, PPT measurement helpers, partial transpose/trace with explicit system indexing.
- CVXPY: Use MOSEK (preferred) or SDPA as the backend for the required 10-digit accuracy.
- SymPy / mpmath: For exact-arithmetic verification of the conjectured certificate and high-precision sampling.
- PySR: For the symbolic regression step to recover .