Wingeer
- 76
- 0
Homework Statement
There is a recursion relation between the Legendre polynomial. To see this, show that
the polynomial x p_k is orthogonal to all the polynomials of degree less than or equal k-2.
Homework Equations
<p,q>=0 if and only if p and q are orthogonal.
The Attempt at a Solution
I used the Gram-Schmidt algorithm to find an expression for p_k. I came up with the following:
p_k = q_k - \left[ \sum_{n=0}^{k-1} proj_{p_n}(q_k) \right]
where q_k=x^k for k=0,1,2, \cdots
and proj_{p_n}(q_k)=\frac{\langle q_k,p_n \rangle}{\langle p_n,p_n \rangle} \cdot p_n.
However I am stuck. At first I thought induction with k=3 as the first case, but in the case k=m I am stuck. Is there a theorem that can guarantee that if a vector is not orthogonal to one of the vector in the basis, it is not orthogonal to none of the preceding vectors in the basis?