A bug crawls along a number line, starting at . It crawls to , then turns around and crawls to . How many units does the bug crawl altogether?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Distance traveled is the sum of the absolute differences of consecutive positions: 4 units left, then 11 units right, total 15.
Solution
Distance traveled along a number line is the absolute value of the change in position, added up leg by leg.
First leg, from to : units.
Second leg, from to : units.
Total: units.
The answer is .
Why this works
Total distance is a sum of unsigned lengths, unlike net displacement, which would be . Whenever a path reverses direction, break it at the turning point and add the absolute values of the pieces.
The trap
Computing the net displacement from -2 to 5 (7 units) or mishandling the negative signs when subtracting.
Common mistakes
- Computing the net displacement from -2 to 5 (7 units) or mishandling the negative signs when subtracting.
- Getting to as or by miscounting across zero; .
Techniques
Set up the equation/formula and compute; no special trick needed