Why are power series centered around 0

810 Views Asked by At

I was wondering if there was any particular reason that power series are centred around 0.

$$\displaystyle f(x)=\sum_{k=0}^{\infty}c_{k}x^{k}\qquad \text{ vs }\qquad\displaystyle f(x)=\sum_{k=0}^{\infty}c_{k}(x-a)^{k}$$

when using them to solve differential equations. I've tried looking online for a reason but so far have had no luck.

This seems like a rather arbitrary choice that only conveniently simplifies our computation - eg. what if the function is not well-defined at 0 or deviates significantly away from 0?

Apologies if this seems like a trivial question - I have not done a differential equations course yet that involves power series. Solutions involving only first-year university maths would be much appreciated.

3

There are 3 best solutions below

0
On BEST ANSWER

Imagine you have the following differential equation: $$\frac{d^2y}{dx^2}+\frac{dy}{dx}+x+c=0 \tag{*}$$ Subjected to some boundary conditions.

You can say that your solution $y$ may be expanded as a polynomial series: $$y=\sum_k^N c_k(x-x_0)^k$$ With $c_k$ and $x_0$ constants.

since the solution of the problem $(*)$ is unique, the polynomial $(**)$ is also unique, and you can solve for $c_k$ or for other coefficients: $$y=\sum_k^N c_k(x-x_0)^k=\sum_k^N \hat{c}_kx^k$$ where there is a correspondence between coefficients: $$c_N=\hat{c}_N, \quad c_{N-1}=c_{N-1}-c_Nx_0,...$$

1
On

Some choices in mathematics are selected because they reflect an intrinsic characteristic, whilst others are chosen because they are very convenient. As you state, although real life applications may require a power series expansion around a point not equal to zero, you should not discount how much it can simplify/speed computation to focus on expansions around zero. Also do not discount the general rule that the more compact an expression is, the more likely it can be written, read, understood and digested more readily, and patterns discerned more easily.

Furthermore, what happens very often in maths, is that if one finds that the point of interest is at $x=a$, then for purposes of clarity (to the writer and readers!) it is often useful to define a new variable, say $u$, where $u=x-a$, then do all the complex calculations, and then at the end transform back via $x=u+a$.

From a science perspective, there is often freedom to set the measurement's zero point (eg., displacement of object from equilibrium). In most cases, it is set to coincide with region of most interest. Thus, it follows that a power series expansion around zero is a natural consequence of choosing where how you recorded your measurements.

Hope that helps!

0
On

Power series do not have to be centred at $0$. $\ln(x)$ is not defined at $x=0$, but it has a nice power series expansion around $x=1$:

$\ln(x) = \sum_{n=1}^{\infty}(-1)^{n-1}\frac{(x-1)^n}{n}$

If we differentiate this formally term by term we get:

$\frac{d(\ln(x))}{dx} = \sum_{n=1}^{\infty}(-1)^{n-1}(x-1)^{n-1} = \sum_{n=0}^{\infty}(1-x)^{n} = \frac{1}{1-(1-x)}=\frac{1}{x}$