Laguerre Polynomials

Download as PDF

Ever wonder if there are special 'celebrity' polynomials in the math world? Meet the Laguerre polynomials! They are a unique family of functions with powerful properties and surprising uses in physics and computer science. Let's explore how to build them step-by-step and see what makes them so useful.

Laguerre Polynomials — an original Algebra911 reference diagram defining laguerre polynomials with its key formula and a worked example.
An Introduction to Laguerre Polynomials

What Are Laguerre Polynomials?

Laguerre polynomials are a special, infinite sequence of polynomials, denoted as Ln(x), where n is a non-negative integer (0,1,2,3,...). Think of them as a specific family of mathematical expressions, each built according to a precise recipe. For each number n you choose, the recipe gives you a unique polynomial of degree n. The first one, L0(x), is incredibly simple, while L10(x) is much more complex. They are named after the 19th-century French mathematician Edmond Laguerre, who first studied their properties. While they might seem abstract, they are fundamental tools used to solve important problems in quantum mechanics, electrical engineering, and numerical analysis.

What Is a Polynomial Again?

Before we build our first Laguerre polynomial, let's have a quick refresher. A polynomial is a mathematical expression made up of variables (like x), coefficients (numbers in front of the variables), and exponents that are non-negative whole numbers. For example, 5x32x+7 is a polynomial.

  • Terms: The parts being added or subtracted, like 5x3, 2x, and 7.
  • Coefficients: The numbers multiplying the variables, like 5 and 2.
  • Degree: The highest exponent of the variable in the polynomial. The degree of 5x32x+7 is 3.

Laguerre polynomials, Ln(x), are special because their coefficients are determined by a very specific and elegant formula, which we'll explore next.

How Do You Build a Laguerre Polynomial?

The 'recipe' for creating any Laguerre polynomial is given by a summation formula. It might look intimidating at first, but we can break it down piece by piece.

Ln(x)=k=0n(1)k(nk)xkk!

Let's unpack what each part of this formula means:

  1. Ln(x): This is the notation for the Laguerre polynomial of degree n. To find a specific polynomial, like L2(x), you set n=2.
  2. k=0n: This is the summation symbol, Sigma. It means we're going to add up a series of terms. We start by plugging in k=0 into the expression that follows, then k=1, then k=2, and so on, all the way up to k=n.
  3. (1)k: This part creates an alternating sign. When k is even (0, 2, 4, ...), (1)k is 1 (positive). When k is odd (1, 3, 5, ...), (1)k is 1 (negative). So our terms will alternate: plus, minus, plus, minus...
  4. (nk): This is the binomial coefficient, read as "n choose k". It tells us how many ways we can choose k items from a set of n items. It has its own formula: (nk)=n!k!(nk)!.
  5. Factorials (!): The exclamation mark denotes a factorial. You calculate it by multiplying that number by all the whole numbers less than it, down to 1. For example, 4!=4×3×2×1=24. A special rule is that 0!=1.
  6. xkk!: This is the variable part. For each term in our sum, we have x raised to the power of the current k, divided by the factorial of k.

By combining these pieces for each value of k from 0 to n, we can construct any Laguerre polynomial we want.

Let's Calculate the First Few Laguerre Polynomials

The best way to understand the formula is to use it. Let's build the first few polynomials from scratch.

Zeroth Polynomial: L0(x)

Here, n=0. Our sum only has one term, where k=0.

L0(x)=k=00(1)k(0k)xkk!=(1)0(00)x00!

Using our definitions ((1)0=1, (00)=1, x0=1, and 0!=1), we get:

L0(x)=(1)(1)11=1

So, the zeroth Laguerre polynomial is just the number 1.

Example 1

Calculate the first Laguerre polynomial, L1(x).

Here, n=1. Our sum goes from k=0 to k=1, so it will have two terms.

L1(x)=(1)0(10)x00!k=0+(1)1(11)x11!k=1

Let's calculate each binomial coefficient: (10)=1!0!(10)!=1 and (11)=1!1!(11)!=1.

Now substitute everything in:

L1(x)=(1)(1)11+(1)(1)x1L1(x)=1x
Example 2

Calculate the second Laguerre polynomial, L2(x).

Here, n=2. Our sum goes from k=0 to k=2, giving us three terms.

L2(x)=(1)0(20)x00!k=0+(1)1(21)x11!k=1+(1)2(22)x22!k=2

Calculate the coefficients: (20)=1, (21)=2, (22)=1.

Substitute them in:

L2(x)=(1)(1)11+(1)(2)x1+(1)(1)x22L2(x)=12x+12x2
Example 3

Calculate the third Laguerre polynomial, L3(x).

Here, n=3. Our sum goes from k=0 to k=3.

L3(x)=k=03(1)k(3k)xkk!

This expands to four terms:

L3(x)=(30)x00!(31)x11!+(32)x22!(33)x33!

Calculate the coefficients: (30)=1, (31)=3, (32)=3, (33)=1.

Substitute them in:

L3(x)=1113x1+3x221x36L3(x)=13x+32x216x3

Here is a table of the first few Laguerre polynomials for quick reference:

nLn(x)
01
1x+1
212x22x+1
316x3+32x23x+1
4124x423x3+3x24x+1

What Do Laguerre Polynomials Look Like?

Graphing the polynomials can give us a better feel for their behavior. Each Ln(x) has a unique shape.

  • L0(x)=1 is a horizontal line at y=1.
  • L1(x)=x+1 is a straight line that slopes downward, crossing the y-axis at 1 and the x-axis at 1.
  • L2(x)=12x22x+1 is a parabola that opens upwards.
  • L3(x)=16x3+32x23x+1 is a cubic curve.

They have some interesting graphical properties:

  1. Value at Zero: Notice that if you plug x=0 into any Laguerre polynomial, all the terms with x disappear, leaving only the first term, which is always 1. This means that all Laguerre polynomials pass through the point (0,1).
  2. Roots (X-intercepts): A fascinating property is that the polynomial Ln(x) has exactly n distinct roots, and all of them are positive real numbers. For example, the graph of L3(x) will cross the positive x-axis exactly three times.
  3. Orthogonality: This is a more advanced concept, but it's their most important property. It means that when you multiply two different Laguerre polynomials together and calculate a special kind of 'weighted' area under the curve (an integral), the result is zero. This property is what makes them so useful for approximating other functions and solving differential equations.
Key formulas for laguerre polynomials by Algebra911.
Key formulas for laguerre polynomials by Algebra911.

Where Are Laguerre Polynomials Used in the Real World?

These polynomials aren't just a mathematical curiosity; they are essential tools in several fields of science and engineering.

  • Quantum Mechanics: This is their most famous application. The quantum mechanical model of the hydrogen atom uses a formula to describe where its single electron is likely to be. The radial part of this formula—the part that depends on the distance from the nucleus—is described by Laguerre polynomials! In a very real sense, these polynomials help shape our understanding of the fundamental structure of atoms.
  • Numerical Analysis: In many real-world problems, we need to find the area under a complex curve (a process called integration). Sometimes, this is too hard to do exactly. A technique called Gaussian quadrature uses the roots of special polynomials, including Laguerre polynomials, to find highly accurate approximations of these areas. This is used in computer simulations for everything from weather forecasting to designing airplane wings.
  • Electrical Engineering: In systems analysis, engineers often model how a system (like an electrical circuit) responds to a signal over time. Laguerre polynomials can be used to create mathematical models of these systems, helping to analyze and predict their behavior efficiently.

Common Mistakes to Avoid

When you're first learning to calculate Laguerre polynomials, a few common pitfalls can trip you up. Watch out for these:

  • Forgetting that 0!=1: This is the most common mistake. The first term (for k=0) in every Laguerre polynomial relies on the fact that 0! is defined as 1, not 0.
  • Mixing up n and k: Remember that n is the degree of the polynomial you are building and it stays fixed throughout the calculation. The variable k is the index of the sum that changes for each term (from 0 to n).
  • Errors with the Alternating Sign: It's easy to forget the (1)k term. Always double-check your signs: the k=0 term is positive, the k=1 term is negative, the k=2 term is positive, and so on.
  • Calculation Errors in Binomial Coefficients: Calculating (nk)=n!k!(nk)! can be tricky. Write out the factorials carefully to avoid mistakes, and remember that (n0)=1 and (nn)=1.

Quick Reference Summary

Here's a quick summary of the key points about Laguerre polynomials.

Definition: A sequence of polynomials Ln(x) where n is a non-negative integer, used to solve problems in physics and engineering.

The Formula:

Ln(x)=k=0n(1)k(nk)xkk!

The First Four Polynomials:

  • L0(x)=1
  • L1(x)=x+1
  • L2(x)=12x22x+1
  • L3(x)=16x3+32x23x+1

Key Properties:

  • The degree of Ln(x) is n.
  • All Laguerre polynomials pass through the point (0,1).
  • Ln(x) has n real, positive roots.

Frequently Asked Questions

Are there other types of 'special' polynomials?

Yes, many! Mathematicians have discovered other families of polynomials like Legendre, Hermite, and Chebyshev polynomials. Each set has unique properties that make them perfect for solving different kinds of problems in math and science.

Who was Edmond Laguerre?

Edmond Laguerre (1834-1886) was a French mathematician who made significant contributions to geometry and mathematical analysis. The polynomials are named in his honor because he was the first to systematically study their properties.

In L_n(x), does 'n' have to be a whole number?

Yes, for the standard Laguerre polynomials we've discussed, the index n must be a non-negative integer (0,1,2,3,...). Each integer value of n defines a different polynomial in the sequence.

Why do all Laguerre polynomials equal 1 when x=0?

This happens because of the formula. When you substitute x=0, every term that contains xk (for k>0) becomes zero. The only term left is the very first one (where k=0), which simplifies to (1)0(n0)000!, which is just 1.

Do I need to know calculus to understand these polynomials?

Not for the basics! The summation formula we used to build them only requires algebra. However, calculus is used to discover their deeper properties, like orthogonality, and to understand the differential equation they originally came from.

What are 'generalized' Laguerre polynomials?

Generalized Laguerre polynomials, written as Ln(α)(x), are a more advanced version with an extra parameter, alpha (α). This extra parameter makes them more flexible, allowing them to solve an even wider range of problems in physics.

Is there an easier way to find the next polynomial in the sequence?

Yes, there is! It's called a recurrence relation. This is a special formula that lets you build Ln+1(x) if you already know the two before it, Ln(x) and Ln1(x). It's a great shortcut once you have the first two polynomials.