How this instrument works
The golden ratio answers a proportion problem, not a geometry problem first: cut a length into pieces a and b so that (a + b) is to a as a is to b. Write that proportion out and cross-multiply, and every reference to the original total cancels — what remains is x² = x + 1, where x is the ratio a ⁄ b. The quadratic formula hands back two roots, (1 ± √5) ⁄ 2, and only the positive one, φ ≈ 1.6180339887, describes a ratio of positive lengths, so it's the root that survives.
That equation explains why φ behaves the way it does. Because φ² = φ + 1, squaring it is the same as adding 1, and dividing by it is the same as subtracting 1 (1 ⁄ φ = φ − 1 ≈ 0.618). No other positive number has both properties at once — a tidy, self-referential fact that makes φ reappear inside its own arithmetic instead of producing a new value each time you operate on it. Geometrically this is a rectangle with sides a + b and a: shave off the a-by-a square at one end and the leftover a-by-b rectangle has the identical proportions as the one you started with, shrunk down.
Feed the split a total of exactly zero and both pieces come back zero — the degenerate but consistent case, since φ itself never depends on the total being divided; it's a fixed constant computed the same way regardless of what you're splitting. Feed it a negative total and the proportion still solves arithmetically, but a length can't be negative, so this sheet flags that input rather than return a meaningless split.
- Type the measurement you want to divide into Total length to divide — any unit works, since the split is a pure ratio.
- Check φ (golden ratio): it always reads 1.6180339887, fixed by the formula regardless of what you entered above.
- Read Larger part for the bigger of the two pieces — the one closer in size to your total.
- Read Smaller part for what's left over; it should sum with Larger part back to your original total.
- Change Total length to divide to re-split a different measurement — both parts rescale, but Larger part ⁄ Smaller part stays fixed at φ every time.
Worked example — splitting a length of 10
Take a plank measuring 10 units and cut it at the golden section. First b = 10 ⁄ (1 + φ) = 10 ⁄ 2.618033988749895 = 3.8196601125010514, the smaller piece. Then a = φ × b = 1.618033988749895 × 3.8196601125010514 = 6.180339887498948, the larger piece — and adding them back, 6.180339887498948 + 3.8196601125010514 lands on 10 to the limit of floating-point precision.
Check the defining proportion directly: a ⁄ b = 6.180339887498948 ⁄ 3.8196601125010514 = 1.618033988749895, and the whole over the larger piece, 10 ⁄ 6.180339887498948, comes out to that identical value. Both ratios equal φ, which is exactly the property the split was built to satisfy — the larger piece stands to the smaller as the whole stands to the larger.
Questions
What formula does this calculator use to split a length?
It solves b = total ⁄ (1 + φ) for the smaller piece first, then a = φ × b for the larger one, where φ = (1 + √5) ⁄ 2. Those come from requiring (a + b) ⁄ a = a ⁄ b = φ, then substituting a = φb and solving for b in terms of the total — no separate formula is needed for a once b and φ are known.
Why does φ equal (1 + √5) ⁄ 2?
Setting x = a ⁄ b in the defining proportion (a + b) ⁄ a = a ⁄ b and simplifying gives x² − x − 1 = 0. The quadratic formula returns x = (1 ± √5) ⁄ 2. Only the positive root, ≈1.618, corresponds to a ratio of two positive lengths, so that's the value taken as φ; the negative root, ≈ −0.618, solves the same equation but describes no physical split.
Where does the name 'golden ratio' come from?
Euclid described the proportion around 300 BCE as cutting a line 'in extreme and mean ratio' — no mention of gold. The phrase 'golden ratio' itself is a much later coinage, entering common use in 19th-century German mathematics before spreading to English; older claims that ancient builders deliberately targeted φ are largely unverifiable and often overstated.
How does the golden ratio relate to the Fibonacci sequence?
Divide each Fibonacci number by the one before it — 1, 1, 2, 3, 5, 8, 13, 21… gives ratios 1, 2, 1.5, 1.667, 1.6, 1.625, 1.615… — and the sequence of ratios closes in on φ as the terms grow, without ever landing on it exactly, since φ itself is irrational and no ratio of whole numbers can equal it.
What mistake do people make solving for φ by hand?
The most common slip is keeping the negative root of x² − x − 1 = 0 instead of the positive one, or plugging −0.618 in somewhere a positive ratio is required. A second is swapping which piece is which: Larger part is always the one nearer in size to the total, and Smaller part is always the one nearer to zero, never the reverse.
Does the split still work if the total is very small or zero?
Yes — the ratio a ⁄ b stays exactly φ no matter how small the total gets, because both pieces scale down together. At a total of zero, both Larger part and Smaller part return zero, which is consistent rather than undefined, since dividing zero by any positive number is still zero.