Difficulty: Medium
Correct Answer: 1.2 km/h
Explanation:
Introduction / Context:Given distances and times for downstream and upstream trips, we compute effective speeds for each direction and then use their difference to find the current speed. This is a core pattern in boats and streams problems.
Given Data / Assumptions:
Concept / Approach:sd = distance/time downstream; su = distance/time upstream. Then still water u = (sd + su)/2 and current v = (sd - su)/2. We only need v.
Step-by-Step Solution:
sd = 60/10 = 6 km/hsu = 36/10 = 3.6 km/hv = (sd - su)/2 = (6 - 3.6)/2 = 2.4/2 = 1.2 km/hVerification / Alternative check:Still water u = (6 + 3.6)/2 = 4.8 km/h. Check: u + v = 6 and u - v = 3.6 as required.
Why Other Options Are Wrong:
Common Pitfalls:Taking average of distances or times instead of effective speeds; mixing upstream and downstream speeds. Always form sd and su first, then compute v.
Final Answer:1.2 km/h
Discussion & Comments