CSAT Solved Papers/ 2023/Q48
2023 CSAT — Q48
What is the number of selections of consecutive things out of things in a circle taken in the clockwise direction?
Worked rationale
A block of ” consecutive things taken clockwise” from a circle of is completely determined by its starting position. In a circle of items, the number of consecutive clockwise arcs of any fixed length (with ) equals the number of starting points:
Each of the positions begins a distinct clockwise run of , so there are such selections.
Answer: (c) 12.
Why the other options miss
- A solved the wrong shape: computes , the linear (row) count of consecutive blocks, ignoring that a circle has no endpoints.
- B off by one: treats it as a near-circular count , dropping one rotational start.
- D wrong formula: uses (choosing the excluded items as if unordered/non-adjacent), forgetting the excluded pair must itself be adjacent for the kept block to be consecutive.
Specialist insight
The circle is the trap. In a line, consecutive blocks of length number ; in a circle, they number (every position is a valid start, wrapping around). Equivalently, choosing consecutive to keep is the same as choosing the consecutive to drop, and there are exactly adjacent pairs in a -cycle. Either view gives . The decoy is the linear answer; ignores adjacency.
In a circle of , consecutive arcs of length number (one per start) — not (that's the line) (c).