AiryBi¶
Status: Stable
documented, exercised by the test suite and/or worked examples, with no known limitations recorded.
Description¶
AiryBi[z]
gives the Airy function Bi(z), the solution of y'' = z y that grows
exponentially as z -> +Infinity.
AiryBi[0] = 1/(3^(1/6) Gamma[2/3]), AiryBi[Infinity] = Infinity,
AiryBi[-Infinity] = 0. An entire function of z. Real and complex inputs
evaluate numerically at machine or arbitrary (MPFR) precision;
D[AiryBi[z], z] = AiryBiPrime[z]. Listable.
Examples¶
All examples below are verified against the current Mathilda build.
Implementation notes¶
Attributes: Listable, NumericFunction, Protected, ReadProtected.
Implementation status¶
Stable — documented, exercised by the test suite and/or worked examples, with no known limitations recorded.
References¶
- Source:
src/info.c - Specification:
docs/spec/builtins/special-functions.md
Notes & additional examples¶
Worked examples¶
Notes¶
AiryBi[z] is the dominant solution of the Airy equation y'' == z y, growing
exponentially as z -> +Infinity while AiryBi[-Infinity] == 0. Its exact
value at the origin is 1/(3^(1/6) Gamma[2/3]), and D[AiryBi[z], z] returns
AiryBiPrime[z]. Complex arguments are evaluated to the requested MPFR
precision; AiryBi is Listable.