Maths Formulae Transforms Parseval's Theorem

Parseval's Theorem – Energy Conservation in Fourier Series

Explore Parseval's Theorem which equates energy in time domain and frequency domain using Fourier coefficients.
🔑

Definition of Parseval's Theorem

Parseval’s Theorem provides a fundamental relationship between the total energy of a signal (or function) in the time or spatial domain and the energy contained in its frequency components, as determined by its Fourier series coefficients. In essence, it states that the energy is conserved when transforming a signal from the time domain to the frequency domain; no energy is lost or gained in the process.

SymbolDescription
\[ f(x) \]The periodic function or signal being analyzed.
\[ L \]The half-period of the function, where the full period is 2L.
\[ a_0 \]The DC component or average value of the function over one period.
\[ a_n \]The Fourier cosine coefficients, representing the amplitude of the nth cosine harmonic.
\[ b_n \]The Fourier sine coefficients, representing the amplitude of the nth sine harmonic.
\[ c_n \]The complex Fourier series coefficients.
\[ n \]The harmonic index, an integer (1, 2, 3, ...) representing multiples of the fundamental frequency.
📊

Key Formulas

\[ \frac{1}{2L} \int_{-L}^{L} |f(x)|^2 dx = \frac{a_0^2}{4} + \frac{1}{2} \sum_{n=1}^{\infty} (a_n^2 + b_n^2) = \sum_{n=-\infty}^{\infty} |c_n|^2 \]
Parseval's Theorem

The left side of the equation represents the average power of the signal f(x) over one period. The right side represents the sum of the average powers of all its harmonic components (including the DC component).

💡 Memory Trick: Think of it as the 'Pythagorean Theorem for signals'. The total energy (the squared hypotenuse) is the sum of the energies of its orthogonal frequency components (the squared legs).
🎨

Conceptual Diagram

Time Domain ∫|f(t)|² dt = Frequency Domain (1/2π)∫|F(ω)|² dω Total signal energy is identical in both domains Parseval's Theorem
Parseval's Theorem: total energy ∫|f(t)|²dt in the time domain equals (1/2π)∫|F(ω)|²dω in the frequency domain

A conceptual diagram would show two related plots. The first plot (Time Domain) shows a periodic function f(x) over its period from -L to L. The area under the curve of |f(x)|² is highlighted, representing the total signal energy. The second plot (Frequency Domain) shows a bar chart where each bar represents the squared magnitude of a Fourier coefficient (|cₙ|² or aₙ² + bₙ²) at a specific harmonic frequency n. Parseval's theorem states that the total highlighted area in the first plot is equal to the sum of the heights of all the bars in the second plot.

⚖️

Properties

Energy Conservation

The theorem is a statement of energy conservation. It guarantees that the total energy calculated in the time domain is identical to the total energy calculated by summing the contributions of all frequency components.

Orthogonality Foundation

The result is a direct consequence of the orthogonality of the sinusoidal (or complex exponential) basis functions over the interval [-L, L]. The cross-product terms in the energy calculation integrate to zero, leaving only the sum of the energies of individual components.

Linearity

While the theorem itself involves squares, it applies to transforms that are linear. It describes a property of the vector space of functions, where the Fourier series acts as a change of basis to an orthonormal basis, preserving the inner product (and thus the norm, or energy).

Completeness

The equality in Parseval's theorem holds because the set of sinusoidal basis functions is complete for the space of square-integrable functions. This means any such function can be fully represented by its Fourier series, with no energy 'left over'.

🔍

Proof of Parseval's Theorem

We start with the average energy of the signal f(x) over one period, which is the left-hand side of the theorem. We use the complex exponential form of the Fourier series for f(x).

\[ \text{Average Power} = \frac{1}{2L} \int_{-L}^{L} |f(x)|^2 dx = \frac{1}{2L} \int_{-L}^{L} f(x) \cdot \overline{f(x)} dx \]

Substitute the complex Fourier series representation for f(x) and its complex conjugate \( \overline{f(x)} \):

\[ f(x) = \sum_{n=-\infty}^{\infty} c_n e^{i \frac{n\pi x}{L}} \quad \text{and} \quad \overline{f(x)} = \sum_{m=-\infty}^{\infty} \overline{c_m} e^{-i \frac{m\pi x}{L}} \]

Plugging these into the integral gives:

\[ \frac{1}{2L} \int_{-L}^{L} \left( \sum_{n=-\infty}^{\infty} c_n e^{i \frac{n\pi x}{L}} \right) \left( \sum_{m=-\infty}^{\infty} \overline{c_m} e^{-i \frac{m\pi x}{L}} \right) dx \]

We can swap the order of integration and summation:

\[ \frac{1}{2L} \sum_{n=-\infty}^{\infty} \sum_{m=-\infty}^{\infty} c_n \overline{c_m} \int_{-L}^{L} e^{i \frac{(n-m)\pi x}{L}} dx \]

Due to the orthogonality of complex exponentials, the integral evaluates to 2L when n = m, and 0 when n ≠ m.

\[ \int_{-L}^{L} e^{i \frac{(n-m)\pi x}{L}} dx = \begin{cases} 2L & \text{if } n=m \\ 0 & \text{if } n \neq m \end{cases} \]

This simplifies the double summation, as only the terms where n = m survive:

\[ \frac{1}{2L} \sum_{n=-\infty}^{\infty} c_n \overline{c_n} (2L) = \sum_{n=-\infty}^{\infty} c_n \overline{c_n} = \sum_{n=-\infty}^{\infty} |c_n|^2 \]

This completes the proof, showing the equality between the average power in the time domain and the sum of powers in the frequency domain.

🧮

Worked Example

Verify Parseval's theorem for the function `f(x) = x` on the interval `[-π, π]`. For this function, the Fourier coefficients are `a_n = 0` for all `n`, and `b_n = (-1)^{n+1} \frac{2}{n}`.
  1. Calculate the energy on the time-domain side (LHS). Here, L = π.
  2. LHS = `\frac{1}{2\pi} \int_{-\pi}^{\pi} |x|^2 dx = \frac{1}{2\pi} \left[ \frac{x^3}{3} \right]_{-\pi}^{\pi} = \frac{1}{2\pi} \left( \frac{\pi^3}{3} - \frac{(-\pi)^3}{3} \right) = \frac{1}{2\pi} \left( \frac{2\pi^3}{3} \right) = \frac{\pi^2}{3}`.
  3. Calculate the energy on the frequency-domain side (RHS).
  4. RHS = `\frac{a_0^2}{4} + \frac{1}{2} \sum_{n=1}^{\infty} (a_n^2 + b_n^2) = 0 + \frac{1}{2} \sum_{n=1}^{\infty} \left( (0)^2 + \left( (-1)^{n+1} \frac{2}{n} \right)^2 \right)`.
  5. Simplify the sum: `\frac{1}{2} \sum_{n=1}^{\infty} \frac{4}{n^2} = 2 \sum_{n=1}^{\infty} \frac{1}{n^2}`.
  6. Use the known result of the Basel problem: `\sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}`.
  7. Substitute this value back: `RHS = 2 \left( \frac{\pi^2}{6} \right) = \frac{\pi^2}{3}`.
  8. Compare the results from both sides.
The left-hand side (`\pi^2/3`) is equal to the right-hand side (`\pi^2/3`), thus verifying Parseval's theorem for the function `f(x) = x`.
🚀

Applications

📡 Signal Processing & Communications

Parseval's theorem is used to analyze the power distribution in signals. It verifies that transformations like the Fast Fourier Transform (FFT) conserve energy, which is crucial for applications like filtering and modulation where signal power must be managed precisely to maintain signal-to-noise ratio and prevent distortion.

🔊 Audio Engineering

In digital audio, the theorem helps in analyzing the energy of different frequency bands. Equalizers and compressors work by modifying the energy of these bands. Parseval's theorem ensures that the overall loudness (related to signal power) is accounted for correctly during these processing stages.

🖼️ Image Processing

For image compression algorithms like JPEG, an image is converted to the frequency domain. The theorem allows the algorithm to quantify the energy in different spatial frequencies. Low-energy frequencies can be discarded with minimal impact on visual quality, achieving high compression ratios while preserving the image's overall energy distribution.

⚡ Power Systems Engineering

Engineers analyze the harmonic content of voltage and current waveforms in power grids. Parseval's theorem allows them to calculate the total power delivered, including power from unwanted harmonics. This is vital for designing filters to reduce harmonic distortion and improve power quality.

🌍

Real-World Examples

An audio signal is analyzed and its power is found to be distributed among three main frequencies. The fundamental frequency has a power of 5 mW, the second harmonic has 2 mW, and the third harmonic has 0.5 mW. What is the total average power of the signal in the time domain?
  1. Recall that Parseval's theorem states the total average power is the sum of the powers of the individual frequency components.
  2. Identify the power of each component: `P_1 = 5` mW, `P_2 = 2` mW, `P_3 = 0.5` mW.
  3. Sum the powers: `P_{total} = P_1 + P_2 + P_3`.
  4. Calculate the final value: `P_{total} = 5 + 2 + 0.5 = 7.5` mW.
The total average power of the signal, as would be measured in the time domain, is 7.5 mW.
A power quality analyzer measures the RMS current of a distorted AC signal. The fundamental 60 Hz component has an RMS value of 10 A. An unwanted 3rd harmonic (180 Hz) has an RMS value of 3 A, and a 5th harmonic (300 Hz) has an RMS value of 1.5 A. Calculate the total RMS current of the signal.
  1. Recognize that total power is proportional to the square of the RMS value, and by Parseval's theorem, the total power is the sum of the power of the components.
  2. This means the total mean-square current is the sum of the individual mean-square currents: `I_{total,rms}^2 = I_{1,rms}^2 + I_{3,rms}^2 + I_{5,rms}^2`.
  3. Substitute the given values: `I_{total,rms}^2 = (10)^2 + (3)^2 + (1.5)^2`.
  4. Calculate the squares: `I_{total,rms}^2 = 100 + 9 + 2.25 = 111.25` A².
  5. Take the square root to find the total RMS current: `I_{total,rms} = \sqrt{111.25} \approx 10.55` A.
The total RMS current of the distorted signal is approximately 10.55 A.
🏙️

Real-World Scenarios

VU Energy = ∫|f(t)|²dt
Audio Level Metering
VU meters display signal energy by computing ∫|f(t)|²dt. Parseval's Theorem guarantees identical energy readings whether measured in the time or frequency domain — validating broadcast loudness standards.
Pₜ = Pᵣ (Parseval) time ↔ freq energy
Satellite Link Budget
Satellite engineers use Parseval's Theorem to verify transmitted signal power measured in the time domain matches spectral power density integrated over bandwidth — essential for link margin calculations.
LPF E_in E_out verify via Parseval
Filter Design Verification
When designing digital filters, engineers verify energy is preserved or attenuated as intended. Parseval's Theorem lets you cross-check filter performance in either the time or frequency domain.

Vibration Analysis in Aerospace

During a rocket launch, sensors measure intense vibrations on the fuselage. Engineers analyze this time-domain data using Fourier transforms to see which frequencies are most energetic. Parseval's theorem confirms that their frequency-domain analysis correctly accounts for all the vibrational energy, ensuring that no potentially destructive resonant frequencies are missed in the design and testing phase.

Quantum Mechanics

In quantum mechanics, a particle's state is described by a wave function, `Ψ(x)`. The probability of finding the particle somewhere in space is 1, which means the integral of `|Ψ(x)|²` over all space is 1. The wave function can also be expressed in momentum space, `Φ(p)`. Parseval's theorem (in its continuous form) guarantees that the integral of `|Φ(p)|²` is also 1, conserving total probability between the position and momentum representations.

Telecommunications Quality Control

A network engineer uses a spectrum analyzer to inspect a Wi-Fi signal. The analyzer displays the signal's power across different frequency channels. By summing the power in all channels, the engineer gets the total power. Parseval's theorem guarantees this value is the same as the total power that would be measured by a broadband power meter on the raw, time-domain signal, providing a reliable way to check for signal integrity and compliance with regulations.

📚

Forms of the Theorem

Parseval's theorem is a specific case (for Fourier series) of a more general result that applies to various Fourier transforms. The core idea of energy conservation is preserved, but the formulation changes depending on the domain (continuous/discrete) and periodicity of the signal.

Transform TypeTheorem Formulation
Fourier Series (Periodic, Continuous Time)\[ \frac{1}{T_0} \int_{T_0} |x(t)|^2 dt = \sum_{k=-\infty}^{\infty} |c_k|^2 \]
Fourier Transform (Aperiodic, Continuous Time)\[ \int_{-\infty}^{\infty} |x(t)|^2 dt = \int_{-\infty}^{\infty} |X(f)|^2 df \]
Discrete-Time Fourier Transform (Aperiodic, Discrete Time)\[ \sum_{n=-\infty}^{\infty} |x[n]|^2 = \frac{1}{2\pi} \int_{-\pi}^{\pi} |X(e^{j\omega})|^2 d\omega \]
Discrete Fourier Transform (Periodic, Discrete Time)\[ \sum_{n=0}^{N-1} |x[n]|^2 = \frac{1}{N} \sum_{k=0}^{N-1} |X[k]|^2 \]
⚠️

Common Mistakes

⚠️ Forgetting Normalization Factors: A frequent error is omitting the normalization constants like `1/(2L)` for Fourier series or `1/N` for the DFT. These factors are crucial for the equality to hold. The time-domain side often represents average power over a period, which requires dividing the total energy integral by the period length.
⚠️ Confusing Energy with Amplitude: Students sometimes mistakenly sum the squared amplitudes (`a_n²` or `b_n²`) without the factor of `1/2`. The energy of a sinusoidal component `A cos(ωt)` is proportional to `A²/2`, not `A²`. Forgetting this factor will lead to an incorrect energy calculation in the frequency domain for the real-valued Fourier series.
⚠️ Incorrect Integral: The integral is `∫|f(x)|² dx`, not `(∫f(x) dx)²`. The theorem deals with the energy of the signal, which is related to the integral of its squared magnitude (its power), not the square of its average value.
🚀

Study Strategy

1 💡 Grasp the Energy Conservation Principle
  • Relate the theorem to energy conservation by studying the 'Definition' and 'Conceptual Diagram' sections.
  • Articulate how the total energy of a signal in the time domain equals its total energy in the frequency domain.
  • Review the 'Properties' section to understand how signal manipulations affect the energy calculation.
  • Read the 'Proof of Parseval's Theorem' to build a foundational understanding of why the relationship holds true.
2 🧠 Commit the Formulas to Memory
  • Write out the 'Key Formulas' for both continuous and discrete transforms multiple times from memory.
  • Pay close attention to the normalization constants (e.g., 1/2π or 1/N) shown in the 'Forms of the Theorem' section.
  • Create flashcards comparing Parseval's Theorem with 'Related Formulas' like Plancherel's theorem.
  • Practice identifying which form of the formula to use based on whether the signal is continuous, periodic, or discrete.
3 ✍️ Practice with Guided Problems
  • Follow the 'Worked Example' step-by-step, calculating both the time-domain and frequency-domain integrals/sums yourself.
  • Verify that your results from both domains match, confirming the theorem's equality.
  • Redo the example problem without looking at the solution to test your problem-solving process.
  • Review the 'Common Mistakes' section and consciously avoid them, such as forgetting the magnitude squared on the transform.
4 🌐 Connect Theory to Application
  • Select one of the 'Applications', like signal processing, and explain how the theorem is used to analyze power.
  • Read a 'Real-World Scenario' and describe how you would set up the energy calculation for it.
  • Explain the physical meaning of the result for a 'Real-World Example', such as analyzing an audio signal's power spectrum.
  • Formulate your own simple problem based on a scenario (e.g., filter design) and solve it using the theorem.
By systematically understanding, memorizing, practicing, and applying, you will master Parseval's Theorem and its power to analyze signals across domains.

Frequently Asked Questions

×

×