Benchmark AI / Public workspace

CritPt / Challenge_56_main / Consider a scalar field ϕ linearly coupled to the standard model…

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 values of the smallest $\Lambda_\gamma^{-1}$.

    Inputs
    ----------
    None

    Outputs
    ----------
    lambda_inv: list[float]
        Smallest coupling strength $\Lambda_\gamma^{-1}$ the Cosmic Explorer can probe at 200 Hz
        with an observation time of $\{1000\,\text{s}, 0.7\,\text{yrs}\}$ and a signal-to-noise of 1.
    """

    # ------------------ FILL IN YOUR RESULTS BELOW ------------------
    lambda_inv = ...
    # ---------------------------------------------------------------

    return lambda_inv

problem description

# Problem setup: Consider a scalar field ϕ\phi linearly coupled to the standard model electromagnetic field with coupling strength Λγ1\Lambda_\gamma^{-1}. We can write the interaction term of the Lagrangian as Lint=ϕ4ΛγFμνFμν\mathcal{L}_\text{int}=\frac{\phi}{4 \Lambda_\gamma}F^{\mu\nu}F_{\mu\nu}. Assuming the scalar field makes up all the dark matter, it may induce observable effects in laser interferometers. We consider signals of scalar field in the Cosmic Explorer, whose planned strain sensitivity is about 2×1025Hz1/22\times 10^{-25}\, \text{Hz}^{-1/2} in the frequency range of 50Hzf500Hz50\,\text{Hz} \leq f \leq 500\,\text{Hz}. The interferometer arm length of Cosmic Explorer is designed to be 40km40\, \text{km}. We assume the Cosmic Explorer uses a similar beamsplitter as LIGO, with thickness 6cm6\,\text{cm} and index of refraction 3.53.5. # Main problem: If there is an overdensity of dark matter at the device that is 178178 times the local dark matter density (take the local dark matter density to be 0.4GeV/cm30.4\,\text{GeV}/\text{cm}^3 and velocity to be 230km/s230\,\text{km}/\text{s}), what is the smallest Λγ1\Lambda_\gamma^{-1} the Cosmic Explorer can probe at 200Hz200\,\text{Hz} with a signal-to-noise ratio of 1 and with an observation time of 1000s1000\,\text{s} or 0.7yrs 0.7\,\text{yrs}, respectively? Keep at least three significant digits in the final result.
Plain-text mathematical notation (without MathML)

# Problem setup:
Consider a scalar field ϕ linearly coupled to the standard model electromagnetic field with coupling strength Λ_(γ)^(−1). We can write the interaction term of the Lagrangian as L_(int)=(ϕ)/(4Λ_(γ))F^(μν)F_(μν). Assuming the scalar field makes up all the dark matter, it may induce observable effects in laser interferometers. We consider signals of scalar field in the Cosmic Explorer, whose planned strain sensitivity is about 2×10^(−25) Hz^(−1/2) in the frequency range of 50 Hz≤f≤500 Hz. The interferometer arm length of Cosmic Explorer is designed to be 40 km. We assume the Cosmic Explorer uses a similar beamsplitter as LIGO, with thickness 6 cm and index of refraction 3.5.

# Main problem:

If there is an overdensity of dark matter at the device that is 178 times the local dark matter density (take the local dark matter density to be 0.4 GeV/cm³ and velocity to be 230 km/s), what is the smallest Λ_(γ)^(−1) the Cosmic Explorer can probe at 200 Hz with a signal-to-noise ratio of 1 and with an observation time of 1000 s or 0.7 yrs, respectively? Keep at least three significant digits in the final result.
Original LaTeX notation

# Problem setup:
Consider a scalar field $\phi$ linearly coupled to the standard model electromagnetic field with coupling strength $\Lambda_\gamma^{-1}$. We can write the interaction term of the Lagrangian as $\mathcal{L}_\text{int}=\frac{\phi}{4 \Lambda_\gamma}F^{\mu\nu}F_{\mu\nu}$. Assuming the scalar field makes up all the dark matter, it may induce observable effects in laser interferometers. We consider signals of scalar field in the Cosmic Explorer, whose planned strain sensitivity is about $2\times 10^{-25}\, \text{Hz}^{-1/2}$ in the frequency range of $50\,\text{Hz} \leq f \leq 500\,\text{Hz}$. The interferometer arm length of Cosmic Explorer is designed to be $40\, \text{km}$. We assume the Cosmic Explorer uses a similar beamsplitter as LIGO, with thickness $6\,\text{cm}$ and index of refraction $3.5$.

# Main problem:

If there is an overdensity of dark matter at the device that is $178$ times the local dark matter density (take the local dark matter density to be $0.4\,\text{GeV}/\text{cm}^3$ and velocity to be $230\,\text{km}/\text{s}$), what is the smallest $\Lambda_\gamma^{-1}$ the Cosmic Explorer can probe at $200\,\text{Hz}$ with a signal-to-noise ratio of 1 and with an observation time of $1000\,\text{s}$ or $ 0.7\,\text{yrs}$, respectively? Keep at least three significant digits in the final result.

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