CSAT Solved Papers/ 2023/Q54
2023 CSAT — Q54
Quant Number theory 2.5 marks Hard
40 children are standing in a circle and one of them (say child-1) has a ring. The ring is passed
clockwise. Child-1 passes on to child-2, child-2 passes on to child-4, child-4 passes on to
child-7 and so on. After how many such changes (including child-1) will the ring be in the hands of
child-1 again?
- A 14
- B 15 Answer
- C 16
- D 17
Worked rationale
The step grows by 1 each pass: +1 (to child-2), +2 (to child-4), +3 (to child-7), …
After n passes the position is
1+(1+2+⋯+n)=1+2n(n+1)(mod40),
with positions read mod 40 (position 41≡1). The ring returns to child-1 when
2n(n+1)≡0(mod40)⟺n(n+1)≡0(mod80).
Search for the smallest n: 80=24×5, so the consecutive pair n,n+1 must together supply a
factor 16 and a factor 5.
- n=15: 15×16=240=80×3 ✓ (here 16 gives the 24, 15 gives the 5).
No smaller n works (n≤14 never makes n(n+1) a multiple of 80). Check: 215⋅16=120≡0(mod40), position =1+120≡1. ✓
Answer: (b) 15.
Why the other options miss
- A
off by one: stops one pass early;
214⋅15=105≡25(mod40), not
back at child-
1.
- C
off by one: overshoots by one;
216⋅17=136≡16(mod40).
- D
an arithmetic slip: mis-solves
n(n+1)≡0(mod80), taking the next coincidence
instead of the first.
Specialist insight
The cumulative displacement after n passes is the triangular number 2n(n+1), so “return to
start” becomes 2n(n+1)≡0(mod40), i.e. n(n+1)≡0(mod80). Factor the modulus
(80=24⋅5) and find the first consecutive pair carrying both 16 and 5 — that is 15⋅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 =2n(n+1); return needs n(n+1)≡0(mod80), first at n=15 (15⋅16=240) ⇒ (b).