Benchmark AI / Public workspace
CritPt / Challenge_44_main / Consider the Kitaev honeycomb model at the isotropic limit (assuming…
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 total number of degenerate ground states, how many of those lie in the flux-free sector and the value of ground state energy.
Inputs
----------
None
Outputs
----------
N_total : total number of degenerate ground states.
N_flux_free : number of degenerate ground states in the flux‐free sector.
E_ground : float, ground state energy.
"""
# ------------------ FILL IN YOUR RESULTS BELOW ------------------
N_total = ...
N_flux_free = ...
E_ground = ...
# ---------------------------------------------------------------
return N_total, N_flux_free, E_ground
problem description
# Problem setup:
Consider the Kitaev honeycomb model at the isotropic limit (assuming ) on a 3x2 Bravais lattice with periodic boundary conditions.
# Main problem:
How many degenerate ground states are there? How many of them are in the flux-free sector? Compute the energy of the ground states with three decimal precision.
Plain-text mathematical notation (without MathML)
# Problem setup: Consider the Kitaev honeycomb model at the isotropic limit (assuming J_(x)=J_(y)=J_(z)=1) on a 3x2 Bravais lattice with periodic boundary conditions. # Main problem: How many degenerate ground states are there? How many of them are in the flux-free sector? Compute the energy of the ground states with three decimal precision.
Original LaTeX notation
# Problem setup: Consider the Kitaev honeycomb model at the isotropic limit (assuming $J_x=J_y=J_z=1$) on a 3x2 Bravais lattice with periodic boundary conditions. # Main problem: How many degenerate ground states are there? How many of them are in the flux-free sector? Compute the energy of the ground states with three decimal precision.
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