DEV Community

Paul
Paul

Posted on • Originally published at circuitdiagrammaker.app

Speaker Wiring Diagram: Series, Parallel, and Impedance

Wiring multiple speakers to a single amplifier channel is not as simple as connecting them in parallel and hoping for the best. The resulting load impedance must stay within the amplifier's specified minimum, and the power distribution changes depending on how you wire them. Get it wrong and you risk amplifier instability or thermal shutdown; get it right and you can run a four-speaker system from a two-channel amp without issues.

This guide covers impedance calculations for series, parallel, and combined wiring, how to match speakers to your amplifier's minimum impedance rating, and polarity/phase connections.

Speaker Impedance: What the Specification Means

Speaker impedance is specified in ohms (Ω) and refers to the voice coil's AC impedance at a nominal frequency, typically 1 kHz. Common values are 4Ω, 6Ω, 8Ω, and 16Ω.

The actual impedance is frequency-dependent -- an 8Ω speaker measured across its frequency range produces an impedance curve that might swing from 5Ω at the bass resonance peak to 40Ω or more at the mechanical resonance. The nominal value is a useful engineering approximation, not a fixed quantity.

For wiring calculations, use the nominal impedance value from the speaker's spec sheet.

Series Wiring

When speakers are wired in series, the total impedance is the sum of individual impedances.

Z_total = Z1 + Z2 + Z3 + ...

Two 8Ω speakers in series: Z = 8 + 8 = 16Ω
Two 4Ω speakers in series: Z = 4 + 4 =
Three 4Ω speakers in series: Z = 4 + 4 + 4 = 12Ω

Wiring Steps (Two Speakers, Series)

  1. Connect the amplifier positive output to the positive terminal of Speaker 1.
  2. Connect the negative terminal of Speaker 1 to the positive terminal of Speaker 2.
  3. Connect the negative terminal of Speaker 2 back to the amplifier negative output.

Power Distribution in Series

Power distributes in proportion to impedance. For identical speakers, each gets exactly half the amplifier's output power. For mismatched speakers:

P = I² × Z (same current through all, voltage splits proportionally)

Speaker 1 (8Ω) in series with Speaker 2 (4Ω), total Z = 12Ω, amplifier output = 48W:

  • Current = √(P/Z) = √(48/12) = 2A
  • P1 = 2² × 8 = 32W to the 8Ω speaker
  • P2 = 2² × 4 = 16W to the 4Ω speaker

Mismatched series wiring distributes power unequally. The higher-impedance speaker receives more power.

When to Use Series Wiring

Series wiring increases total load impedance. Use it when:

  • You need to bring impedance up to match the amplifier's safe minimum load
  • Individual speakers are rated for less power than the amplifier delivers to the standard load

The trade-off: any failure (open circuit) in one speaker kills the entire series string.

Parallel Wiring

For identical speakers, the parallel impedance is nominal impedance divided by the number of speakers.

Z_total = Z_nominal / N (identical speakers only)

Two 8Ω speakers in parallel: Z = 8/2 =
Four 8Ω speakers in parallel: Z = 8/4 =
Two 4Ω speakers in parallel: Z = 4/2 =

For non-identical speakers:
1/Z_total = 1/Z1 + 1/Z2

8Ω and 4Ω in parallel: 1/Z = 1/8 + 1/4 = 0.375 → Z = 2.67Ω

Wiring Steps (Two Speakers, Parallel)

  1. Connect the amplifier positive output to the positive terminals of both speakers.
  2. Connect the amplifier negative output to the negative terminals of both speakers.

Power Distribution in Parallel

All speakers see the same voltage. Power distributes inversely with impedance.

P = V² / Z

At 16V output voltage:

  • 8Ω speaker: P = 256/8 = 32W
  • 4Ω speaker: P = 256/4 = 64W

The lower-impedance speaker receives more power in a parallel configuration.

Amplifier Minimum Impedance

Most home audio amplifiers specify a minimum 4Ω load. Many car audio amplifiers can run 2Ω or even 1Ω (Class D mono subwoofer amplifiers typically). PA amplifiers often specify 4Ω or 8Ω.

Never connect a load impedance below the amplifier's specified minimum. The amplifier's output stage must source the full output current. At reduced impedance, output current increases. Below the minimum rating, the output transistors can overheat or the amplifier trips its protection circuit.

The safe rule: calculate your wired impedance and confirm it is at or above the amplifier's minimum.

Series-Parallel: Combining Both Methods

Series-parallel wiring combines both techniques to hit a target impedance with more speakers.

Four 8Ω speakers in series-parallel (2 pairs in series, two pairs in parallel):

  • Series pairs: 8 + 8 = 16Ω each
  • Parallel of two 16Ω pairs: 16/2 =

This gives the same impedance as a single speaker while running four, and each speaker shares the amplifier's output power equally (each gets 25% of total output power).

Four 4Ω speakers in series-parallel:

  • Series pairs: 4 + 4 = 8Ω each
  • Parallel of two 8Ω pairs: 8/2 =

This is the standard 4-speaker wiring for a car audio system with a stereo amplifier -- two speakers per channel in series-parallel, presenting a 4Ω load.

Polarity and Phase

Each speaker terminal is marked positive (+) and negative (-). The polarity determines the direction the cone moves when a positive voltage is applied.

In a multi-speaker system, phase alignment matters:

  • Speakers wired in-phase (positive to positive, negative to negative in the signal path) move their cones in the same direction simultaneously.
  • Speakers wired out-of-phase (one reversed) cancel at low frequencies where their wavelengths are large relative to the driver spacing.

For series wiring, maintain phase by following the signal path: amplifier+ → Speaker 1+ → Speaker 1- → Speaker 2+ → Speaker 2- → amplifier-.

For parallel wiring: amplifier+ to all speaker+ terminals, amplifier- to all speaker- terminals.

A simple test: briefly touch a 1.5V AA battery across the speaker terminals. The cone should kick forward with positive battery on positive terminal. Mark all speakers consistently before wiring.

Using CircuitDiagramMaker for Speaker Wiring

Visualizing series-parallel configurations is much easier with a diagram than written descriptions. CircuitDiagramMaker lets you:

  • Place speaker symbols and label each with impedance value
  • Draw series and parallel connections with correct polarity markings
  • Annotate the diagram with calculated total impedance per channel
  • Document amplifier channel assignments and power levels

Create your own speaker wiring diagram -- free

Key Takeaways

  • Series wiring adds impedances: two 8Ω speakers in series = 16Ω total.
  • Parallel wiring divides impedance: two 8Ω speakers in parallel = 4Ω total.
  • In series, all speakers carry the same current; higher-impedance speakers receive more power.
  • In parallel, all speakers see the same voltage; lower-impedance speakers receive more power.
  • Never wire a load below the amplifier's specified minimum impedance -- output stage protection or thermal damage follows.
  • Series-parallel wiring (two pairs of two series speakers, wired in parallel) matches common 4-speaker configurations to a standard 4Ω or 8Ω amplifier load.
  • Maintain consistent polarity (positive to positive in the signal path) across all speakers to keep them in phase.

Originally published at https://circuitdiagrammaker.app/blog/speaker-wiring-diagram.

Top comments (0)