The digital root (also repeated digital sum) of a non-negative integer is the (single digit) value obtained by an iterative process of summing digits, on each iteration using the result from the previous iteration to compute a digit sum. The process continues until a single-digit number is reached.
For example, the digital root of 4 8 7 is 1 :
4 + 8 + 7 = 1 9
1 + 9 = 1 0
1 + 0 = 1
What is the digital root of 1 2 3 , 4 5 6 , … , 4 9 7 , 4 9 8 , 4 9 9 , 5 0 0 ?
Note : The number above is a base 10 number in which the digits are formed from consecutive integers from 1 to 500.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I actually did a direct summation of all the digits! Well I mean after I group the digits properly, as follows:
⇒ S = 4 5 + 4 9 5 + 1 4 9 5 + 5 = 2 0 4 0 So the digital root of the number is 6.
I didn't notice that this is a number theory problem. If I had I wouldn't have tried it. ;)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Problem Loading...
Note Loading...
Set Loading...
First, we consider n ≡ S ( n ) ( m o d 9 ) , where S ( n ) is the digit sum of n .
Due to this fact, the digital root of a number n will be the same as the remainder of the number after dividing by 9 , as long as the number is not divisible by 9 . Note: If the number is divisible by 9 , then the process we will use here will not be able to tell us whether the digital root is 0 or 9 , because both 0 and 9 are congruent modulo 9 .
The order that we sum the digits does not matter, and we can even sum the digits in 'chunks' to produce an intermediary result. We can therefore start by summing the consecutive integers that the number is composed of:
k = 1 ∑ 5 0 0 k = 2 ( 5 0 0 ) ( 5 0 1 ) = ( 2 5 0 ) ( 5 0 1 )
Doing some modular arithmetic:
( 2 5 0 ) ( 5 0 1 ) ≡ ( 7 ) ( 6 ) ≡ 4 2 ≡ 6 ( m o d 9 )
Because the remainder of the number when divided by 9 is 6 , the digital root is 6