Method on @sym: airy (k, x)
Method on @sym: airy (x)

Symbolic Airy functions of first/second kind and their derivatives.

k can be 0, 1, 2, or 3; as in the documentation for the non-symbolic Airy function, see ‘airy’.

Examples:

syms z
Ai = airy(0, z)
  ⇒ Ai = (sym) Ai(z)

Bi = airy(2, z)
  ⇒ Bi = (sym) Bi(z)

Bi_prime = airy(3, z)
  ⇒ Bi_prime = (sym) Bi'(z)

diff(Bi, z)
  ⇒ (sym) Bi'(z)

diff(Bi, z, z)
  ⇒ (sym) z⋅Bi(z)

See also: @sym/besselj, @sym/bessely, @sym/besseli, @sym/besselk, @sym/besselh.

Package: symbolic