Reduction, in full
Everything in numerology passes through this one step. Birth dates, names, house numbers and phone numbers are all funnelled down to a single digit by the same repeated addition, which is what lets a system with nine or twelve categories absorb any input at all. The older name for it, theosophical reduction, comes from number lore where it sits alongside theosophical addition, a different operation that sums every whole number up to n instead of the digits of n.
This site's version loops while the value is greater than 9 and is not 11, 22 or 33. So 25 goes to 7 in one pass and stops because it is a single digit. 29 goes to 11 and stops because of the exemption. A number arriving as 22 never moves at all. The working is kept and shown rather than thrown away, since which route a number took to reach 4 matters to several parts of the tradition.
The contrast worth understanding is with the digital root, which is a plain fact about integers in base ten. Repeated digit summing with no exemptions always lands on 1 + ((n-1) mod 9), a closed form that skips the iteration entirely. Numerological reduction follows the same path and then stops early at the master numbers. That single carve-out is the entire difference between an arithmetic property and a tradition-specific procedure built on top of it.
- Numerology
- Digit summing, Theosophical reduction
A worked example
Reduce 4729. One pass gives 4 + 7 + 2 + 9 = 22, and numerology stops there, because 22 is a master number. Carry on and 2 + 2 = 4, which is the digital root and also 1 + ((4729-1) mod 9). Reduce 25 and nothing intervenes: 2 + 5 = 7, single digit, finished. The exemption is the only place the two procedures part company.
Sources
The digital root of n, the value repeated digit summing converges on, is given in closed form by 1 + ((n-1) mod 9).
Wolfram MathWorld — Digital Root
See also
Where it comes up on this site
Reduction: frequently asked
Add the digits. If the answer has more than one digit, add those, and repeat. Stop at 11, 22 or 33 if you land on one.
Almost, and the gap is worth knowing. A digital root is a property of the integer itself, computable in one line as 1 + ((n-1) mod 9), with no special cases anywhere. Numerological reduction runs the same arithmetic but halts at the three master numbers. Away from 11, 22 and 33 the two agree on every value, which is why the difference is easy to miss and occasionally matters a lot.