We can add up multiple digits in a multi-digit number to get a single-digit number.
For example, 2354 has 4 digits- 2 , 3 , 5 , 4 ; We have to add the digits in this number TWO times to get a single digit number; 1st step. 2354 : 2 + 3 + 5 + 4 = 14 ; 2nd step. 14 : 1 + 4 = 5 .
True or false: there is at least one 4 -digit number we have to add FOUR times in the above way to get a single-digit number.
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.
There is no such 4-digit number, otherwise this Mathematica code would print it!
For[s = 1000, s < 9999, s++, t = 0; j = s; While[Length@IntegerDigits@j > 1, j = Tr@IntegerDigits@j; t++]; If[t > 3, Print@s]]