Andromeda
Note

Fourier Coefficients

Definition

Fourier coefficients are the unique amplitudes a0,ak,bka_0, a_k, b_k that minimize the mean-square error between a function f(x)f(x) and its trigonometric polynomial approximation.

Why It Matters

Fourier coefficients are the ‘DNA’ of a signal; by extracting them, we can decompose any complex data—from a JPEG image to a seismic wave—into its constituent parts, enabling the filtering, compression, and analysis that power modern digital life.

Core Concepts

  • Euler-Fourier formulas:
    • a0=12π02πf(x)dxa_0 = \frac{1}{2\pi} \int_0^{2\pi} f(x)dx

      • How to read: “The coefficient a zero equals one divided by two pi times the integral of f from zero to two pi.”
      • Meaning: Mean (DC) value of f over one period—constant term in the Fourier series.
    • ak=1π02πf(x)cos(kx)dxa_k = \frac{1}{\pi} \int_0^{2\pi} f(x)\cos(kx)dx

      • How to read: “The coefficient a k equals one divided by pi times the integral of the function f times the cosine of the quantity k x.”
      • Meaning: Amplitude of cosine harmonic k—how much f correlates with cos(kx)\cos(kx).
    • bk=1π02πf(x)sin(kx)dxb_k = \frac{1}{\pi} \int_0^{2\pi} f(x)\sin(kx)dx

      • How to read: “The coefficient b k equals one divided by pi times the integral of the function f times the sine of the quantity k x.”
      • Meaning: Amplitude of sine harmonic k—orthogonal projection onto sin(kx)\sin(kx).
  • Orthogonal Projection: The coefficients are found by projecting the function ff onto the basis {coskx,sinkx}\{\cos kx, \sin kx\}.
  • Average Value: a0a_0 is the average value (DC component) of the function over one period.
  • Independent Determination: Because of orthogonality, aka_k and bkb_k can be calculated independently of all other coefficients.

Connected Concepts