Maximum Regions From n Straight Cuts
The formula for the most pieces you can divide a plane (or a pancake, or a pizza) into with n straight cuts, derived by asking what each new cut can possibly add.
Prerequisites: Mathematical Induction
"You have a pancake. What's the maximum number of pieces you can cut it into with 5 straight cuts?" is a classic warm-up puzzle. The trap is guessing by analogy to folding paper — that's wrong. The right approach asks a sharper question: when you add one more straight cut to an existing arrangement, what's the most new pieces it can possibly create?
What one new cut can add
Each new straight line can cross every previous line at most once (two straight lines intersect in at most one point). If the -th line crosses all previous lines, it gets divided into segments by those crossing points (a line split at points has pieces). Every one of those segments slices exactly one existing region into two, adding exactly one new region per segment. So the -th cut adds at most new regions — no more, no less, when positioned to cross every prior line at a distinct point.
Building the recurrence and formula
Let be the maximum number of regions with lines. With lines, (the whole plane, uncut). Each new line adds at most regions when it's the -th line drawn: . Unrolling this recurrence: . In plain English: start with 1 region (uncut), then add regions as each successive line crosses one more prior line than the last.
This is the same formula written using the binomial coefficient : you always get the base 1 region, plus regions from the lines' own presence, plus one extra region for every pair of lines that cross.
Worked example: n = 4 cuts
. Check by building up: , (one line splits the plane in two), (a second line, crossing the first, adds 2), (a third line, crossing both others, adds 3), (a fourth line, crossing all three others, adds 4). So 5 straight cuts through a pancake give at most pieces — not 32.
What this means in practice
The general move here — ask "what's the most a single new addition can contribute given everything already placed," then sum that contribution across all additions — is a reusable trick for a whole family of "maximum count" combinatorics interview questions, not just line-cutting: maximum intersection points among circles, maximum regions from planes cutting 3D space, maximum crossings among chords in a circle. Each has its own per-step contribution to sum, but the derivation pattern is identical.
The -th straight cut through a plane can add at most new regions (one per crossing with a prior line, plus one). Summing gives — quadratic growth, not exponential, despite the intuitive pull toward .
The tempting wrong answer is , borrowed from folding-paper doubling intuition. Straight cuts through a shared plane don't double the count each time — each new cut only adds as many regions as the number of existing lines it crosses, capped by how many lines came before it.
Related concepts
Practice in interviews
Further reading
- Graham, Knuth, Patashnik, Concrete Mathematics, ch. 1