CSAT Solved Papers/ 2023/Q54

2023 CSAT — Q54

Quant Number theory 2.5 marks Hard

4040 children are standing in a circle and one of them (say child-11) has a ring. The ring is passed clockwise. Child-11 passes on to child-22, child-22 passes on to child-44, child-44 passes on to child-77 and so on. After how many such changes (including child-11) will the ring be in the hands of child-11 again?

  1. A 14
  2. B 15 Answer
  3. C 16
  4. D 17

Worked rationale

The step grows by 11 each pass: +1+1 (to child-22), +2+2 (to child-44), +3+3 (to child-77), \dots After nn passes the position is

1+(1+2++n)=1+n(n+1)2(mod40),1 + (1 + 2 + \cdots + n) = 1 + \frac{n(n+1)}{2} \pmod{40},

with positions read mod 4040 (position 41141 \equiv 1). The ring returns to child-11 when

n(n+1)20(mod40)    n(n+1)0(mod80).\frac{n(n+1)}{2} \equiv 0 \pmod{40} \iff n(n+1) \equiv 0 \pmod{80}.

Search for the smallest nn: 80=24×580 = 2^4 \times 5, so the consecutive pair n,n+1n, n+1 must together supply a factor 1616 and a factor 55.

  • n=15n = 15: 15×16=240=80×315 \times 16 = 240 = 80 \times 3 ✓ (here 1616 gives the 242^4, 1515 gives the 55).

No smaller nn works (n14n \le 14 never makes n(n+1)n(n+1) a multiple of 8080). Check: 15162=1200(mod40)\frac{15\cdot 16}{2} = 120 \equiv 0 \pmod{40}, position =1+1201= 1 + 120 \equiv 1. ✓

Answer: (b) 15.

Why the other options miss

  • A
    off by one: stops one pass early; 14152=10525(mod40)\frac{14\cdot 15}{2} = 105 \equiv 25 \pmod{40}, not back at child-11.
  • C
    off by one: overshoots by one; 16172=13616(mod40)\frac{16\cdot 17}{2} = 136 \equiv 16 \pmod{40}.
  • D
    an arithmetic slip: mis-solves n(n+1)0(mod80)n(n+1)\equiv 0 \pmod{80}, taking the next coincidence instead of the first.

Specialist insight

The cumulative displacement after nn passes is the triangular number n(n+1)2\frac{n(n+1)}{2}, so “return to start” becomes n(n+1)20(mod40)\frac{n(n+1)}{2} \equiv 0 \pmod{40}, i.e. n(n+1)0(mod80)n(n+1)\equiv 0 \pmod{80}. Factor the modulus (80=24580 = 2^4\cdot 5) and find the first consecutive pair carrying both 1616 and 55 — that is 151615\cdot 16. Recognising the triangular-number structure turns a tedious step-by-step simulation into a one-line divisibility hunt.

The trap, in one line

Displacement =n(n+1)2= \tfrac{n(n+1)}{2}; return needs n(n+1)0(mod80)n(n+1)\equiv 0 \pmod{80}, first at n=15n = 15 (1516=24015\cdot 16 = 240) \Rightarrow (b).

← All 2023 CSAT questions