Evaluate randomly initialized ReLU MLPs on a dense 1-D grid, detect where the slope jumps, and count the linear pieces (mean over 20 draws, widths 2–16):
depth 1: mean pieces = [2.8, 4.5, 7.8, 14.3], D+1 = [3, 5, 9, 17]
depth 2: mean pieces = [3.2, 7.5, 14.2, 27.8], D+1 = [3, 5, 9, 17]
depth 3: mean pieces = [3.0, 8.9, 19.5, 39.5], D+1 = [3, 5, 9, 17]
One layer of width D: at most D+1 pieces, as promised. Each extra layer folds the graph, roughly multiplying the count, the multiplicative-vs-additive gap that makes depth pay.