JOVANA
Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
All guides

Orthogonal Polynomials & Bessel Functions at a Glance

Meet the famous polynomial families — Legendre, Hermite, Laguerre, Chebyshev — and the Bessel functions as named objects with known graphs and a few sharp properties, the way you once met sine before you ever proved a single thing about it.

A reference shelf of named curves

You already know how to meet a function before you understand it. Long before anyone showed you a proof, you knew sine: a wave that rises to 1, falls to -1, crosses zero at the multiples of pi, and repeats forever. You could picture it, sketch it, and reason with it. Only later did the Taylor series and the differential equation y'' = -y explain why it behaves that way. This guide does the same thing for a famous shelf of curves — the orthogonal polynomials and the Bessel functions — that show up everywhere advanced physics and engineering go. We meet them now as named objects with known graphs and a handful of sharp facts; later rungs will derive them from their differential equations.

Here is the unifying idea that makes the whole shelf hang together, and it is worth stating plainly before any names appear. You learned in linear algebra to build a vector out of perpendicular axis directions, because perpendicular pieces do not interfere: each coordinate can be read off on its own. The same trick works for functions if we decide what "perpendicular" should mean for two curves. The answer is to multiply them, integrate, and call them perpendicular — orthogonal — when that integral is zero. Every family on this shelf is just a set of polynomials (or, for Bessel, oscillating curves) chosen so that different members are orthogonal to each other. They are perpendicular axes for the space of functions.

The four polynomial families, by their habitat

The cleanest way to tell the four families apart is not by their formulas but by where each one lives — its interval and its weight. Think of them as four species adapted to four habitats. The Legendre polynomials live on the finite interval [-1, 1] with the plainest possible weight, w(x) = 1; they are the natural functions of a sphere, which is why they run physics in spherical coordinates. The Hermite polynomials live on the whole line (-infinity, infinity) with the bell-curve weight e^{-x^2}, the same Gaussian shape from the earlier guides; they are the functions of the quantum harmonic oscillator. See Legendre polynomials and Hermite polynomials.

The Laguerre polynomials live on the half-line [0, infinity) with the decaying weight e^{-x}; they are the radial functions of the hydrogen atom, where the electron's probability fades exponentially outward. The Chebyshev polynomials live back on [-1, 1] but with the weight 1 over square root of (1 - x^2), which piles up enormous emphasis near the two endpoints. That endpoint emphasis makes them the champions of numerical approximation: they distribute error evenly and tame the wild oscillations that plague naive high-degree fitting. See Laguerre polynomials and Chebyshev polynomials. Four habitats, four weights, four families — and the habitat predicts the application.

Family       Interval          Weight w(x)           Famous home
----------   ---------------   ------------------    -----------------------
Legendre     [-1, 1]           1                     sphere / spherical coords
Chebyshev    [-1, 1]           1/sqrt(1 - x^2)       numerical approximation
Hermite      (-inf, +inf)      e^{-x^2}              quantum harmonic oscillator
Laguerre     [0, +inf)         e^{-x}                hydrogen atom (radial part)

First few Legendre:   P0 = 1,  P1 = x,  P2 = (3x^2 - 1)/2,  P3 = (5x^3 - 3x)/2
First few Chebyshev:  T0 = 1,  T1 = x,  T2 = 2x^2 - 1,      T3 = 4x^3 - 3x
Beautiful Chebyshev fact:  T_n(cos theta) = cos(n theta)   (a disguised cosine!)
The four habitats at a glance. Each family is the unique set of polynomials orthogonal on its interval against its weight. Notice every P_n and T_n has the parity of its index — even index gives an even polynomial, odd gives odd.

Picture the graphs and they stop being abstract. On [-1, 1], P_n is a wiggly curve normalized so that P_n(1) = 1, and it crosses zero exactly n times inside the interval — P_2 dips once below the axis, P_3 wiggles through zero three times, and so on; more index means more wiggles, exactly like higher harmonics on a string. The Chebyshev T_n is even more vivid: because T_n(cos theta) = cos(n theta), its graph is literally a cosine wave bent onto [-1, 1], oscillating between +1 and -1 with equal-height ripples. Once you can sketch these, the polynomials feel as concrete as the trig functions they generalize.

Two machines that generate any family

You do not have to memorize these polynomials, and you do not have to find them by trial and error. There are two standard machines that crank them out, and meeting both now removes any sense of mystery. The first is a one-line differentiation formula. For Legendre it reads P_n(x) = (1 over (2^n n!)) times the n-th derivative of (x^2 - 1)^n. Differentiate the simple polynomial (x^2 - 1)^n exactly n times, scale, and out drops P_n — perfectly orthogonal, no luck required. This is a Rodrigues formula, and every family on the shelf has one (with its own inside function and weight). See Rodrigues' formula.

The second machine is even prettier: a single closed-form function whose power series in a dummy variable t has the entire family sitting in its coefficients. For Legendre, expand 1 over square root of (1 - 2 x t + t^2) as a power series in t, and the coefficient of t^n is exactly P_n(x). One tidy formula secretly stores infinitely many polynomials. This is a generating function, and it is the workhorse for proving the family's properties in one stroke — differentiate or multiply the generating function and whole identities fall out at once.

Why orthogonality is the whole point

Here is the payoff that justifies the entire shelf. Because the family is orthogonal, you can expand almost any function on the interval as a sum of family members — a generalized Fourier series — and read off each coefficient by a single integral, with zero algebra-solving. This is the exact echo of an ordinary Fourier series from an earlier rung, where sines and cosines were orthogonal and each coefficient came from one integral. The reason it works is the perpendicular-axes picture: when you project onto P_k, every other member contributes nothing because its overlap integral with P_k is zero.

  1. Pick the family whose interval and weight match your problem (sphere -> Legendre, oscillator -> Hermite, half-line decay -> Laguerre, approximation -> Chebyshev).
  2. To find the coefficient c_k of P_k in your expansion, integrate your function against P_k with the weight, then divide by the known integral of P_k squared (the family's normalization). One integral, one coefficient.
  3. Add up c_0 P_0 + c_1 P_1 + c_2 P_2 + ... and truncate where the terms get small. Because the pieces are orthogonal, a truncated sum is the best possible approximation of that length — no coefficient ever has to be re-tuned when you add more terms.

Two honest cautions before you trust this too much. First, an expansion only converges nicely under conditions on the function — roughly, it should be square-integrable against the weight, and just as with an ordinary Fourier series, a jump discontinuity produces a stubborn overshoot near the jump that does not vanish as you add terms (the Gibbs phenomenon). Second, orthogonality alone does not guarantee that the family is rich enough to represent every function; that extra property, called completeness, is a separate theorem you should know is being assumed, not something orthogonality hands you for free.

Bessel functions: a decaying drumhead sine

Now meet the most famous resident of this shelf that is NOT a polynomial. Drop a pebble into a round pond, or strike a circular drumhead, and the ripples spread outward as rings. The natural shapes for that round geometry are the Bessel functions of the first kind, written J_n(x). The mental picture is exact and easy to hold: J_n(x) looks like a sine wave that keeps oscillating forever but slowly shrinks in amplitude, decaying roughly like 1 over square root of x. It is a sine that runs out of energy as it travels outward — precisely what a ripple on water does as its single ring of height spreads over a longer and longer circle. See Bessel function of the first kind.

A few sharp facts make J_n concrete. J_0 starts at value 1 at x = 0 (like a cosine), while every J_n with n at least 1 starts at 0 (like a sine); all of them then oscillate and decay. Their zeros — the values where J_n(x) = 0 — are NOT evenly spaced like sine's multiples of pi, but they settle into near-even spacing far out, and those zeros are exactly the allowed drum frequencies, the reason a circular drum sounds inharmonic rather than pitched like a string. There is a second solution to the same problem, the Bessel function of the second kind Y_n(x), which is the partner that blows up to -infinity at the origin; see Bessel function of the second kind. You keep Y_n only when the center of your region is excluded — for a full drumhead you throw it away to keep the answer finite at the middle.

Do not over-read the family resemblance. The orthogonal polynomials are genuinely polynomials — finite, exact, elementary expressions you could write out. The Bessel functions are NOT polynomials and have no elementary closed form; J_n(x) is defined by an infinite power series (or equivalently by an integral) and is a non-elementary function, like the Gamma and error functions from the earlier guides. What unites the whole shelf is not their algebraic type but their role: each is an orthogonal set of building blocks tailored to a particular geometry. Polynomials for flat and spherical problems, Bessel functions for round and cylindrical ones.

What ties them all together

Step back and the shelf reveals a single organizing law that later rungs will make precise. Each of these families — Legendre, Hermite, Laguerre, Chebyshev, Bessel — is the solution set of a particular second-order differential equation, and those equations are not five unrelated accidents. They are all instances of one master pattern (the Sturm-Liouville form) that guarantees, automatically, that the solutions come out orthogonal with the right weight. Orthogonality is not something we imposed by hand; it is a theorem that falls out of the differential equation's structure, the same way the perpendicularity of vibration modes falls out of a symmetric matrix.

And there is a clean reason these particular families keep appearing rather than some other random list. When you take a wave or heat or quantum problem in a symmetric region and separate the variables, the leftover ordinary differential equation in each coordinate is precisely one of these named equations: spherical angles hand you Legendre's equation, the cylindrical radius hands you Bessel's equation, the oscillator hands you Hermite's. The geometry of the problem chooses the family for you. That is why the same five names recur across electrostatics, acoustics, heat flow, and quantum mechanics — they are the natural vocabulary of the symmetric regions where real physics is solvable.

So leave this guide with the working picture, not the formulas. You now know five named curves by sight: four polynomial families that wiggle across their intervals like bent harmonics, and the Bessel functions that ripple outward like a fading sine. You know each lives in a habitat — an interval and a weight — that makes its members mutually orthogonal, perpendicular axes you can expand any reasonable function along by computing one integral per coefficient. That is exactly enough to follow the later rungs, where these same objects are derived from their differential equations and the master Sturm-Liouville pattern is finally laid bare.