CSAT Solved Papers/ 2025/Q58
2025 CSAT — Q58
The -digit number (all distinct digits) is such that . is thrice . is greater than by , while is greater than by . How many such -digit numbers are possible?
Worked rationale
Translate the conditions, then enumerate the few feasible chains.
Bound : and , giving .
Bound : , so , giving the chains
Now pair each with each and keep only all-distinct -tuples:
| ✗ | ✓ | ✗ | |
| ✗ | ✓ | ✓ | |
| ✓ | ✗ | ✗ |
Four surviving numbers: .
Answer: (b) 4.
Why the other options miss
- A missed a case: misses one valid chain (commonly the with branch), under-counting.
- C missed a case: admits one clashing tuple (e.g. keeps with where ) without enforcing distinctness.
- D solved the wrong question: counts all chains minus a couple, ignoring most of the distinct-digit collisions.
Specialist insight
The whole item is constraint-driven pruning: the relations collapse five free digits to two short ladders — and — leaving only candidate combinations. Marks are won or lost entirely on the distinctness check: five of the nine combinations die on a digit collision (, , , ). Lay the grid out explicitly and test each cell for repeats rather than computing in your head; that disciplined sweep yields exactly four.
The relations force and ( combinations); enforcing all-distinct digits kills five, leaving .