CSAT Solved Papers/ 2024/Q35
2024 CSAT — Q35
Let be a two-digit number and be another two-digit number formed by interchanging the digits of . If is the greatest two-digit number, then what is the number of possible values of ?
Worked rationale
Write (tens digit , units ); the interchange gives . Then
The greatest two-digit number is , so .
Now count valid digit pairs. is two-digit so . must also be two-digit, so its tens digit . With and both :
That is values of . (The pair is excluded because is not a two-digit number.)
Answer: (d) 8.
Why the other options miss
- A solved the wrong question: counts only “distinct-number” pairs up to reversal ( then halved), mis-grouping and .
- B missed a case: lists the unordered pairs as , forgetting that each ordered (e.g. and ) is a separate value.
- C off by one: gets but over-prunes, dropping two valid endpoints (e.g. excludes both and unnecessarily).
Specialist insight
The identity is the whole solve: a two-digit number plus its reverse is always a multiple of , so “greatest two-digit sum” forces (since ). The only subtlety is the two-digit constraint on : kills the pair, trimming the count from to . Each ordered counts separately (), so do not halve. Recognising the structure converts a brute-force digit hunt into a one-line divisibility read.
; count ordered with both digits (so stays two-digit) — that excludes , leaving .