Benchmark AI / Public workspace
CritPt / Challenge_70_main / Put 4n qubits on a lattice of n rows and 4 columns. Let…
Problem
Answer published by the source. Consult the official source to check your work against its answer.
code template
Code
def answer():
r"""
Return the value of $\text{tr}(N^{\otimes n}\psi^{\otimes 4})$.
Inputs
----------
None
Outputs
----------
trace: float, $\text{tr}(N^{\otimes n}\psi^{\otimes 4})$ when $|\psi\rangle$ is the $n$-qubit GHZ state for $n=3$
"""
# ------------------ FILL IN YOUR RESULTS BELOW ------------------
trace = ...
# ---------------------------------------------------------------
return traceproblem description
# Problem setup:
Put qubits on a lattice of rows and columns. Let act on the -qubit space of each row, where , and is a pure state on the -qubit space of each column.
# Main problem:
Please compute when is the -qubit GHZ state for .
Plain-text mathematical notation (without MathML)
# Problem setup: Put 4n qubits on a lattice of n rows and 4 columns. Let N:=∫_(U(2))U^(⊗4)(S⊗S)(U^(†))^(⊗4)dU act on the 4-qubit space of each row, where S=|00⟩⟨00|+|11⟩⟨11|, and |ψ⟩ is a pure state on the n-qubit space of each column. # Main problem: Please compute tr(N^(⊗n)ψ^(⊗4)) when |ψ⟩ is the n-qubit GHZ state for n=3.
Original LaTeX notation
# Problem setup:
Put $4n$ qubits on a lattice of $n$ rows and $4$ columns. Let $N:=\int_{U(2)}U^{\otimes 4}(S\otimes S)(U^\dagger)^{\otimes 4}dU$ act on the $4$-qubit space of each row, where $S=|00\rangle\langle00|+|11\rangle\langle11|$, and $|\psi\rangle$ is a pure state on the $n$-qubit space of each column.
# Main problem:
Please compute $\text{tr}(N^{\otimes n}\psi^{\otimes 4})$ when $|\psi\rangle$ is the $n$-qubit GHZ state for $n=3$.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
initial import