Digit Sum ஐ எப்படி கணக்கிடுவது
Digit Sum என்றால் என்ன?
The digit sum is the sum of all individual digits in a number. The digital root is the single digit obtained by repeatedly summing digits. These are used in divisibility checks and casting out nines.
சூத்திரம்
Digit sum = sum of all digits; Digital root = 1 + ((n−1) mod 9)
- n
- the number
- d
- digit sum — sum of all digits in n
- r
- digital root — repeatedly sum digits until single digit
படிப்படியான வழிகாட்டி
- 1Digit sum: add all digits together
- 2For 1234: 1+2+3+4 = 10
- 3Digital root: repeat until single digit
- 4Digital root of n = 1 + (n−1) mod 9
தீர்க்கப்பட்ட எடுத்துக்காட்டுகள்
உள்ளீடு
12345
முடிவு
Digit sum = 1+2+3+4+5 = 15, Digital root = 6
உள்ளீடு
999
முடிவு
Digit sum = 27, Digital root = 9
அடிக்கடி கேட்கப்படும் கேள்விகள்
What is the divisibility rule for 9?
A number is divisible by 9 if and only if its digit sum is divisible by 9 (or equals 9).
What is "casting out nines"?
An ancient divisibility checking technique using digit sums to detect arithmetic errors.
What is the digital root of a number like 999?
9+9+9 = 27, then 2+7 = 9. The digital root is 9.
கணக்கிடத் தயாரா? இலவச Digit Sum கால்குலேட்டரை முயற்சிக்கவும்
நீங்களே முயற்சிக்கவும் →