Let be a function with the following properties:
(i) , and
(ii) for any positive integer .
What is the value of ?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
Applying the rule to 2^100 = 2 * 2^99 repeatedly multiplies by 2^99, 2^98, ..., 2^1, so the exponent is 1 + 2 + ... + 99 = 4950.
Solution
Put in rule (ii). Since , the rule reads
Chain these from down to :
With , the product is a single power of whose exponent is
The answer is .
Why this works
A rule relating to is a recursion along the powers of ; unwinding it multiplies together one factor per step, and multiplying powers of adds the exponents. Computing makes the triangular-number pattern visible immediately.
Alternative approach
Small cases: , , , . The exponents are triangular numbers for , so .
The trap
Summing 1 through 100 instead of 1 through 99 (exponent 5050), or reading f(2n) = n f(n) as f(2^n) = 2^n f(2^(n-1)).
Common mistakes
- Summing 1 through 100 instead of 1 through 99 (exponent 5050), or reading f(2n) = n f(n) as f(2^n) = 2^n f(2^(n-1)).
- Multiplying the exponents instead of adding them when combining the factors .
Techniques
Compute small cases, spot the pattern, generalize · Collapse a sum or product by cancellation