Explanation
1. Understanding Legendre Polynomials Recurrence Relations
Legendre polynomials Pn(x) are solutions to the Legendre differential equation and are highly utilized in physics and engineering problems. A fundamental property of these functions is that they satisfy a standard three-term linear recurrence relation.
The most common recurrence formula used to generate subsequent polynomials is:
(n+1)Pn+1(x)=(2n+1)xPn(x)−nPn−1(x)
2. Analysis of the Recurrence Structure
Let's analyze the mathematical structure of this three-term relation:
Let's test this by substituting starting values to construct the series sequentially:
To find P2(x) (setting n=1):
2P2(x)=3xP1(x)−1P0(x)
To compute this, we must know both P1(x) and P0(x).
To find P3(x) (setting n=2):
3P3(x)=5xP2(x)−2P1(x)
Once P2(x) is computed, finding P3(x) requires P2(x) and P1(x).
3. Conclusion
Because it is a second-order difference equation, a single starting polynomial (such as just P0 or just P1) is mathematically insufficient to trigger the computation of the sequence. To kickstart the iterative process and determine all higher-order polynomials unambiguously, we require exactly two boundary conditions, which are the first two base elements of the family:
Thus, both P0 and P1 are mandatory pieces of initial information.
Correct Answer
The correct option is (c) P0 and P1.