Difficulty: Medium
Correct Answer: 48 digit
Explanation:
Introduction / Context:We apply digit counting via base-10 logarithms. For N > 0, digits = floor(log10 N) + 1. Use factorization to compute log10 875 accurately.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
log10 7 ≈ 0.845098, log10 5 ≈ 0.69897log10 875 ≈ 0.845098 + 3(0.69897) = 0.845098 + 2.09691 = 2.942008log10 N ≈ 16 × 2.942008 = 47.072128Digits = floor(47.072128) + 1 = 47 + 1 = 48Verification / Alternative check:(1000)^16 has 49 digits; since 875 < 1000, (875)^16 has fewer ⇒ 48 digits fits the estimate.
Why Other Options Are Wrong:
Final Answer:48 digit
Discussion & Comments