Lecture 9
More examples¶
The Exponential decay¶
The Fourier transform of is given by . Note that this is a complex valued function. The Fourier transform of the rect function and Λ are real valued because they are even functions.
The Gaussian¶
The Gaussian function is .
It follows that the normalized Gaussian has area 1. The normalized Gaussian satisfies the differential equation with initial value . Note that this determines the function completely as a consequence of uniqueness theorem of ODE.
The Fourier transform of the Gaussian is itself. To see this, let denote the Gaussian. Then . The change of integration and differentiatiation is justified in the appendix. Then using integration by parts it is equal to .
It follows that satsifies the same differential equation as the Gaussian. Moreover, since , the initial value is also the same. Then one must has . To give an elementary proof of this result, we can consider the function and show that its derivative is zero and conclude that it is equal to its value at 0, which is 1.
Basic properties of Fourier transform¶
Shifting theorem and scaling theorem¶
(1) Shifting theorem
.
Proof. LHS = = RHS.
(2) .
Proof. LHS = .
(3) Scaling theorem
.
Proof. LHS = . Note that this requires , otherwise we’ll get negative sign, so overall we get .
(4) Derivative theorem¶
In other words, the Fourier transform of “taking derivatives ” is “multiplying by ”, the inverse Fourier transform of "taking derivatives " is “multiplying by -2\pi i x”.
Proof. LHS = .
Remark. We need some assumption to ensure the identity make sense.
(5) Convolution theorem¶
The Fourier transform of convolution is product:
Proof. LHS = .
The Schwartz class¶
We didn’t state precisely the assumptions needed for above properties to hold. For example, in order for the derivative theorem to apply the function need to be differentiable, and for the second part of derivative theorem to work we need to assume is integrable,... etc. We seek for a class of functions such that
- It is closed under Fourier transform and invesrse Fourier transform, with inversion theorem work.
- All the properties makes sense without adding further assumptions. In particular, it should be closed under differentiation, multiplying by polynomials, and convolution.
In particular, any derivative is continuous and moderate decreasing. We call a function moderate decreasing if for some constant .
Appendix: some pictures¶
Plot the sinc function¶
x = var('x')
sinc(x) = sin(pi * x)/(pi * x)
plot(sinc,x,-10,10)
Appendix: Integration on ¶
We use the word “function” to mean reasonable functions to work on in integration theory. They are assumed to be at least measurable.
The Dominated convergence theorem¶
Let be a sequence of functions on such that exists almost everywhere (in our course we almost exclusively consider the case when the limit is everywhere). Suppose for some , then
The Fubini theorem¶
The Fubini theorem consisits of two parts:
Unsigned case¶
For positive functions all are the same. Let on . Then . The equation holds in the sense that if one is ∞, then all the others are ∞.
Signed case¶
If , then .
Differentiation under integral sign¶
The idea to take derivatives under integral sign is to reformulate the derivative of integral as a limit then try to apply the dominated convergence theorem. Suppose you have a family of functions . Then . By dominate convergence theorem, a sufficient condition to take the limit inside integral is to show that there exists a function , independent of , such that . This estimate is usually a consequence of the mean value theorem or Lipschitz condition.
Appendix: Use ChatGPT to visualize Fourier transforms¶
Simply let it do for you.
Me: Write a sagemath program to plot the Fourier transform of exponential decay e^(-a * x) for various a
ChatGPT: Here is a SageMath program that plots the Fourier transform of the exponential decay e^(-a * x) for various values of a:
python
import matplotlib.pyplot as plt
import numpy as np
from scipy.fft import fft
# Define the exponential decay function
def exponential_decay(x, a):
return np.exp(-a * x)
# Define the range of x values
x = np.linspace(-10, 10, 1000)
# Set the values of a to use
a_values = [0.5, 1, 2, 3]
# Plot the Fourier transforms for each value of a
for a in a_values:
y = exponential_decay(x, a)
y_fft = np.abs(fft(y))
plt.plot(x, y_fft, label=f"a = {a}")
plt.legend()
plt.xlabel("Frequency")
plt.ylabel("Amplitude")
plt.title("Fourier Transform of Exponential Decay")
plt.show()
This code uses the fft function from scipy.fft to compute the Fourier transform of the exponential decay function e^(-a * x) for each value of a in the list a_values. The results are plotted using matplotlib.pyplot, and the legend displays the value of a used for each plot.
Notice that the exponential decay defined by GPT is not correct. So I pointed out the error and also asked it to plot the exponential decays as well.
Me: Your exponential decay is not correct. It should be a piecewise function, which is equal to zero when x is negative and equal to exp(-a*x) when x is positive. plot your exponential decays as well
ChatGPT: Here’s an updated version of the code with the exponential decay functions plotted as well:
python
import matplotlib.pyplot as plt
import numpy as np
from scipy.fft import fft
# Define the exponential decay function
def exponential_decay(x, a):
return np.exp(-a * x) * (x >= 0)
# Define the range of x values
x = np.linspace(-10, 10, 1000)
# Set the values of a to use
a_values = [0.5, 1, 2, 3]
fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(8, 10))
# Plot the exponential decays for each value of a
for a in a_values:
y = exponential_decay(x, a)
ax1.plot(x, y, label=f"a = {a}")
ax1.legend()
ax1.set_xlabel("x")
ax1.set_ylabel("Exponential Decay")
ax1.set_title("Exponential Decay Functions")
# Plot the Fourier transforms for each value of a
for a in a_values:
y = exponential_decay(x, a)
y_fft = np.abs(fft(y))
ax2.plot(x, y_fft, label=f"a = {a}")
ax2.legend()
ax2.set_xlabel("Frequency")
ax2.set_ylabel("Amplitude")
ax2.set_title("Fourier Transform of Exponential Decay")
plt.tight_layout()
plt.show()
It seems that ChatGPT only knows fast Fourier transform so the picture does not look very nice compared with calculating the Fourier transform by hand and ask it to plot the Fourier transform. Then I asked it to plot the that I calculated by hand.
Me: use sagemath to plot the graph of 1/(a^2+4pi^2*a^2) for a=0.5, 1, 2, 3
ChatGPT: Here is an example code to plot the graph of the function 1/(a^2 + 4 * pi^2 * x^2) in Sagemath for different values of a:
var("a x")
f(x) = 1 / (a^2 + 4 * pi^2 * x^2)
p = plot(f(x), (x, -10, 10), color='blue')
for i in [0.5, 1, 2, 3]:
p += plot(f(x).subs(a=i), (x, -10, 10), color='red', linestyle='dotted')
p.show()
This code defines the function f(x) = 1 / (a^2 + 4 * pi^2 * x^2), and then plots it for x ranging from -10 to 10. The different values of a are plotted as dotted red lines on top of the original blue line. The resulting plot should show the behavior of the function for different values of a.
Unfortunately, the code still has bug. But it’s easy to fix as follows:
x =var("x")
p=plot(0)
for a in [0.5, 1, 2, 3]:
f(x) = 1 / (a^2 + 4 * pi^2 * x^2)
p+=plot(f(x), (x, -2, 2), color='red')
p.show()
Overall, the AI is pretty good. You can try to let chatGPT plot the powers for large and also the Gaussian function , what do you find and can you explain why?