Difficulty: Easy
Correct Answer: ₹ 950
Explanation:
Introduction / Context:This is a two-parameter linear pricing model: a fixed base fare up to a threshold distance, and a uniform per-kilometre rate beyond that threshold. Two known points (10 km and 25 km) determine the fixed charge and the per-kilometre rate, after which you can predict the fare at 30 km.
Given Data / Assumptions:
Concept / Approach:Solve the two linear equations to find F and r. Then plug into the formula for 30 km: Fare(30) = F + 25r. This is a straightforward system with elimination by subtraction to isolate r.
Step-by-Step Solution:
From data: F + 5r = 350 … (1)F + 20r = 800 … (2)Subtract (1) from (2): 15r = 450 → r = 30 (₹/km beyond 5 km).Plug back to (1): F = 350 − 5*30 = 350 − 150 = 200.Fare(30) = F + 25r = 200 + 25*30 = 200 + 750 = ₹950.Verification / Alternative check:Check 25 km: 200 + 20*30 = 200 + 600 = ₹800 (matches). Check 10 km: 200 + 5*30 = ₹350 (matches). Consistency verifies the parameters.
Why Other Options Are Wrong:₹900 assumes a lower rate or base. ₹800 and ₹750 are previous-distance fares. ₹920 is an ad-hoc estimate not supported by the linear model.
Common Pitfalls:Charging per km from 0 instead of after 5 km, or mixing total kilometres with additional kilometres beyond the fixed coverage.
Final Answer:₹ 950
Discussion & Comments