Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Binney & Mamon (1982)

San Diego State University

Abstract (paraphrased)

Given the projected surface brightness Σ(R)\Sigma(R) and the line-of-sight velocity dispersion σv(R)\sigma_v(R) of a spherical galaxy as functions of projected radius, Binney & Mamon construct the unique constant mass-to-light-ratio model consistent with both, and recover as an output the radial dependence of the velocity-anisotropy profile β(r)\beta(r) — without assuming isotropy. The method is an Abel-type inversion of the projected Jeans equation (their §2). Applied to M87, it returns a physically reasonable, radially anisotropic model with constant M/LV7.6M/L_V\approx7.6 that needs no central black hole. The single relation this paper contributes to progenax is the line-of-sight projection integral (their Eq. 7), which maps an anisotropic 3-D model (l,σr,β)(l, \sigma_r, \beta) onto the observed σv(R)Σ(R)\sigma_v(R)\,\Sigma(R) on the sky.

The load-bearing equations (verified against the paper, §2, p. 363)

Anisotropy parameter (Eq. 1, p. 363). With σr,σθ\sigma_r,\sigma_\theta the radial and (single) tangential principal dispersions,

βσr2σθ2σr2.\beta \equiv \frac{\sigma_r^2 - \sigma_\theta^2}{\sigma_r^2}.

β=0\beta=0 is isotropic; β1\beta\to1 is purely radial. (progenax supplies β(r)\beta(r) from the Osipkov–Merritt law β=r2/(r2+ra2)\beta=r^2/(r^2+r_a^2) of Merritt (1985); BM82 itself is agnostic to the functional form of β\beta.)

Surface-density / luminosity-density Abel pair (Eq. 2, p. 363). The luminosity density l(r)l(r) is recovered from the surface brightness Σ(R)\Sigma(R) by the standard Abel deprojection

l(r)=1πrRtdΣdRdR(R2r2)1/2.l(r) = -\frac{1}{\pi}\int_r^{R_t}\frac{d\Sigma}{dR}\,\frac{dR}{(R^2-r^2)^{1/2}}.

Its forward companion — projecting a 3-D density l(r)l(r) (or ρ(r)\rho(r)) onto the sky — is the inverse-Abel relation Σ(R)=2RRtl(r)r(r2R2)1/2dr\Sigma(R) = 2\int_R^{R_t} l(r)\,r\,(r^2-R^2)^{-1/2}\,dr, which is what progenax evaluates for the projection normalisation Σ\Sigma.

Line-of-sight projection integral (Eq. 7, p. 363) — the central result for progenax. “Elementary geometry” gives the observed line-of-sight dispersion as

12σv2(R)Σ(R)=RRtl(r)σr2(r)(r2R2)1/2rdr    R2RRtβ(r)l(r)σr2(r)r(r2R2)1/2dr.\tfrac12\,\sigma_v^2(R)\,\Sigma(R) = \int_R^{R_t}\frac{l(r)\,\sigma_r^2(r)}{(r^2-R^2)^{1/2}}\,r\,dr \;-\; R^2\int_R^{R_t}\frac{\beta(r)\,l(r)\,\sigma_r^2(r)}{r\,(r^2-R^2)^{1/2}}\,dr.

The two integrals share the measure r/(r2R2)1/2r/(r^2-R^2)^{1/2} (the first carries weight rr, the second weight R2/rR^2/r), so they combine into a single anisotropic kernel. Multiplying through by 2:

σv2(R)Σ(R)=2RRt ⁣(1β(r)R2r2)l(r)σr2(r)r(r2R2)1/2dr.\sigma_v^2(R)\,\Sigma(R) = 2\int_R^{R_t}\!\left(1 - \beta(r)\,\frac{R^2}{r^2}\right) l(r)\,\sigma_r^2(r)\,\frac{r}{(r^2-R^2)^{1/2}}\,dr.

(4) is the form implemented in project_dispersion: the line-of-sight kernel (1βR2/r2)\bigl(1-\beta R^2/r^2\bigr), the weight lσr2l\,\sigma_r^2, the factor 2, and the r/(r2R2)1/2r/(r^2-R^2)^{1/2} projection measure are exactly Eq. (7) regrouped. (progenax uses the mass density ρ\rho as the projection weight under the paper’s own mass-follows-light assumption ρ=Al\rho = A\,l, Eq. 3; the constant AA cancels in σv2=(σv2Σ)/Σ\sigma_v^2 = (\sigma_v^2\Sigma)/\Sigma.)

Code cross-reference (src/progenax/kinematics/dispersion.py)

project_dispersion (def at line 677) folds the r/(r2R2)1/2r/(r^2-R^2)^{1/2} pole away analytically via r2=R2+u2r^2 = R^2 + u^2 (so rdr/(r2R2)1/2=dur\,dr/(r^2-R^2)^{1/2} = du) and integrates a smooth quadrature in uu (line 810, r = sqrt(R_i**2 + u**2)). With ratio = R²/r² (line 822) and w = rho * sigma_r2 (line 823):

QuantityCode (line)Kernel in codePaper source
Σ(R)\Sigma(R)Sigma, L829: 2*trapezoid(rho*jac, grid)2ρr/r2R2dr2\int \rho\, r/\sqrt{r^2-R^2}\,drForward inverse-Abel of (2) (Eq. 2)
σlos2\sigma_{\rm los}^2S_los, L830: (1 - beta*ratio)*w1βR2/r21 - \beta\,R^2/r^2BM82 Eq. 7(4)
σpm,R2\sigma_{\rm pm,R}^2S_pmr, L831: (1 - beta + beta*ratio)*w1β+βR2/r21 - \beta + \beta\,R^2/r^2NOT in BM82 (Leonard & Merritt 1989; Strigari+2007)
σpm,T2\sigma_{\rm pm,T}^2S_pmt, L832: (1 - beta)*w1β1 - \betaNOT in BM82 (same later PM works)
β(r)\beta(r)L820: r**2/(r**2 + r_a2)OM lawMerritt (1985), not BM82

The factor 2 (L829–832), the lσr2l\,\sigma_r^2 weight, and the substitution that removes 1/r2R21/\sqrt{r^2-R^2} all match Eq. (7) cell-by-cell. The isotropic limit (ra=r_a=None β=0\Rightarrow\beta=0, L818) collapses all three kernels to 1, so σlos=σpm,R=σpm,T\sigma_{\rm los}=\sigma_{\rm pm,R}=\sigma_{\rm pm,T} — the correct β=0\beta=0 behaviour of Eq. (7).

Verification verdict

MATCH (with an attribution caveat). The line-of-sight kernel (1 - beta*ratio) in S_los (L830) is algebraically identical to Binney & Mamon (1982) Eq. (7), regrouped as (4); the Σ\Sigma normalisation is the forward partner of their Eq. (2) Abel pair. No physics discrepancy in the σlos\sigma_{\rm los} / Σ\Sigma channels.

The only issue is provenance, not formula: the project_dispersion docstring (L678, L682, L825 “B&M82 kernels”) and the module header (L11–13, L21–22) credit all three projection kernels to Binney & Mamon (1982), but BM82 contains the line-of-sight kernel only. The proper-motion kernels (1β+βR2/r2)(1-\beta+\beta R^2/r^2) and (1β)(1-\beta) are the standard later extension (Leonard & Merritt 1989, ApJ 339, 195; Strigari, Bullock & Kaplinghat 2007; Mamon & Łokas 2005). This is a docstring/citation fix for Phase 2 — no source-code logic change — flagged here for the closeout, not fixed in this note’s pass.

Use in progenax

Notes