benchmarks.wiki / Public workspace

CritPt / Challenge_12_main / Consider Z_(N) (N is any integer) parafermion zero-mode operators on four…

Problem

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

code template

Code

import sympy as sp

t, k_12, k_13, k_23, k_34, N, q = sp.symbols('t k_{12} k_{13} k_{23} k_{34} N q')

def answer(t, k_12, k_13, k_23, k_34, N, q):
    r"""
    Return the expression of the phase between $|\psi^i(q)\rangle$ and $|\psi^f(q)\rangle$ in Sympy format.

    Inputs
    ----------
    t: sympy.Symbol, tunneling amplitude $t$
    k_12, k_13, k_23, k_34: sympy.Symbol, ground-state fusion channels
          $k_{ij}\in Z_N$ with $k_{ij}<-\frac{\phi_{ij}}{2\pi}<k_{ij}+1$
    N: sympy.Symbol, integer N defining $Z_N$
    q: sympy.Symbol, fusion channel between the unpaired zero modes

    Outputs
    ----------
    phase: sympy.Expr, the expression of the phase between the initial ground state $|\psi^i(q)\rangle$
          and final ground state $|\psi^f(q)\rangle$
    """

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

    return phase

problem description

# Problem setup: Consider ZNZ_N (NN is any integer) parafermion zero-mode operators on four sites αi\alpha_i with i=1,2,3,4i=1,2,3,4 and a four-stage tunneling process described by H34H23H12H13H34, H_{34}\rightarrow H_{23} \rightarrow H_{12}\rightarrow H_{13}\rightarrow H_{34}, where Hij=t(eiϕij/Nαiαj+H.c.) H_{ij}=t\left(e^{-i\phi_{ij}/N}\alpha_i^\dagger\alpha_j+H.c.\right) , ϕij\phi_{ij} is a phase between sites ii and jj, and H.c.H.c. stands for Hermitian conjugate. This tunneling process is followed by a permutation between zero modes (α1,α2)(\alpha_1,\alpha_2) and (α3,α4)(\alpha_3,\alpha_4), respectively. # Main problem: Find the phase between the initial ground state of the process |ψi(q)|\psi^i(q)\rangle and final ground state of the process |ψf(q)|\psi^f(q)\rangle, where qq is the fusion channel between the unpaired zero modes. Your answer should depend on kijZNk_{ij}\in Z_N, where kij<ϕij2π<kij+1k_{ij}<-\frac{\phi_{ij}}{2\pi}<k_{ij}+1. Note that, for a Josephson phase between sites i and j, k_ij is a ground-state fusion channel.
Plain-text mathematical notation (without MathML)

# Problem setup:
Consider Z_(N) (N is any integer) parafermion zero-mode operators on four sites α_(i) with i=1,2,3,4 and a four-stage tunneling process described by

H₃₄→H₂₃→H₁₂→H₁₃→H₃₄,

where
H_(ij)=t(e^(−iϕ_(ij)/N)α_(i)^(†)α_(j)+H.c.), ϕ_(ij) is a phase between sites i and j, and H.c. stands for Hermitian conjugate. This tunneling process is followed by a permutation between zero modes (α₁,α₂) and (α₃,α₄), respectively.

# Main problem:
Find the phase between the initial ground state of the process |ψ^(i)(q)⟩ and final ground state of the process |ψ^(f)(q)⟩, where q is the fusion channel between the unpaired zero modes. Your answer should depend on k_(ij)∈Z_(N), where k_(ij)<−(ϕ_(ij))/(2π)<k_(ij)+1. Note that, for a Josephson phase between sites i and j, k_ij is a ground-state fusion channel.
Original LaTeX notation

# Problem setup:
Consider $Z_N$ ($N$ is any integer) parafermion zero-mode operators on four sites $\alpha_i$ with $i=1,2,3,4$ and a four-stage tunneling process described by

$
H_{34}\rightarrow H_{23} \rightarrow H_{12}\rightarrow H_{13}\rightarrow H_{34},
$

where
$
H_{ij}=t\left(e^{-i\phi_{ij}/N}\alpha_i^\dagger\alpha_j+H.c.\right)
$, $\phi_{ij}$ is a phase between sites $i$ and $j$, and $H.c.$ stands for Hermitian conjugate. This tunneling process is followed by a permutation between zero modes $(\alpha_1,\alpha_2)$ and $(\alpha_3,\alpha_4)$, respectively.

# Main problem:
Find the phase between the initial ground state of the process $|\psi^i(q)\rangle$ and final ground state of the process $|\psi^f(q)\rangle$, where $q$ is the fusion channel between the unpaired zero modes. Your answer should depend on $k_{ij}\in Z_N$, where $k_{ij}<-\frac{\phi_{ij}}{2\pi}<k_{ij}+1$. Note that, for a Josephson phase between sites i and j, k_ij is a ground-state fusion channel.

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.

See answer Answer published by the source

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