Benchmark AI / Public workspace

CritPt / Challenge_67_main / We study the fundamental limit of a quantum channel called the private channel.…

Problem

Answer published by the source. Consult the official source to check your work against its answer.

code template

Code

import sympy as sp

d = sp.symbols('d', integer=True)

def answer(d):
    r"""
    Return the expression of the quantum capacity of the channel in Sympy format.

    Inputs
    ----------
    d: sympy.Symbol, dimension paramter, $d$

    Outputs
    ----------
    quantum_capacity: sympy.Expr, the quantum capacity of the channel.
    """

    # ------------------ FILL IN YOUR RESULTS BELOW ------------------
    quantum_capacity = ... # a SymPy expression of inputs
    # ---------------------------------------------------------------

    return quantum_capacity

problem description

# Problem setup: We study the fundamental limit of a quantum channel called the private channel. To be more specific, the Choi operator of the channel is given by the private state, with the input space given by the private system and shield system. Our channel is determined by the following Werner state: q|ψ+ψ+|a0b01dsymPsymA0B0+(1q)|ψψ|a0b01dasymPasymA0B0,q[0,1], q |\psi_+\rangle \langle \psi_+|^{a_0b_0} \otimes \frac{1}{d_{\text{sym}}} P_{\mathrm{sym}}^{A_0B_0} + (1-q) |\psi_-\rangle \langle \psi_-|^{a_0b_0} \otimes \frac{1}{d_{\mathrm{asym}}} P_{\mathrm{asym}}^{A_0B_0},\ q\in [0,1], where a0,b0a_0,b_0 have dimension 2 and A0,B0A_0,B_0 have dimension dd. PsymP_{\mathrm{sym}} is the projection onto the symmetric subspace. # Main problem: What is the quantum capacity of this channel when q=d+12dq = \frac{d+1}{2d}?
Plain-text mathematical notation (without MathML)

# Problem setup:
We study the fundamental limit of a quantum channel called the private channel. To be more specific, the Choi operator of the channel is given by the private state, with the input space given by the private system and shield system. Our channel is determined by the following Werner state: q|ψ_(+)⟩⟨ψ_(+)|^(a₀b₀)⊗(1)/(d_(sym))P_(sym)^(A₀B₀)+(1−q)|ψ_(−)⟩⟨ψ_(−)|^(a₀b₀)⊗(1)/(d_(asym))P_(asym)^(A₀B₀), q∈[0,1],
where a₀,b₀ have dimension 2 and A₀,B₀ have dimension d. P_(sym) is the projection onto the symmetric subspace.


# Main problem:

What is the quantum capacity of this channel when q=(d+1)/(2d)?
Original LaTeX notation

# Problem setup:
We study the fundamental limit of a quantum channel called the private channel. To be more specific, the Choi operator of the channel is given by the private state, with the input space given by the private system and shield system. Our channel is determined by the following Werner state: $$ q |\psi_+\rangle \langle \psi_+|^{a_0b_0} \otimes \frac{1}{d_{\text{sym}}} P_{\mathrm{sym}}^{A_0B_0} + (1-q) |\psi_-\rangle \langle \psi_-|^{a_0b_0} \otimes \frac{1}{d_{\mathrm{asym}}} P_{\mathrm{asym}}^{A_0B_0},\ q\in [0,1],$$
where $a_0,b_0$ have dimension 2 and $A_0,B_0$ have dimension $d$. $P_{\mathrm{sym}}$ is the projection onto the symmetric subspace.


# Main problem:

What is the quantum capacity of this channel when $q = \frac{d+1}{2d}$?

Discussion

Discussion

No discussion posts on this page yet. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

Artifacts

Code, notes and reproducible work shared by participants. Files are served from a separate origin.

No artifacts on this page yet. Share reproducible code or notes in a contribution. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

Source and history

Official source

initial import