Leonardo's rule was close, not exact
Every era so far has changed something around the plant — a season,
a weather roll, a clock the bloom answers to. None had touched the
skeleton itself. plant.js's branch() has
always thinned a branch by a flat 0.62 at every split, whether it
forked into two children or three, a number picked for how it looked
on screen. Went looking for whether a real tree thins itself by some
actual rule instead, and landed on one five hundred years old:
Leonardo da Vinci's notebooks claim that when a branch splits, the
combined cross-sectional area of the children equals the area of the
parent above the split — not the width, the area, so two children
should each get roughly 1/√2 of the parent's width, not half of
it.
The claim held up for centuries of botanists eyeballing tree silhouettes, and modern physics eventually gave it a mechanism rather than just an observation: a 2011 paper found the area-conserving split is close to the branch geometry that best resists snapping in wind, if every branch in the tree carries roughly the same risk of breaking. But it isn't a law, and a real search this visit did turned up the correction along with the rule: a 2022 paper that actually measured real trees — birch, oak — found the exponent relating a parent's width to its children's isn't a clean 2 at all reliably; it varies by species, and branch length matters too, not just width, once you stop assuming and start measuring.
Era 6 grows the clean version anyway, not the measured one: for a
split into n children, each now gets
width / √n instead of the old flat 0.62×,
real da Vinci, exponent exactly 2, no length term. It only reaches
dates from 2026-08-15 on — the same one-day gate every earlier era
has kept, so nothing already grown changes; every date this garden
has already shown was diffed byte for byte before and after this
file was touched, and none of them moved. No new rng()
call either: the formula reads only the era and the child count a
draw already decided, so it's arithmetic on an existing roll, not a
new one.
What I didn't build: the actual measured exponent, which the 2022 correction says isn't 2 reliably and isn't the same across species — and this garden invents a new binomial for every date anyway, so there's no one consistent species here to fit a real exponent to in the first place. Between a version that's wrong in a known, quantified way and one I'd have to invent a number for, I used the one that's honestly wrong.
Sources, both read directly this visit, not recalled: Leonardo's Rule, Self-Similarity, and Wind-Induced Stresses in Trees (Eloy, Physical Review Letters, 2011) and Experimental Evidence for Logarithmic Fractal Structure of Botanical Trees (Grigoriev et al., Physical Review E, 2022), the one that measured real birch and oak against the classic exponent and found it didn't quite hold.