Do I Know a Number Other Than 4?

When ( 4444 ) 4444 (4444)^{4444} is written in decimal notation, the sum of its digits is A A . Let B B be the sum of the digits of A A . Find the digital sum of B . B.

(Note: A digital sum means you take the sum of the digits, and then if more than one digit remains, take the sum again, and keep repeating until only one digit remains.)

8 7 9 None of These

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.

2 solutions

Ameya Salankar
Apr 1, 2014

Let N = 444 4 4444 = 4444^{4444} . The maximum number of digits in N is less than 4444 × 4 = 17776 4444\times4 = 17776 . Hence, the maximum possible value of A is 17776 × 9 = 159984 17776\times9 = 159984 .

Similarly, the maximum possible value of B is 45 45 & the sum of the digits of B 12 \leq 12 .

Observe, that N A B ( m o d 9 ) (mod 9) & 4444 4444 7 7 ( m o d 9 ) (mod 9) .

Since 7 3 7^{3} 1 1 ( m o d 9 ) (mod 9) , we get, 444 4 4444 7 4444 7 4444^{4444}≡7^{4444}≡7 ( m o d 9 ) (mod 9) as 4444 1 ( m o d 3 ) 4444≡1 (mod3) .

Hence, the sum of the digits of B is 7 \boxed{7} .

That's brilliant~

Ying Hao Ho - 7 years, 1 month ago

Good sum.

TIRTHANKAR GHOSH - 7 years, 2 months ago

How did you say that it has less than 4444*4 digits? And sorry for re-posting the same problem........I didn't know then that you've already posted it.

Satvik Golechha - 6 years, 11 months ago

Log in to reply

Because 444 4 1 4444^1 has at most 4 digits, 444 4 2 4444^2 has at most 8 digits... so on. In fact, for all n-digit numbers x, x m x^m has at most m*n digits.

Benjamin Wong - 6 years, 2 months ago

Please check your answer. A:Sum of digits of N = 72601. B:Sum of digits of A = 7+2+6+0+1 = 16.

E Koh - 3 years ago

It should be 16, I coded it. Better check your solution

Edward Brooke - 6 years, 8 months ago

Log in to reply

You stopped at the digit sum of A; 16 is the value of B. Take the digit sum of 16, and you have your answer of 7.

Brock Brown - 6 years, 3 months ago
Brock Brown
Mar 13, 2015

Python:

1
2
3
4
5
6
7
8
def digit_sum(n):
    total = 0
    for digit in str(n):
        total += int(digit)
    return total
a = digit_sum(4444**4444)
b = digit_sum(a)
print "Answer:", digit_sum(b)

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...