- #1
Wingeer
- 76
- 0
Homework Statement
There is a recursion relation between the Legendre polynomial. To see this, show that
the polynomial [tex]x p_k[/tex] 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 [tex]p_k[/tex]. I came up with the following:
[tex]p_k = q_k - \left[ \sum_{n=0}^{k-1} proj_{p_n}(q_k) \right] [/tex]
where [tex]q_k=x^k[/tex] for [tex]k=0,1,2, \cdots[/tex]
and [tex]proj_{p_n}(q_k)=\frac{\langle q_k,p_n \rangle}{\langle p_n,p_n \rangle} \cdot p_n[/tex].
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?