BesselYZero[n,k]
represents the k
zero of the Bessel function of the second kind
.
BesselYZero[n,k,x0]
represents the k
zero greater than x0.
BesselYZero
BesselYZero[n,k]
represents the k
zero of the Bessel function of the second kind
.
BesselYZero[n,k,x0]
represents the k
zero greater than x0.
Details
- Mathematical function, suitable for both symbolic and numerical manipulation.
- N[BesselYZero[n,k]] gives a numerical approximation so long as the specified zero exists.
- BesselYZero[n,k] represents the k
zero greater than 0. - BesselYZero can be evaluated to arbitrary numerical precision.
- BesselYZero automatically threads over lists. »
Examples
open all close allBasic Examples (5)
N[BesselYZero[0, 1]]BesselY[0, BesselYZero[0, 1]]Display zeros of the BesselY function over a subset of the reals:
Plot[BesselY[1, z], {z, 0, 15}, Epilog -> {PointSize[0.03], Red, Point[Table[{BesselYZero[1, k], 0}, {k, 4}]]}]Series expansion at the origin:
Series[BesselYZero[n, x], {x, 0, 1}]TraditionalForm formatting:
BesselYZero[ν, k]//TraditionalFormScope (18)
Numerical Evaluation (7)
N[BesselYZero[0, 2]]Find the first zero of
greater than 50:
N[BesselJZero[0, 1, 50]]N[BesselYZero[1, 10, 50], 50]Evaluate efficiently at high precision:
N[BesselYZero[0, 2, 20`100]]//TimingN[BesselYZero[0, 3, 5`1000]];//TimingEvaluate at a noninteger second argument:
N[BesselYZero[0, 2 - 2 / 3], 20]For BesselYZero[ν,k-α/π], the result is a zero of
:
BesselJ[0, %]Sin[2Pi / 3] + BesselY[0, %]Cos[2Pi / 3]Compute the elementwise values of an array using automatic threading:
BesselYZero[1 / 2, {{2, 1}, {1, 3}}]//NOr compute the matrix BesselYZero function using MatrixFunction:
MatrixFunction[BesselYZero[1 / 2, #]&, {{2, 1}, {1, 3}}]//NCompute average-case statistical intervals using Around:
BesselYZero[ 1, Around[2, 0.01]]Specific Values (3)
Limit[BesselYZero[2, x], x -> Infinity]{BesselYZero[0, 1], BesselYZero[0, 2], BesselYZero[0, 3]}//NFind the first zero of BesselY[1,x] using Solve:
xzero = x /. Solve[BesselY[1, x] == 0 && 2 < x < 6, x][[1]]Plot[BesselY[1, x], {x, 0, 10}, Epilog -> Style[Point[{xzero, BesselY[1, xzero]}], PointSize[Large], Red]]Visualization (3)
Visualize the zeroes of BesselY as a step function:
Plot[BesselYZero[0, 1, x], {x, 1, 10}]Display zeros of the BesselY function:
Plot[BesselY[1, z], {z, 0, 20}, Epilog -> {PointSize[0.03], Point[Table[{BesselYZero[1, k], 0}, {k, 6}]]}]Show the first zero greater than 4:
Plot[BesselY[1, z], {z, 0, 10}, Epilog -> {PointSize[0.03], Red, Point[{BesselYZero[1, 1, 4], 0}]}]Differentiation and Series Expansions (5)
Derivative of Bessel zero with respect to k:
D[BesselYZero[ν, k], k]D[BesselYZero[2, x], {x, 2}]// FullSimplifyFind the Taylor expansion using Series:
Series[BesselYZero[n, x], {x, 0, 2}]//Normal// SimplifyFind the series expansion at Infinity:
Series[BesselYZero[n, x], {x, Infinity, 1}]Taylor expansion at a generic point:
Series[BesselYZero[n, x], {x, x0, 1}]Properties & Relations (1)
Asymptotic behavior of BesselYZero[ν,k] for large k:
Series[BesselYZero[ν, k], {k, Infinity, 3}]See Also
Tech Notes
Related Guides
History
Text
Wolfram Research (2007), BesselYZero, Wolfram Language function, https://reference.wolfram.com/language/ref/BesselYZero.html.
CMS
Wolfram Language. 2007. "BesselYZero." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/BesselYZero.html.
APA
Wolfram Language. (2007). BesselYZero. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/BesselYZero.html
BibTeX
@misc{reference.wolfram_2026_besselyzero, author="Wolfram Research", title="{BesselYZero}", year="2007", howpublished="\url{https://reference.wolfram.com/language/ref/BesselYZero.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_besselyzero, organization={Wolfram Research}, title={BesselYZero}, year={2007}, url={https://reference.wolfram.com/language/ref/BesselYZero.html}, note=[Accessed: 13-June-2026]}