Type of convergence of Fourier series of a function

1.5k Views Asked by At

For given function, $$f(x) = \begin{cases} 1, & |x|\leq\frac{\pi}{2} \\ 0, & \pi\geq|x|>\frac{\pi}{2} \\ \end{cases}$$

The calculated Fourier series is:

$$\begin{align} a_0 &= \frac{1}{\pi}\int\limits_{-\pi/2}^{\pi/2}1 \ dx=1 \\ a_n &= \frac{1}{\pi}\int\limits_{-\pi/2}^{\pi/2}1\cdot \cos(nx) \ dx=\frac{2\sin(\frac{\pi n}{2})}{n\pi} \\ b_n &= \frac{1}{\pi}\int\limits_{-\pi/2}^{\pi/2}1\cdot \sin(nx) \ dx=0 \\ f(x) &= \frac{1}{2}+\frac{1}{\pi}\sum\limits_{n=1}^{\infty}\frac{2\cdot (-1)^n}{n}\cos(nx) \end{align}$$

And how to determine the type of convergence, to be $L^2$-convergence, pointwise convergence or uniform convergence?

4

There are 4 best solutions below

1
On

A Fourier series converges to the function it represents according to an $L^2$ mean error over a period.

$$\lim_{n \rightarrow \infty} \int_{-\pi/2}^{\pi/2} dx \left | f(x)-\sum_{k=0}^n a_k \cos{k x} \right|^2 =0$$

1
On

A related problem. You can use Abel's uniform convergence test. See here. Or you can use the following theorem:

Theorem: The Fourier series of a $2\pi$-periodic continuous and piecewise smooth function converges uniformly.

Note that, uniform convergence implies $L_{2}$ convergence.

Added: The series converges uniformly on the open sub-intervals, since the function is piecewise smooth.

2
On

Your original $f(x)$ has jump discontinuities so the Fourier series converges in $L^2$ but not pointwise. And since it doesn't converge pointwise, it doesn't converge uniformly.

Pointwise is easy to see because at $x=\pi/2$ your $f(x)$ takes value 1. But at $x=\pi/2$ the fourier series converges to 1/2, the mean of the left and right values.

To answer your question in general, first there are many type of converges. Since you only ask for three types,

  1. For $L^2$ convergence, if your original $f(x)$ is square summable, then its fourier series will converge to $f(x)$ in $L^2$.

  2. For pointwise convergence, if your $f(x)$ WITH its periodic extension is continuous on all of $\mathbb{R}$, then this is sufficient for its fourier series to converge to $f(x)$ pointwise. The periodic extension being continuous means the function on one period is continuous AND the left and the right values are equal so the periodic extension is continuous.

  3. For uniform convergence, pointwise convergence implies uniform convergence.

These are just some of the implications. Here are a lot more details than perhaps you ever wanted.

0
On

The series you've written indeed converges uniformly -- but it also isn't the Fourier series of your original function, which (like Fixed Point said) has jump discontinuities. Whenever there are jump discontinuities, you get the Gibb's phenomenon, which ruins uniform convergence.

You calculated $a_n$ correctly, but $\sin(\frac{n \pi}{2}) = 0$ when $n$ is even, so your series should instead be $$ f(x) = \frac{1}{2} + \frac{1}{\pi} \sum_{n=1}^{\infty} \frac{2}{2n-1} (-1)^{n+1} \cos\left[(2n-1)x\right]$$