2023 CSAT — Q5
In how many ways can a batsman score exactly runs by scoring single runs, fours and sixes only, irrespective of the sequence of scoring shots?
Worked rationale
Let singles, fours, sixes, all non-negative integers, with
Since order is irrelevant, count triples. Once are fixed, is forced (and must be ), so just count the admissible :
- : —
- : —
- : —
- : —
- : —
( gives , stop.) Total .
Answer: (b) 19.
Why the other options miss
- A one boundary case lost: drops an edge case (typically the all-singles solution at , or the tight case).
- C an invalid case counted: admits a non-integer or negative in one slot, or double-counts a case.
- D counted the order of shots: treats the shot sequences as distinct, or mis-bounds , inflating the total beyond the partition count.
Specialist insight
The move that scores is to eliminate the largest-value coin first (the six), looping from its maximum down, because has the fewest cases. With determined by , the problem collapses to counting integer points under — a two-variable bounded sweep finished in well under two minutes. Counting as a free third variable, or attaching order to the shots, is the time-and-mark sink.
is forced once are chosen, so just count with — five -cases give .