
Distance Calculator
The distance calculator can be used to calculate the distance between two points in two-dimensional or three-dimensional space
A digital root is what you get when you keep adding the digits of a number until you're left with just one. Take 12345: add the digits to get 15, then add those to get 6. That's the digital root. The trick works on any positive integer, and the answer always lands somewhere between 1 and 9. It shows up in divisibility checks, modular arithmetic, and the old-school casting-out-nines technique for catching arithmetic mistakes.
The slow way is what you'd expect: sum the digits, and if the result has more than one digit, sum those too. Repeat until a single digit is left. The fast way is one division. Divide the number by 9 and take the remainder. If the remainder is anything from 1 to 8, that's your digital root. If the remainder is 0, the digital root is 9 (unless the number itself is 0). The calculator uses the fast way, so even a number with a hundred digits returns instantly.
For anyone comfortable with modular arithmetic: the digital root of n is just n mod 9, shifted so the result lives in the 1–9 range instead of 0–8.
Type a positive integer in the Number field. The digital root appears in the result. It works on tiny numbers and on numbers with hundreds of digits, because nothing iterates through them digit by digit; it's a single modulo operation under the hood.
Run a few consecutive numbers through it and the pattern shows up immediately: digital roots cycle 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, and every multiple of 9 lands on 9. The whole calculator is built on that single property.
The cleanest use is divisibility. A digital root of 9 means the number is divisible by 9; a digital root of 3, 6, or 9 means it's divisible by 3. You can check either one in your head, without dividing anything.
Casting out nines is the other classic. Suppose you're checking whether . Take the digital root of each side. Left: digital root of 347 is 5, of 28 is 1, and . Right: digital root of 9716 is 5. They match, so the multiplication is probably right. They don't match? You've definitely made a mistake somewhere. (It can miss errors when the wrong answer happens to have the right digital root, so it's a sanity check, not a proof.)
Beyond that, digital roots show up in recreational math: magic squares, number puzzles, sequence patterns, and in number-theory exercises about residues mod 9. Numerology borrows the idea too, though that's a different conversation.
The digital root of a number equals the digital root of the sum of its digits, no matter how many times you reduce.
Consecutive integers have digital roots that cycle through 1 through 9 forever.
Every multiple of 9 has a digital root of 9.
The digital root of a product equals the digital root of the product of the digital roots, handy for the casting-out-nines check above.
Only for the number 0 itself. Every positive integer has a digital root between 1 and 9.
Because 10 ≡ 1 (mod 9), so every digit contributes its own value to the sum mod 9 regardless of position. The number and the sum of its digits leave the same remainder when divided by 9, which is why repeated digit summing collapses to that remainder.
The digital sum is just one round of adding the digits. The digital root is what you get when you keep going until you hit a single digit. For numbers under 10, the two are the same.
There's no real limit. The calculation is a single division, so the size of the input doesn't slow it down.

The distance calculator can be used to calculate the distance between two points in two-dimensional or three-dimensional space

Find the antilog for any base: common (10), natural (e), binary, or anything else. Enter the log value and base, and you get back the original number.

Convert decimals to percentages and back. Type 0.75 to see 75%, or 25% to see 0.25. Works with negatives and values over 100% too.

Find log₂(x) or work backwards from a logarithm to x. A free binary logarithm calculator for computer science, algorithm analysis, and information theory.

Calculate logarithms with any base. Works for base 10, base e (natural log), base 2, or any positive base you choose. Solve forwards or backwards from any two values.

Find ln(x) and e^x in one place. Enter any positive number to get its natural logarithm, or enter a logarithm to recover the original value.
Digital Root Calculator
Find the digital root of any positive integer. Add the digits, repeat until one digit remains, and use the result for number theory work or quick arithmetic checks.
https://hexacalculator.com/calculators/mathematics/arithmetic/digital-root-calculator
Mathematics
Arithmetic