Digit sum, in full
A digit sum is a single pass. Add the digits, report the answer, stop. The result can be any size at all, and for anything longer than a couple of digits it will usually have more than one digit itself. Reduction, by contrast, is the same operation run in a loop until it can go no further. Sources that use the two terms interchangeably are the main reason people get different answers from what looks like the same instruction.
This site's digit sum strips every character that is not a digit before adding, which is why dates can be fed to it in ISO form without special handling. The string 1990-07-16 and the string 19900716 both give 33, because the hyphens contribute nothing. That one behaviour is doing quiet work in several calculations, including the personal day number, which adds the digit sum of a birth date to the digit sum of a calendar date before any reduction happens.
The order matters more than it looks. Summing first and reducing once at the end is not always the same as reducing each part and then adding, because master numbers can be preserved at one stage and not at another. The Life Path on this site reduces month, day and year separately for exactly that reason, and it can give a different answer from summing every digit of the date in one go.
- Numerology
- Sum of digits, Digital sum
A worked example
The ISO date 2026-07-26 has a digit sum of 25, from 2 + 0 + 2 + 6 + 0 + 7 + 2 + 6. That is one pass and it is done. Reduction does not stop at 25, it keeps going: 2 + 5 = 7. So the same eight digits give 25 as a digit sum and 7 as a reduced number. Anywhere a method says digit sum but means reduce, the two answers will differ.
See also
Where it comes up on this site
Digit sum: frequently asked
One addition versus a loop. The digit sum of 2026-07-26 is 25 and stops there. Reduction carries on to 7.
It can. Reducing the parts of a date and then adding them does not always match adding every digit and reducing once, because a master number kept whole at one stage gets flattened at another. That single difference is why two Life Path calculators sometimes hand you different answers from the same birth date.