6

Express the following functions as Legendre series (as a sum of Legendre polynomials)

a) $-2x^2 + 7$
b) $3x^4+6x^2-2$
c) $\cos^5 \theta$ - the L.P. will be in functions of $\cos \theta$.

If anyone could help me understand the setup process for Legendres, that would be highly appreciated. I have no exposure to Legendre series, and I am using Griffith's Intro. to Electrodynamics which doesn't provide the explanation of Legendre series in any detail.

You may determine the coefficients in the series algebraically or using the orthogonality properties of the Legendre polynomials.

Edit: It seems that the solutions for Legendre polynomial are set, such as the values of $P_0$, $P_1$, $P_2$, etc... But how do I incorporate the given function? Do I make them into a polynomial, then attempt to set that in series that is equal to the Legendre series? For (c), I am assuming to express that in complex terms.. The hint suggests to use orthogonality properties, in which the normalization would be 1?

vonbrand
  • 27,812

1 Answers1

12

Lets do the first one two different ways and then you can try the rest.

The Legendre Polynomials are given by:

$P_0(x) = 1$

$P_1(x) = x$

$P_2(x) = \frac{1}{2}(3x^2 - 1)$

$P_3(x) = \frac{1}{2}(5x^3-3x)$

$\ldots$

We are given $f(x) = -2x^2 + 7$

Method 1: (so we can check our answer)

How can we add those $P_i(x)$ to get $f(x)$?

Well, if you add $-\frac{4}{3} P_2(x) + \frac{19}{3}P_0 = f(x)$

Method 2: (the method you are asked to use)

To use the Legendre Series, we put:

$$\tag 1 f(x) = \sum_{i=0}^\infty c_iP_i(x)$$

To solve this, we solve a series of integrals given by:

$$\int_{-1}^1 f(x)P_i(x)~dx = \sum_{i=0}^\infty c_i \int_{-1}^1 (P_i(x))^2 ~dx$$

Because the Legendre polynomials are orthogonal, all the integrals on the right are zero except the one we care about, namely $c_i$. So, lets crank those $c_i$ using this approach.

$i = 0$

$$\int_{-1}^1 f(x)P_0(x)~dx = \sum_{i=0}^\infty c_0 \int_{-1}^1 (P_0(x))^2 ~dx$$

$$\int_{-1}^1 (-2x^2 + 7)(1)~dx = \sum_{i=0}^\infty c_0 \int_{-1}^1 (P_0(x))^2 ~dx = c_0 \int_{-1}^1 (1)^2~dx$$

This yields $\frac{38}{3} = c_0 \cdot 2 \rightarrow c_0 = \frac{19}{3}$

$i = 1$

$$\int_{-1}^1 f(x)P_1(x)~dx = \sum_{i=0}^\infty c_1 \int_{-1}^1 (P_1(x))^2 ~dx$$

$$\int_{-1}^1 (-2x^2 + 7)(x)~dx = \sum_{i=0}^\infty c_1 \int_{-1}^1 (P_1(x))^2 ~dx = c_1 \int_{-1}^1 (x)^2~dx$$

This yields $0 = c_1 \cdot 0 \rightarrow c_1 = 0$

$i = 2$

$$\int_{-1}^1 f(x)P_2(x)~dx = \sum_{i=0}^\infty c_2 \int_{-1}^1 (P_2(x))^2 ~dx$$

$$\int_{-1}^1 (-2x^2 + 7)(\frac{1}{2}(3x^2-1))~dx = \sum_{i=0}^\infty c_2 \int_{-1}^1 (P_2(x))^2 ~dx = c_2 \int_{-1}^1 (\frac{1}{2}(3x^2-1))^2~dx$$

This yields $-\frac{8}{15} = c_2 \cdot \frac{2}{5} \rightarrow c_2 = -\frac{4}{3}$

$\therefore ~ f(x) = -2x^2 + 7 = c_0P_0(x) + c_1P_1(x) + c_2P_2(x) = \frac{19}{3}P_0(x) -\frac{4}{3}P_2(x)$

Amzoti
  • 56,093
  • thank you for your response. so this explains using algebraic properties, which is SUPERB, because I didn't understand the purpose of the idea. For the orthogonality method, I'm not exactly sure what we are putting in for values of $P_i$. Since we are solving for the coefficient, $a_n$, I'm assuming $P_i$ have some values to put in based on the nature of the problem? – julesverne Mar 14 '13 at 03:45
  • Oh I see, you have to do the SUM OF, which means input the values we know of $P_i$ from Legendre, and input that value into the integral. Since it is summed over infinity, how do we know when to stop, as we don't have "infinite" values of $P_i$? – julesverne Mar 14 '13 at 03:48
  • @MhenniBenghorbal: thank you - it is really hard with Chrome locking up as I am writing responses - caused me to make about a dozen errors! Appreciate the feedback! Regards – Amzoti Mar 14 '13 at 04:23
  • @Amzoti: Maybe you are interested in this problem. – Mhenni Benghorbal Mar 14 '13 at 04:32
  • @MhenniBenghorbal: Looks interesting - I will see if I can remember enough (it has been a long time since I've look at this sort of thing - but this is a good refresher) regarding this topic to solve it! :) Thanks! – Amzoti Mar 14 '13 at 04:34
  • @julesverne: For your problems you can guess and get exact results, but recall that this is like a Taylor expansion and hence, in general, you will have an approximation by taking a handful of terms and hence some error. Did you get the expansion. Repeat the same process for your second example. Regards – Amzoti Mar 14 '13 at 04:50
  • @amzoti your explanation was superb. thank you so much for relieving the hours of frustration on attempting to understand what Legendre Polynomials were!! Also, I am relatively new to these forums. I have already voted up the solution, but is there a "rep up" or some sort? – julesverne Mar 14 '13 at 04:52
  • @julesverne: you are very welcome - and I am trying to do the other Fourier / Legendre problem. Regards – Amzoti Mar 14 '13 at 04:53
  • Great work, Amzoti! $(+1)$ – amWhy Apr 20 '13 at 00:35