Difficulty: Easy
Correct Answer: 2^20 - 1
Explanation:
Introduction / Context:
This is a geometric progression (GP) with first term 1 and common ratio 2. The total for n days equals the sum of the first n powers of 2 starting at 2^0. The standard GP sum formula applies directly here.
Given Data / Assumptions:
Concept / Approach:
Sum of GP: S_n = a * (r^n − 1) / (r − 1). With a = 1 and r = 2, this simplifies to S_n = 2^n − 1. Substitute n = 20 to get the total earnings.
Step-by-Step Solution:
Verification / Alternative check:
Quick check for small n: S_1 = 1 = 2^1 − 1; S_2 = 1 + 2 = 3 = 2^2 − 1. Pattern holds; thus S_20 = 2^20 − 1.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing arithmetic and geometric sequences, or forgetting that the first term is 1 (2^0). Always apply the GP sum formula carefully.
Final Answer:
Discussion & Comments