benchmarks.wiki / Public workspace

CritPt / Challenge_3_main / In the AdS_3/BCFT_2 correspondence, consider a setup where the bulk black…

Problem

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

problem description

# Problem setup: In the AdS$_3$/BCFT$_2$ correspondence, consider a setup where the bulk black hole geometry—characterized by an inverse temperature β=2πr0\beta = \frac{2\pi}{r_0}—is given by \begin{equation} ds^2=f(r)d\tau_E^2+\frac{dr^2}{f(r)}+r^2 d\phi^2, \qquad f(r)=r^2-r_0^2, \end{equation} with ϕϕ+2π\phi \sim \phi + 2\pi and τEτE+β=τE+2πr0\tau_E \sim \tau_E + \beta = \tau_E + \frac{2\pi}{r_0}, and this geometry is terminated by a spherically symmetric brane of tension η\eta, where 0<η<10<\eta<1, behind the horizon. Let O(x)\mathcal{O}(x) be a scalar primary operator in the BCFT, whose bulk dual is a massive scalar field of mass mm. For simplicity, assume the operator is inserted at the Euclidean time-reflection symmetric slice τE=0\tau_E = 0. # Main problem: Using the geodesic approximation, determine the form of the one-point function O(x)\langle \mathcal{O}(x) \rangle. How does the result depend on the mass mm of the bulk field, the black hole radius r0r_0 and the brane tension η\eta?
Plain-text mathematical notation (without MathML)
# Problem setup:
In the AdS$_3$/BCFT$_2$ correspondence, consider a setup where the bulk black hole geometry—characterized by an inverse temperature β=(2π)/(r₀)—is given by
\begin{equation}
ds^2=f(r)d\tau_E^2+\frac{dr^2}{f(r)}+r^2 d\phi^2, \qquad f(r)=r^2-r_0^2,
\end{equation}
with ϕ∼ϕ+2π and τ_(E)∼τ_(E)+β=τ_(E)+(2π)/(r₀), and this geometry is terminated by a spherically symmetric brane of tension η, where 0<η<1, behind the horizon. Let O(x) be a scalar primary operator in the BCFT, whose bulk dual is a massive scalar field of mass m. For simplicity, assume the operator is inserted at the Euclidean time-reflection symmetric slice τ_(E)=0.

# Main problem:

Using the geodesic approximation, determine the form of the one-point function ⟨O(x)⟩. How does the result depend on the mass m of the bulk field, the black hole radius r₀ and the brane tension η?
Original LaTeX notation
# Problem setup:
In the AdS$_3$/BCFT$_2$ correspondence, consider a setup where the bulk black hole geometry—characterized by an inverse temperature $\beta = \frac{2\pi}{r_0}$—is given by
\begin{equation}
ds^2=f(r)d\tau_E^2+\frac{dr^2}{f(r)}+r^2 d\phi^2, \qquad f(r)=r^2-r_0^2,
\end{equation}
with $\phi \sim \phi + 2\pi$ and $\tau_E \sim \tau_E + \beta = \tau_E + \frac{2\pi}{r_0}$, and this geometry is terminated by a spherically symmetric brane of tension $\eta$, where $0<\eta<1$, behind the horizon. Let $\mathcal{O}(x)$ be a scalar primary operator in the BCFT, whose bulk dual is a massive scalar field of mass $m$. For simplicity, assume the operator is inserted at the Euclidean time-reflection symmetric slice $\tau_E = 0$.

# Main problem:

Using the geodesic approximation, determine the form of the one-point function $\langle \mathcal{O}(x) \rangle$. How does the result depend on the mass $m$ of the bulk field, the black hole radius $r_0$ and the brane tension $\eta$?

code template

Code

import sympy as sp

m, r0, eta = sp.symbols('m r0 eta', positive=True)

def answer(m, eta, r0):
    r"""
    Return expression of the one-point function

    Inputs
    ----------
    m: sympy.Symbol, mass of the buld field, $m$
    eta: sympy.Symbol, the brane tension, $\eta$
    r0: sympy.Symbol, the black hole radius, $r_0$

    Output
    ----------
    O_x: sympy.Expr, the one-point function, $\langle \mathcal{O}(x) \rangle$
    """

    # ------------------ FILL IN YOUR RESULT BELOW ------------------
    O_x = ...   # a SymPy expression of inputs
    # ---------------------------------------------------------------

    return O_x

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