The number is the square of a positive integer . In decimal representation, the sum of the digits of is
- A)
- B)
- C)
- D)
- E)
Answer
B
Key insight
N = 5^64 * 2^75 = 10^64 * 2^11, which is 2048 followed by 64 zeros, so the digit sum is 2 + 0 + 4 + 8 = 14.
Solution
Write everything in primes: and . Taking the square root halves each exponent:
Every can be matched with a to make a ; there are fives and twos, so pairs form and twos are left over:
Multiplying by just appends zeros, so the nonzero digits of are those of , with sum .
The answer is .
Why this works
Digit sums of huge numbers are tractable only when the number has a simple decimal form. Powers of and combine into powers of , which contribute nothing to the digit sum, so the whole problem reduces to the small leftover factor. Always pair off s and s before thinking about digits.
The trap
Leaving the wrong prime unpaired (writing 10^75 * 5^{-11} or 10^64 * 5^11) or forgetting to halve the exponents when taking the square root.
Common mistakes
- Leaving the wrong prime unpaired (writing 10^75 5^{-11} or 10^64 5^11) or forgetting to halve the exponents when taking the square root.
- Miscomputing (for instance as or ), which changes the digit sum to or .
Techniques
Set up the equation/formula and compute; no special trick needed