The Fourier Transform (FT) is a mathematical technique that transforms a time-domain signal into its frequency-domain representation. It decomposes a signal into its constituent frequencies, revealing how much of each frequency is present in the original signal.
Let's explore the Fourier Transform of several common types of signals:
### 1. **Fourier Transform of a Continuous-Time Sine or Cosine Wave**
Consider a sine wave:
\[
x(t) = A \sin(2 \pi f_0 t + \phi)
\]
#### Fourier Transform:
\[
X(f) = \frac{A}{2j} \left[ \delta(f - f_0) - \delta(f + f_0) \right]
\]
- **Interpretation**: The Fourier Transform of a sine wave consists of two delta functions at \( f_0 \) and \( -f_0 \). This indicates that a sine wave is composed of a single frequency \( f_0 \) and its negative counterpart.
Similarly, for a cosine wave:
\[
x(t) = A \cos(2 \pi f_0 t + \phi)
\]
#### Fourier Transform:
\[
X(f) = \frac{A}{2} \left[ \delta(f - f_0) + \delta(f + f_0) \right]
\]
- **Interpretation**: A cosine wave's Fourier Transform consists of two delta functions at \( f_0 \) and \( -f_0 \), indicating a single frequency component at \( f_0 \) and its negative counterpart, both with equal magnitude.
### 2. **Fourier Transform of a Continuous-Time Exponential Signal**
Consider an exponential signal:
\[
x(t) = e^{at}, \quad \text{where } a \in \mathbb{C}
\]
#### Fourier Transform:
\[
X(f) = \frac{1}{a + j2\pi f}, \quad \text{if } \text{Re}(a) > 0
\]
- **Interpretation**: The Fourier Transform is a complex function whose shape depends on the real and imaginary parts of \( a \). For a real-valued \( a \), the Fourier Transform is a single-sided exponential in the frequency domain.
### 3. **Fourier Transform of an Impulse (Delta Function)**
Consider the Dirac delta function:
\[
x(t) = \delta(t)
\]
#### Fourier Transform:
\[
X(f) = 1
\]
- **Interpretation**: The delta function in the time domain corresponds to a constant function in the frequency domain, meaning it contains all frequencies with equal amplitude.
### 4. **Fourier Transform of a Rectangular Pulse**
Consider a rectangular pulse of width \( T \):
\[
x(t) =
\begin{cases}
1, & |t| \leq \frac{T}{2} \\
0, & |t| > \frac{T}{2}
\end{cases}
\]
#### Fourier Transform:
\[
X(f) = T \cdot \text{sinc}(fT) = T \cdot \frac{\sin(\pi f T)}{\pi f T}
\]
- **Interpretation**: The Fourier Transform of a rectangular pulse is a sinc function, which is characterized by a central peak and decaying side lobes. This shows that a rectangular pulse in time contains many frequency components.
### 5. **Fourier Transform of an Exponential Decay Signal**
Consider a signal with exponential decay:
\[
x(t) = e^{-at}u(t), \quad a > 0
\]
where \( u(t) \) is the unit step function.
#### Fourier Transform:
\[
X(f) = \frac{1}{a + j2\pi f}
\]
- **Interpretation**: This is a complex function with both real and imaginary parts. It represents a frequency spectrum that is concentrated around the origin and decays with increasing frequency.
### 6. **Fourier Transform of a Gaussian Function**
Consider a Gaussian function:
\[
x(t) = e^{-at^2}, \quad a > 0
\]
#### Fourier Transform:
\[
X(f) = \sqrt{\frac{\pi}{a}} e^{-\frac{\pi^2 f^2}{a}}
\]
- **Interpretation**: The Fourier Transform of a Gaussian is also a Gaussian. This property makes Gaussian functions very important in signal processing since they retain their shape in both domains.
### 7. **Fourier Transform of a Step Function**
Consider the unit step function:
\[
x(t) = u(t) =
\begin{cases}
1, & t \geq 0 \\
0, & t < 0
\end{cases}
\]
#### Fourier Transform:
\[
X(f) = \frac{1}{j2\pi f} + \pi \delta(f)
\]
- **Interpretation**: The Fourier Transform consists of a delta function at zero frequency and a term that decreases with frequency. This implies that a step function contains a DC component (constant offset) and a broad range of frequencies.
### 8. **Fourier Transform of a Periodic Signal**
For a periodic signal \( x(t) \) with period \( T \), the Fourier Transform is expressed in terms of its Fourier Series coefficients:
#### Fourier Transform:
\[
X(f) = \sum_{n=-\infty}^{\infty} C_n \delta(f - nf_0), \quad f_0 = \frac{1}{T}
\]
where \( C_n \) are the Fourier Series coefficients.
- **Interpretation**: The Fourier Transform of a periodic signal consists of discrete delta functions at integer multiples of the fundamental frequency \( f_0 \). This shows that a periodic signal contains only specific frequencies related to its period.
### Conclusion
The Fourier Transform provides a powerful tool for understanding signals by representing them in the frequency domain. Each type of signal has a distinct Fourier Transform that reveals its frequency components, and understanding these transforms helps in analyzing, processing, and designing systems in fields such as communications, control, and signal processing.