In the first part of the course we study Fourier series. The Fourier series is a tool to study periodic functions by writing it as an infinite sum of trignomic functions.
Definition 1.1. A function on R is called periodic provided f(x+T)=f(x) for some T>0. We usually tacitly assume T to be the smallest positive period of f.
We identify the following three things:
(a) A periodic function on R with period 2π.
(b) A function f on [0,2π] with f(0)=f(2π).
(c) A function defined on the unit circle S1:={(x,y)∈R2:x2+y2=1}.
(d) The quotient space T:=R/Z. When we say x∈T we mean x∈[0,1] with 0 and 1 taken as the same point.
From the data given by (a), i.e. a periodic function f with period 2π, we can restrict the function to [0,2π] or any interval of length 2π, like [−π,π] to get data (b). Conversely, if we have a function defined on [0,T] satisfying f(0)=f(T), then we can construct a periodic function on R by its periodization fT(x)=∑k∈Zf(x−kT) (with modificatilunon at integral multiples of T).
The unit circle can be parametrized on [0,2π] by θ↦eiθ. Let F be a function on the circle S1, then f(θ):=F(eiθ) is a periodic function of period 2π. Similarly, we can also identify F with g(x)=F(e2πix), then g(x) is a periodic function with period 1. By definition, F is continuous, differentiable, or integrable... if and only if f the corresponding parametrization f is continuous, differentiable, or integrable.
Let f be a periodic function with period T, then f(Tx) is a periodic function with period 1 and f(2πT) is period 2π, hence we can restrict our study on period 1 or period 2π case (use whichever is more convenient). Note that the integral of function on its period is not invarient under scaling: ∫01f(Tx)dx=∫0Tf(x′)d(Tx′)=T1∫0Tf(x′)dx′, i.e. shrinking period by T also shrinks integral by T.
A real trignomic polynomial is a function of the form f(t)=∑k=1n(akcos(kt)+bksin(kt))+2a0. In most theoretical calculations it will be easier to use the complex exponentials instead of sines and cosines, thanks to the identity eiθ=cosθ+isinθ. Then cost=2eit+e−it,sint=2ieit−e−it, and
Let ck=2ak−ibk, in particular c0=2a0+0, we have f(t)=∑k=−nnckeikt with c−k=ck. Note that this is because our f(t) is real at the beginning.
Example 1.1.DN:=∑n=−NNeint is a trignomic polynomial and DN=sin(21t)sin((N+21)t).
Proof. Let ω=eit,then DN=∑n=−NNωn=∑n=0Nωn+∑n=−N−1ωn. The first term = 1−ω1−ωN+1, the second term = 1−ω1ω1(1−ωN1)=1−ωω−N−1.
Then sum up we get DN=1−ωω−N−ωN+1=ω−1/2−ω1/2ω−(N+1/2)−ωN+1/2=2isin(21x)2isin((N+21)x).
This DN is called the Dirichlet kernel and we’ll come back later to study it in detail.
Question: Suppose I tell you that a function f(t), for example, sin(21t)sin((N+21)t), is a trignomic polynomial, how do you know its coefficients?
To answer this question we need the following fundamental property of complex exponentials.
Here is a geometric explanation of the above proposition.
Let V be a vector space with inner product (,), let e1,…,em be an orthonormal basis of V. Then every vector x in V can be written as a1e1+⋯+anen for scalers a1,…,an, and we can calculate ak by ak=(v,ek). In fact, we have (v,ek)=(a1e1+⋯+anen,ek)=0+ak(ek,ek)=ak.
Now let VN be trignomic polynomials of degree N, i.e, VN consists of functions of the form ∑n=−NNcneint,cn∈C. Then VN is a complex vector space. Define inner product (,) on VN by (f,g)↦2π1∫02πf(t)g(t)dt, then (eikt)k=−NN is an orthonormal basis of VN. So we have cn=(f,en)=2π1∫02πf(t)eintdt=2π1∫02πf(t)e−intdt and f=∑n=−NNcneint.
In the period 1 case the inner product is ∫01f(x)g(x)dx and (e2πinx)n=−NN is orthonormal basis.
Can we write any period function, say, with period 2π, as a sum of complex exponentials? One can soon realize that finite sum will usually not be possible because a trignomic polynomial is always smooth, on the other hand, of course not all periodic functions are smooth. So we cannot avoid infinite sums.
Definition 2.1. Let f be an integrable function on [0,T].
The n-th Fourier coefficient of f is given by cn=T1∫0Tf(t)e−(2π/T)intdt. Sometimes we also use f^(n) to denote cn.
SN(f):=∑n=−NNcne(2π/T)int is the N-th Fourier partial sum of f.
The series S(f):=∑n=−∞+∞cne(2π/T)int=limN→∞SN(f) is called the Fourier series of f.
The first question is convergence of Fourier series, when and in which sense can we write f(x)=∑n=−∞+∞cneinx?
Note. In order for the integrals to make sense we need some integrability assumption on f. Now you can understand the notion “integrable” as “Riemann integrable”. Later, we’ll introduce a more general notion of Lebesgue integrals, most of the results holds for Lebesgue integrable functions.
The convergence of Fourier series turns out to be delicate.
If the function is continuously differentiable (i.e. first derivative is continuous), then the Fourier series converges uniformly.
There exists a continuous function whose Fourier series diverge at some point.
In the general case, need to consider more general sense of convergence.
Example 2.1f(θ)=θ on [−π,π]. Then the Fourier series of f is given by
when n=0 and c0=0. So S(f)=∑n=−∞+∞in(−1)n+1einθ=2∑n=1+∞(−1)n+1nsinnθ.
We can use the following Sagemath code to visualize the Fourier partial sums, you can change N and see how it goes. This approach is to directly plot the Fourier partial sum based on our hand calculation.
x = var('x') # Define symbolic variable x
n = var('n') # Define symbolic variable n
N = 20
a(n) = 2*(-1)^(n+1)*(1/n)
Sf=sum(a(n)*sin(n*x),n,1,N) # The Fourier partial sum of f
plot(Sf,x,-pi,pi)
Example 2.2f(x)≡1 on [−1/2,1/2], find the Fourier series of f on [−T/2,T/2].
cn=T1∫−2T2T1⋅e−(2π/T)inxdx=−2πin1(e−Tnπi−e−Tnπi)=nπsin(Tnπ) for n=0 and c0=T1.
In the case T=2π, the Fourier series is ∑n=−∞+∞nπsin(n/2)einx=2π1+∑n=1nnπ2sin(n/2)cos(nx).
Actually Sagemath has a built in method to calculate the Fourier series for us, as shown in the following code:
x = var('x') # Declare variable x
f = piecewise([[(-pi,-1/2),0],[(-1/2,1/2),1],[(1/2,pi),0] ] ) # Define f as a piecewise function
FS5=f.fourier_series_partial_sum(5,pi) # For a piecewise function, there is a method called "fourier_series_partial_sum", we calculate 5 terms
print(FS5) # print the result
P1 = f.plot() # plot the graph of f
P2 = plot(FS5,x,-pi,pi,linestyle="--") # plot the graph of fourier partial sum
(P1+P2).show(title="5 terms") # print the graph
FS100=f.fourier_series_partial_sum(50,pi)
P3 = plot(FS100,x,-pi,pi).show(title="100 terms") # What happens if we calculate 100 terms?
From the picture we can see that even though we approximate f hard enough, the approximation seems to be OK for points far from the jump. But near the jump we there is still big error remaining. This is called the Gibbs phenomenon.
If ∑n=−∞+∞∣cn∣<∞, then S(f) converges uniformly.
In this case we call the Fourier series of fconverge absolutely. For a postive series, it converges when the coefficients decays sufficiently fast, and from calculus we know that O(n1) is not enough and O(n21) is enough. In fact, we can show using Fourier series of the quadratic function that ∑n=1+∞n21=6π2 (in exercise).
Proposition 3.1 (The derivative theorem) Let f be continuously differentiable on T (this means f is continuously differentiable on [0,1] with f(0)=f(1)), then f′(n)=2πinf^(n).
Proof. This is just integration by part. f′(n)=∫01f′(x)e−2πinxdx=∫01e−2πinxdf=f(x)e−2πinx∣01−∫01f(x)(−2πin)e−2πinxdx=2πin∫01f(x)e−2πinxdx=2πinf^(n).
Remark. In the period T case f(n)=T2πinf^(n).
We call a function on S1integrable if ∫02π∣f(x)∣dx<∞. We use L1(S1) to denote integrable functions on S1. For f∈L1(S1), the quantity ∫02π∣f(x)∣dx is called the L1-norm of f.
We have the following handy uniform bound by the L1-norm for the Fourier coefficients:
Lemma.∣f^(n)∣≤∫01∣f(x)∣dx. If we denote ∫01∣f(x)∣dx by ∥f∥L1 then ∣f(n)∣≤∥f∥L1.
Proof.∣f^(n)∣=∣∫01f(x)e−2πinxdx∣≤∫01∣f(x)∣dx.
Corollary. If f has continuous second derivative then f(n)=O(n21), hence the Fourier series of f converges uniformly.
Proof. Apply the derivative theorem twice we get f′′(n)=−4π2n2f^(n). By the L1 estimate we have ∣f′′^(n)∣≤∫01∣f′′(x)∣dx=∥f′′∥L1. So ∣f^(n)∣≤4π1∥f′′∥⋅n21=constant⋅n21.
Next we consider the continuous case.
Proposition 3.2. Let f be an integrable function on the circle. If f^(n)=0 for all n∈Z, then f(x) vanishes at continuous points, i.e. for every x∈[0,2π] such that f is continuous at x, f(x)=0.
Note. The Fourier coefficients vanishes means f is orthogonal to all trignomic polynomials.
Proof.
Method 1. Assume f(x0)=0 for some continuous point x0. We can moreover assome f(x0)>0, then since f is continuous at x0, it must be ≥ϵ near x0. Then the idea is to construct a sequence of trignomial polynomials pk such that pk goes to +∞ near x0 and the negative part of pk is controlled, so that ∫02πf(t)pk(t)dt→∞, which contradicts to the assumption that f is orthogonal to pk. Precisely, fix ϵ>0 and choose small δ>0 such that f(x)≥ϵ on (x0−δ,x0+δ). Let p(x)=cos(x−x0)+α for small α>0. Let pk(x)=p(x)k. We choose α so small that ∣p(x)∣<1 so pk(x)→0 when x∈/(x0−δ,x0+δ). Then 0=∫02πf(x)pk(x)dx=∫x0−δx0+δf(x)pk(x)dx+∫x∈/(x0−δ,x0+δ)f(x)pk(x)dx. The first term go to +∞ when k→∞, the second term go to 0 when k→∞, contradiction.
Note: the second limit is a consequence of the dominated convergence theorem. We want to have limk→∞∫x∈/(x0−δ,x0+δ)f(x)pk(x)dx=∫x∈/(x0−δ,x0+δ)limk→∞f(x)pk(x)dx=∫x∈/(x0−δ,x0+δ)f(x)⋅0dx=0. To change the limit and integral we need the condition that ∣f(x)pk(x)∣≤some L1 function on (x0−δ,x0+δ). Since ∣pk(x)∣≤2 and f(x)∈L1(S1), we can take 2∣f∣.
If you want a more elementary proof see the book Theorem 2.1.
The second method involves Lemma 5.1 and Theorem 5.2 in Chapter 2 of Stein-Shakarchi, that we’ll do later.
Method 2. Let FN(x)=N1sin2(x/2)sin2(Nx/2) which is a trignomic polynomial called Fejer kernel. Assume f is continuous at 0, the Fejer theorem (later) implies 2π1∫02πf(x)FN(x)dx→f(0) when N→∞. Since f is orthogonal to trignomic polynomials, this shows f(0)=0. If x0=0, let g(x)=f(x+x0), apply the result to g(x) shows g(0)=0=f(x0).
Corollary. Let f be an integrable function on the circle such that the Fourier series of f converges absolutely. If f is continuous at x0, then the Fourier series of f converges to f at x0, i.e. limN→∞SN(f)(x0)=f(x0).
Proof. Since the Fourier series of f converges absolutely which implies S(f) converges uniformly, hence S(f) is a continuous function. Note that the Fourier coefficients of S(f) is precisely f^(n), so S(f) and f has same Fourier coefficients. Then S(f) and f coincide on continuous points by Proposition 3.2.
Appendix: Plot of Direchlet kernel and Fejer kernel¶