normsum() — Adding two normals

Adds or subtracts two bell-curve things into one new bell curve.

X ± Y ~ N(μ₁±μ₂, σ₁²+σ₂²)

Key idea

Definition

two independent normal variables
constants you scale by
their means
their variances (always add)

In plain words

Pack a lunchbox and a water bottle, each a little uneven in weight. The total weight is still bell-shaped — that hump-in-the-middle pattern — just wobblier than either piece alone.

Where you'd use it

Worked example 9

Add N(0, 3²) and N(0, 4²) — bells with sd 3 and sd 4. The result is N(0, 5²): the variances add (9 + 16 = 25), so the new sd is √(3² + 4²) = 5.

Frequently asked questions

How do I combine two normal variables?
Means add; variances add (if independent). Combine SDs via √(σ₁² + σ₂²), never by adding them.