home/ atoms/ additive-synthesis

Additive synthesis builds complex timbres by summing many sine partials with individual amplitude envelopes

Additive synthesis constructs sounds from the bottom up by summing many simple waveforms — typically sine waves (partials) — each with its own frequency, amplitude, and phase, and usually its own time-varying amplitude envelope. It is the direct inverse of Fourier analysis: analysis decomposes a periodic sound into sinusoidal components, additive synthesis reassembles a sound from them. Because any periodic waveform can in principle be built this way, the method is highly general and can approximate almost any tone given enough partials — but cost scales with partial count, and a rich acoustic instrument may need 50–100+ partials each individually enveloped. A common misconception is that ‘more partials = better’; partials must be precisely tuned and enveloped over time. Too few partials, or a bank of flat-amplitude sines, yields a thin, static, organ-like sound rather than a recognisable evolving timbre — a real piano’s high partials decay faster than its low ones, and capturing that spectral evolution is what makes the sound convincing.

Examples

A Hammond organ does additive synthesis mechanically: each drawbar adds a harmonic partial at a fixed amplitude. A sawtooth = sine partials at integer multiples of the fundamental, amplitude 1/n. In SuperCollider: Mix.fill(15, {|i| SinOsc.ar(440 * (i+1), mul: 0.5/(i+1)) }) sums many partials; truncating to a few partials sounds noticeably different from the full sawtooth.

Assessment

Given a sawtooth, list the first four partials (frequencies and relative amplitudes) and explain why truncating to four sounds different from the full wave. State the relationship between additive synthesis and Fourier analysis, and explain why too few or flat-amplitude partials produce an ‘organ-like’ rather than a convincing instrument tone.

“Additive synthesis is a technique which builds sounds from the bottom up, by incrementally adding simple waveforms together to achieve the desired resultss.”
corpus · chapter-6-additive-synthesis-nord-modular-book-james-clark · chunk 1
“Rather than starting with something complex and taking energy away to sculpt a sound, we can start with simple building blocks and add many of them together to create more involved sounds”
corpus · nick-collins-introduction-to-computer-music-free-author-edit · chunk 62
“Additive synthesis is a class of sound synthesis techniques based on the summation of elementary waveforms to create a more complex waveform.”
corpus · the-computer-music-tutorial-curtis-roads-archive-org-copy · chunk 30
“The process of adding sine waves together to create sounds is known as additive synthesis. This method is used on a few digital synthesizers and has also been used by pipe organs for hundreds of years”
corpus · welsh-s-synthesizer-cookbook-figures-in-supercollider-cookbo · chunk 2