Benchmark AI / Public workspace
CritPt / Challenge_19_main / Consider two cascaded optical parametric amplifiers (OPAs) pumped by lasers at…
Problem
Answer published by the source. Consult the official source to check your work against its answer.
code template
Code
import sympy as sp
r_1, r_2 = sp.symbols('r_1 r_2')
mu, eta = sp.symbols('mu eta')
phi_1, phi_2 = sp.symbols('phi_1 phi_2')
theta, nu, Omega = sp.symbols('theta nu Omega')
def answer(r_1, r_2, mu, eta, phi_1, phi_2, theta, nu, Omega):
r"""
Return the expression of $\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$
and its maximum squeezed and anti-squeezed values in Sympy format.
Inputs
----------
r_1, r_2 : sympy.Symbol, gain parameters of the first and second OPAs
mu : sympy.Symbol, transmission coefficient ($\mu_s=\mu_i=\mu$)
eta : sympy.Symbol, detection efficiency ($\eta_s=\eta_i=\eta$)
phi_1 : sympy.Symbol, pump phase of the first OPA
phi_2 : sympy.Symbol, pump phase of the second OPA
theta : sympy.Symbol, as defined in $I_{\theta}(\nu)$
nu : sympy.Symbol, modulation frequency
Omega : sympy.Symbol, half of the frequency of the pump laser
Outputs
----------
original : sympy.Expr
Sympy expression for the original $\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$
max_squeezed, max_antisqueezed : sympy.Expr
Sympy expressions for the maximum squeezed and anti-squeezed
$\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$
when $\phi_2-\phi_1=\pi$.
"""
# ------------------ FILL IN YOUR RESULTS BELOW ------------------
original = ...
max_squeezed = ...
max_antisqueezed = ...
# ---------------------------------------------------------------
return original, max_squeezed, max_antisqueezedproblem description
# Problem setup:
Consider two cascaded optical parametric amplifiers (OPAs) pumped by lasers at frequency . The first OPA is pumped with a phase of , while the second OPA is pumped with a phase of . The signal and idler beams generated by the first OPA undergo on-chip loss before entering the second OPA, with transmission coefficients . After passing through the second OPA, there are additional detection efficiencies . Suppose the gain parameters of the two OPAs are and , respectively. Define the mean squared power of the photocurrent's sideband . Here and is the annihilation operator of the photon mode of optical frequency .
# Main problem:
Derive , then find out the maximum squeezed and anti-squeezed if .
Plain-text mathematical notation (without MathML)
# Problem setup: Consider two cascaded optical parametric amplifiers (OPAs) pumped by lasers at frequency 2Ω. The first OPA is pumped with a phase of ϕ₁, while the second OPA is pumped with a phase of ϕ₂. The signal and idler beams generated by the first OPA undergo on-chip loss before entering the second OPA, with transmission coefficients μ_(s)=μ_(i)=μ. After passing through the second OPA, there are additional detection efficiencies η_(s)=η_(i)=η. Suppose the gain parameters of the two OPAs are r₁ and r₂, respectively. Define the mean squared power of the photocurrent's sideband ⟨|I_(θ)(ν)|²⟩. Here I_(θ)(ν)=a_(Ω+ν)e^(−iθ)+a_(Ω−ν)^(†)e^(iθ) and a_(ω) is the annihilation operator of the photon mode of optical frequency ω. # Main problem: Derive ⟨|I_(θ)(ν)|²⟩, then find out the maximum squeezed and anti-squeezed ⟨|I_(θ)(ν)|²⟩ if ϕ₂−ϕ₁=π.
Original LaTeX notation
# Problem setup:
Consider two cascaded optical parametric amplifiers (OPAs) pumped by lasers at frequency $2\Omega$. The first OPA is pumped with a phase of $\phi_1$, while the second OPA is pumped with a phase of $\phi_2$. The signal and idler beams generated by the first OPA undergo on-chip loss before entering the second OPA, with transmission coefficients $\mu_s=\mu_i=\mu$. After passing through the second OPA, there are additional detection efficiencies $\eta_s=\eta_i=\eta$. Suppose the gain parameters of the two OPAs are $r_1$ and $r_2$, respectively. Define the mean squared power of the photocurrent's sideband $\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$. Here $I_{\theta}(\nu ) = {a_{\Omega + \nu }}{e^{ - i\theta }} + a_{\Omega - \nu }^\dagger {e^{i\theta }}$ and $a_\omega$ is the annihilation operator of the photon mode of optical frequency $\omega$.
# Main problem:
Derive $\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$, then find out the maximum squeezed and anti-squeezed $\left\langle {{{\left| {I_{\theta}\left( \nu \right)} \right|}^2}} \right\rangle$ if $\phi_2 - \phi_1 = \pi$.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