CarlsonRF[x,y,z]
gives the Carlson's elliptic integral
.
CarlsonRF
CarlsonRF[x,y,z]
gives the Carlson's elliptic integral
.
Details
- Mathematical function, suitable for both symbolic and numerical manipulation.
- For
,
and
,
. - CarlsonRF[x,y,z] has a branch cut discontinuity for
. - For certain arguments, CarlsonRF automatically evaluates to exact values.
- CarlsonRF can be evaluated to arbitrary numerical precision.
- CarlsonRF automatically threads over lists.
- CarlsonRF can be used with Interval and CenteredInterval objects. »
Examples
open all close allBasic Examples (3)
CarlsonRF[1., 2., 3.]Plot over a range of arguments:
Plot[{CarlsonRF[t, 2, 3], CarlsonRF[1, t, 3], CarlsonRF[1, 2, t]}, {t, 0, 6}, PlotLegends -> "Expressions"]CarlsonRF is related to the Legendre elliptic integral of the first kind
for
:
Sin[ϕ] CarlsonRF[Cos[ϕ]^2, 1 - m Sin[ϕ]^2, 1] /. {ϕ -> Pi / 3, m -> 0.7}EllipticF[ϕ, m] /. {ϕ -> Pi / 3, m -> 0.7}Scope (17)
Numerical Evaluation (6)
N[CarlsonRF[4, 6, 8]]N[CarlsonRF[4, -6, 8]]N[CarlsonRF[1, 4, 9], 50]Precision of the output tracks the precision of the input:
CarlsonRF[5, 3, 1.234567890123456789012345]CarlsonRF[5, 3, 1.2345678901234567890123456789012345]Evaluate for complex arguments:
CarlsonRF[I, 1 - 2I, 3. + I]Evaluate efficiently at high precision:
Timing[CarlsonRF[2, 6, 7`500]]Timing[Precision[CarlsonRF[2, 6, 7`100000]]]CarlsonRF threads elementwise over lists:
CarlsonRF[{1., 2., 3.}, {2., 3., 1.}, {3., 1., 2.}]CarlsonRF can be used with Interval and CenteredInterval objects:
CarlsonRF[Interval[{1.23, 1.24}], Interval[{2.34, 2.35}], Interval[{3.45, 3.46}]]CarlsonRF[CenteredInterval[3 / 2, 1 / 100], CenteredInterval[5 / 4, 1 / 100], CenteredInterval[7 / 6, 1 / 100]]Specific Values (4)
Simple exact results are generated automatically:
CarlsonRF[x, x, x]CarlsonRF[x, 2, 2]When one argument of CarlsonRF is zero, CarlsonRF reduces to the complete elliptic integral CarlsonRK:
CarlsonRF[0, x, y]When two of the arguments of CarlsonRF are identical and do not lie on the negative real axis, CarlsonRF reduces to CarlsonRC:
CarlsonRF[x, 2 + 3I, 2 + 3I]When all arguments of CarlsonRF are identical and do not lie on the negative real axis, CarlsonRF reduces to an elementary function:
CarlsonRF[2 + 3I, 2 + 3I, 2 + 3I]Differentiation and Integration (2)
Function Representations (1)
TraditionalForm formatting:
CarlsonRF[x, y, z]//TraditionalFormFunction Identities and Simplifications (4)
An equation relating CarlsonRF, CarlsonRG and CarlsonRD:
2CarlsonRG[x, y, z] == z CarlsonRF[x, y, z] + (Sqrt[x]Sqrt[y]/Sqrt[z]) - (1/3)(z - x)(z - y)CarlsonRD[x, y, z]//FullSimplifyCarlsonRF satisfies the Euler–Poisson partial differential equation:
(x - y)Subscript[∂, xy]CarlsonRF[x, y, z] + (1/2) Subscript[∂, y]CarlsonRF[x, y, z] - (1/2)Subscript[∂, x]CarlsonRF[x, y, z] == 0//FunctionExpand//FullSimplifyCarlsonRF satisfies Euler's homogeneity relation:
x Subscript[∂, x]CarlsonRF[x, y, z] + y Subscript[∂, y]CarlsonRF[x, y, z] + z Subscript[∂, z]CarlsonRF[x, y, z] == -(1/2)CarlsonRF[x, y, z]//FunctionExpand//FullSimplifyA partial differential equation satisfied by CarlsonRF:
Subscript[∂, x]CarlsonRF[x, y, z] + Subscript[∂, y]CarlsonRF[x, y, z] + Subscript[∂, z]CarlsonRF[x, y, z] == -(1/2Sqrt[x]Sqrt[y]Sqrt[z])//FunctionExpand//FullSimplifyApplications (3)
Distance along a meridian of the Earth:
With[{a = UnitConvert[GeodesyData["ITRF00", "SemimajorAxis"], $UnitSystem], e = GeodesyData["ITRF00", "Eccentricity"], ϕ = 29°},
a(1 - e^2)(Sin[ϕ]CarlsonRF[Cos[ϕ]^2, 1 - e^2Sin[ϕ]^2, 1] + (e^2/3)Sin[ϕ]^3CarlsonRD[Cos[ϕ]^2, 1 - e^2Sin[ϕ]^2, 1])]Compare with the result of GeoDistance:
GeoDistance[GeoPosition[{0, 0}], GeoPosition[{29, 0}]]Expectation value of the reciprocal square root of a quadratic form over a normal distribution:
MatrixForm[mat = HilbertMatrix[3]]NExpectation[(Sqrt[2]/Sqrt[{u, v, w}.mat.{u, v, w}]), {u, v, w}ProductDistribution[{NormalDistribution[], 3}], Method -> "MonteCarlo"]//QuietCompare with the closed-form result in terms of CarlsonRF:
N[(Gamma[(3 - 1/2)]/Gamma[(3/2)])(CarlsonRF@@Eigenvalues[mat]), 25]Express EllipticLog in terms of CarlsonRF:
With[{x = 1, a = 2, b = 6},
N[{-CarlsonRF[x, x + (a + Sqrt[a^2 - 4b]/2), x + (2b/a + Sqrt[a^2 - 4b])], EllipticLog[{x, Sqrt[x^3 + a x^2 + b x]}, {a, b}]}, 25]]Properties & Relations (1)
CarlsonRF is invariant under a permutation of its arguments:
CarlsonRF[x, y, z] == CarlsonRF[z, x, y]Related Guides
Text
Wolfram Research (2021), CarlsonRF, Wolfram Language function, https://reference.wolfram.com/language/ref/CarlsonRF.html (updated 2023).
CMS
Wolfram Language. 2021. "CarlsonRF." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2023. https://reference.wolfram.com/language/ref/CarlsonRF.html.
APA
Wolfram Language. (2021). CarlsonRF. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/CarlsonRF.html
BibTeX
@misc{reference.wolfram_2026_carlsonrf, author="Wolfram Research", title="{CarlsonRF}", year="2023", howpublished="\url{https://reference.wolfram.com/language/ref/CarlsonRF.html}", note=[Accessed: 12-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_carlsonrf, organization={Wolfram Research}, title={CarlsonRF}, year={2023}, url={https://reference.wolfram.com/language/ref/CarlsonRF.html}, note=[Accessed: 12-June-2026]}