How to Use
Enter n:
- Root: Final single digit
- Steps: Each iteration
- Persistence: Step count
Direct Formula
dr(0)=0. For n>0: dr(n) = 1 + ((n−1) mod 9). This works because 10≡1 (mod 9), so any number ≡ its digit sum (mod 9). The digital root is the fixed point of this map.
Applications
- Casting out nines (arithmetic verification)
- Divisibility by 9 test (dr(n)=9 iff 9|n)
- Vedic mathematics
- Numerology (recreational)
Step-by-Step Instructions
- 1Enter number.
- 2View digital root.
- 3See steps.
- 4Check persistence.
- 5Try formula.