MATH201/content/Power series (lec 22).md

73 lines
4.2 KiB
Markdown
Raw Normal View History

2023-10-30 14:16:17 -06:00
#start of lec 22
Finished chapter 7 of the course textbook, Let's begin chapter 8!
# Power series
A power series is defined by:
$$\sum_{n=0}^\infty a_{n}(X-X_{0})^n=a_{0}+a_{1}(x-x_{0})+a_{2}(x-x_{0})^2+\dots$$
It is convergent if:
$$\sum_{n=0} ^ \infty a_{n}(x-x_{0})^n<\infty \text{ at a given x}$$
Otherwise, it is divergent.
If $\sum_{n=0}^\infty \mid a_{n}(x-x_{0})^n\mid$ is convergent
$\implies\sum_{n=0}^\infty a_{n}(x-x_{0})^n$ is absolutely convergent
Just because something is absolutely convergent doesn't mean it is conditionally convergent. think of the harmonic series. It is absolutely convergent but also divergent (conditionally divergent).
Theorem: With each $\sum_{n=0}^{\infty}a_{n}(x-x_{0})^n$ we can associate $0\leq \rho\leq \infty$ such that
$\sum_{n=0} ^\infty a_{n}(x-x_{0})^n$ is absolutely convergent
for all x such that $\mid x-x_{0}\mid<\rho$, divergent for all x where $\mid x-x_{0}\mid>\rho$
"Who keeps stealing the whiteboard erases? (jokingly) It's a useless object, anyways"
![[Drawing 2023-10-30 13.12.57.excalidraw.png]]
how can we find $\rho$?
Ratio test: If $\lim_{ n \to \infty }\mid \frac{a_{n+1}}{a_{n}}\mid=L$
then $\rho=\frac{1}{L}$
## Examples:
#ex
is this convergent? Divergent? and where so?
$\sum_{n=0}^\infty \frac{2^{-n}}{n+1}(x-1)^n$
determine the convergent set.
Use ratio test:
$\lim_{ n \to \infty }\mid \frac{a_{n+1}}{a_{n}}\mid=\lim_{ n \to \infty } \frac{2^{-(n+1)}}{n+2} \frac{n+1}{2^{-n}}=\frac{1}{2}\implies \rho=2$
so it's convergent on $-1<x<3$, divergent on $\mid x-1\mid>2$
But what about on the points $-1$ and $3$?
plug in $x_{0}=-1$
$\sum_{n=0}^{\infty} \frac{2^{-n}}{n+1}(-2)^n=\sum_{n=0}^\infty \frac{(-1)^n}{n+1}<\infty$ <- That is the alternating harmonic series, it is convergent.
plug in $x_{0}=3$:
$\sum_{n=0}^\infty \frac{2^{-n}}{n+1}2^n=\sum_{n=0}^\infty \frac{1}{n+1}>\infty$ <- harmonic series, this diverges.
so the power series is convergent on $[-1,3)$ divergent otherwise.
$$\text{ converges only on: } [-1,3)$$
Assume that $\sum_{n=0}^\infty a_{n}(x-x_{0})^n$ and $\sum_{n=0}^\infty b_{n}(x-x_{0})^n$ are converget with $\rho>0$
Then:
1.) $\sum_{n=0}^\infty a_{n}(x-x_{0})^n+\sum_{n=0}^{\infty}b_{n}(x-x_{0})^n=\sum_{n=0}^\infty(a_{n}+b_{n})(x-x_{0})^n$
That has a radius of convergence of at least $\rho$.
2.) $\left( \sum_{n=0}^\infty a_{n}(x-x_{0})^n \right)\left( \sum_{n=0}^\infty b_{n}(x-x_{0})^n \right) \qquad c_n=\sum_{k=0}^n a_{k}b_{n-k}$(Cauchy)
$=(a_{0}+a_{1}(x-x_{0})+a_{2}(x-x_{0})^2+\dots)(b_{0}+b_{1}(x-x_{0})+b_{2}(x-x_{0})^2+\dots)$
$=a_{0}b_{0}+(a_{0}b_{1}+a_{1}b_{0})(x-x_{0})+(a_{0}b_{2}+a_{1}b_{1}+a_{2}b_{1})(x-x_{0})^2+\dots$ (Cauchy multiplication)
more Definitions of power series:
If $\sum_{n=0}^{\infty}a_{n}(x-x_{0})^n$ is convergent with $\rho>0$
$\mid x-x_{0}\mid<\rho$
we can differentiate this infinite sum and get:
$\implies y'(x)=\sum_{n=1}^\infty a_{n}n(x-x_{0})^{n-1}$
$y''(x)=\sum_{n=2}^\infty a_{n}n(n-1)(x-x_{0})^{n-2}$
Theorem: If $y(x)$ is infinitely many times differentiable on some interval: $\mid x-x_{0}\mid<\rho$
then: $\sum_{n=0}^\infty \frac{y^{(n)}(x_{0})}{n!}(x-x_{0})^n$ (Taylor series)
"believe me, taylor series is the most important theorem in engineering."
"I mean engineering is all about approximations, do you know how your calculator computes ...? Taylor series!"
"Applied mathematics is all about approximating and then measuring how good your approximation is, it's what engineering is all about." -Prof (loosy quotes, can't keep up with how enthusiastic he is!)
Definition: If $y(x)$ can be represented with a power series on $\mid x-x_{0}\mid$ then $y(x)$ is an analytic function on $(x_{0}-\rho,x_{0}+\rho)$
btw analytic functions are very important in complex calculus MATH301. (i don't have that next term)
$f(x)=\sum_{n=0}^\infty a_{n}(x-x_{0})^n<\infty$
$f'(x)=\sum_{n=1}^\infty a_{n}n(x-x_{0})^{n-1}$
$f(x)+f'(x)=\sum_{n=0}^\infty a_{n}(x-x_{0})^n+\sum_{n=1}^\infty a_{n}n(x-x_{0})^{n-1}$
let $n-1=k$
$=\sum_{n=0}^\infty a_{n}(x-x_{0})^n+\sum_{k=0}^\infty a_{n}(k+1)(x-x_{0})^{k}$
$=\sum_{n=0}^\infty(a_{n}+a_{n}(n+1))(x-x_{0})^n$
Last theorem fo' da day:
If $\sum_{n=0}^\infty a_{n}(x-x_{0})^n=0$ for all x$\in(x_{0}-\rho,x_{0}+\rho)$ where $\rho>0$
$\implies a_{n}=0$, $n=0,1,2,\dots$
#end of lec 22