Backprop multiplies a gradient through every layer — and if those factors are larger than 1, the product races to infinity instead of zero. (4)¹⁰ ≈ 10⁶. The weights blow up to NaN and training dies. It plagues recurrent nets especially, where the same weight multiplies at every timestep. The fix is blunt and effective: clip the gradient before it explodes.
The demo multiplies a factor of 4 through 10 layers — it explodes past a million, while 1 stays stable: live demo
“Exploding and vanishing gradients are opposite problems needing opposite fixes.” — both come from the same product of factors; the cures (clipping, gating, residuals, init) overlap. cited
Depth multiplies until the signal detonates. the wall
On i-13, 4¹⁰ = 1,048,576 (explodes) while 1¹⁰ = 1 (stable):