According to the standard convention for exponentiation,
If the order in which the exponentiations are performed is changed, how many other values are possible?
- A)
- B)
- C)
- D)
- E)
Answer
B
Key insight
There are only five ways to parenthesize four 2s; since 2^(2^2) = (2^2)^2 = 16, every grouping evaluates to either 2^16 or 256.
Solution
A chain of four numbers with three operations can be fully parenthesized in exactly five ways. Write as to keep the groupings readable:
- : the standard order, .
- : inner part is , so again .
- : .
- : .
- : .
The key coincidence is , which is why groupings 1 and 2 agree and groupings 3 and 4 agree. Every non-standard grouping gives , so exactly one value other than occurs.
The answer is .
Why this works
Exponentiation is not associative, so different groupings can genuinely differ, but with such a short chain a complete list is the fastest proof. The useful facts are and the special coincidence ; together they collapse five expressions into two values.
The trap
Counting parenthesizations instead of distinct values, or forgetting that the problem asks for values other than the standard one.
Common mistakes
- Counting parenthesizations instead of distinct values, or forgetting that the problem asks for values other than the standard one.
- Evaluating as or some other misuse of the power rule; the exponents multiply only in the form .
Techniques
Organized listing / direct enumeration