What is the sum of all the solutions of ?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
Split at x = 30 to remove the inner absolute value, then each case is |linear| = x, which yields two candidate roots to verify.
Solution
Since the right side is an absolute value, . Handle the inner absolute value by splitting at .
Case . Then , and the equation becomes
Either , giving , or , giving . Both satisfy , and both check: and .
Case . Then , so
So , which is indeed greater than .
The solutions are , with sum .
The answer is .
Why this works
Nested absolute values are handled from the inside out: the inner one determines a breakpoint (), and on each side the equation becomes , which has at most two solutions. Verifying that each solution lies in its case interval is what keeps extraneous roots out.
Alternative approach
Graph : it is the V-shape for and the horizontal line beyond. The line crosses the V twice ( and ) and the horizontal piece once ().
The trap
Not checking candidates against the case assumption, or forgetting the x > 30 case where the expression collapses to the constant 60.
Common mistakes
- Not checking candidates against the case assumption, or forgetting the x > 30 case where the expression collapses to the constant 60.
- Summing only (choice A) or including a spurious root like .
Techniques
Split into exhaustive cases and handle each