If Damodaran does not get a bonus, what is the maximum possible value of his final rating?
Show solution
Correct answer: C
Setting up the rules
A driver is eligible for bonus only if both conditions hold:
- No parameter rating is 1, and
- At least one parameter rating is 5.
So a driver gets no bonus if either he has a rating of 1 somewhere, or he has no rating of 5 at all.
Also recall Fact 2: no driver may have the same rating in three (or more) parameters — i.e., no value may appear 3 times.
For Damodaran, P2 = 3 is fixed, and the other four parameters are free (integers 1–5). We want the maximum final rating subject to “no bonus”.
Two routes to “no bonus”
Route 1 — No rating of 5 at all. Then the four free ratings come from {2, 3, 4} (we avoid 1 to keep the sum high, and avoid 5 to stay on this route). With no value allowed three times, the best set is {4, 4, 3, 2}:
| P1 | P2 | P3 | P4 | P5 | Sum | Final |
|---|---|---|---|---|---|---|
| 4 | 3 | 4 | 3 | 2 | 16 | 3.2 |
Final rating = 16 / 5 = 3.2.
Route 2 — Include a 5, but also include a 1 (the 1 disqualifies the bonus). We can now use a 5 to push the sum up, while a single 1 keeps him bonus-ineligible. The best set for the four free slots is {5, 5, 4, 1} (three 5’s would violate Fact 2):
| P1 | P2 | P3 | P4 | P5 | Sum | Final |
|---|---|---|---|---|---|---|
| 5 | 3 | 5 | 4 | 1 | 18 | 3.6 |
Check Fact 2: 5 appears twice, 3 appears once, 4 appears once, 1 appears once — no value three times. ✔
Final rating = 18 / 5 = 3.6.
Comparing
Route 2 (3.6) beats Route 1 (3.2), so the maximum possible final rating is 3.6.
💡 Teacher tip: When a condition can be failed in two different ways, check both ways — sometimes breaking the rule deliberately (here, inserting a 1) lets you reach a higher total than playing safe.
Answer: 3.6 (Choice C)