CSAT Solved Papers/ 2023/Q5

2023 CSAT — Q5

Quant Counting & combinatorics 2.5 marks Medium

In how many ways can a batsman score exactly 2525 runs by scoring single runs, fours and sixes only, irrespective of the sequence of scoring shots?

  1. A 18
  2. B 19 Answer
  3. C 20
  4. D 21

Worked rationale

Let aa singles, bb fours, cc sixes, all non-negative integers, with

a+4b+6c=25.a + 4b + 6c = 25.

Since order is irrelevant, count (a,b,c)(a,b,c) triples. Once b,cb,c are fixed, a=254b6ca = 25 - 4b - 6c is forced (and must be 0\ge 0), so just count the admissible (b,c)(b,c):

  • c=0c = 0: 4b25b=0,1,2,3,4,5,64b \le 25 \Rightarrow b = 0,1,2,3,4,5,677
  • c=1c = 1: 4b19b=0,1,2,3,44b \le 19 \Rightarrow b = 0,1,2,3,455
  • c=2c = 2: 4b13b=0,1,2,34b \le 13 \Rightarrow b = 0,1,2,344
  • c=3c = 3: 4b7b=0,14b \le 7 \Rightarrow b = 0,122
  • c=4c = 4: 64=24, 4b1b=06 \cdot 4 = 24,\ 4b \le 1 \Rightarrow b = 011

(c=5c = 5 gives 30>2530 > 25, stop.) Total =7+5+4+2+1=19= 7 + 5 + 4 + 2 + 1 = 19.

Answer: (b) 19.

Why the other options miss

  • A
    one boundary case lost: drops an edge case (typically the all-singles a=25a=25 solution at b=c=0b=c=0, or the tight c=4c=4 case).
  • C
    an invalid case counted: admits a non-integer or negative aa in one (b,c)(b,c) slot, or double-counts a case.
  • D
    counted the order of shots: treats the shot sequences as distinct, or mis-bounds bb, inflating the total beyond the partition count.

Specialist insight

The move that scores is to eliminate the largest-value coin first (the six), looping cc from its maximum down, because cc has the fewest cases. With aa determined by b,cb,c, the problem collapses to counting integer points under 4b+6c254b + 6c \le 25 — a two-variable bounded sweep finished in well under two minutes. Counting aa as a free third variable, or attaching order to the shots, is the time-and-mark sink.

The trap, in one line

aa is forced once (b,c)(b,c) are chosen, so just count (b,c)(b,c) with 4b+6c254b+6c\le 25 — five cc-cases give 7+5+4+2+1=197+5+4+2+1=19.

← All 2023 CSAT questions