In the expression , the values of , , , and are , , , and , although not necessarily in that order. What is the maximum possible value of the result?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
The 0 must be d, and then 1 * 3^2 = 9 beats 2^3 = 8 and every arrangement that wastes the 1 as base or multiplier.
Solution
Decide where the goes. If or , the product vanishes and the result is , negative. If , then and the result is . So the best use of is , which also removes the subtraction entirely.
Now distribute among to maximize . Test the six orders:
- : or .
- : or .
- : or .
The largest is , from .
The answer is .
Why this works
With only four values and a tiny expression, organized enumeration is faster than clever reasoning. The structural facts that prune the search are worth remembering: a should sit where it does no harm (the subtracted term), a is wasted as a base, and among small powers .
The trap
Grabbing 2^3 = 8 as the largest power (choice (C)) without also testing 3^2 = 9.
Common mistakes
- Grabbing 2^3 = 8 as the largest power (choice (C)) without also testing 3^2 = 9.
- Putting the into "because it is small" and settling for or , when is available.
Techniques
Organized listing / direct enumeration · Consider the largest/smallest element or boundary case