CSAT Solved Papers/ 2024/Q35

2024 CSAT — Q35

Quant Number theory 2.5 marks Medium

Let XX be a two-digit number and YY be another two-digit number formed by interchanging the digits of XX. If (X+Y)(X + Y) is the greatest two-digit number, then what is the number of possible values of XX?

  1. A 2
  2. B 4
  3. C 6
  4. D 8 Answer

Worked rationale

Write X=10a+bX = 10a + b (tens digit aa, units bb); the interchange gives Y=10b+aY = 10b + a. Then

X+Y=11(a+b).X + Y = 11(a + b).

The greatest two-digit number is 9999, so 11(a+b)=99a+b=911(a+b) = 99 \Rightarrow a + b = 9.

Now count valid digit pairs. XX is two-digit so a1a \ge 1. YY must also be two-digit, so its tens digit b1b \ge 1. With a+b=9a + b = 9 and both 1\ge 1:

(a,b){(1,8),(2,7),(3,6),(4,5),(5,4),(6,3),(7,2),(8,1)}.(a,b) \in \{(1,8),(2,7),(3,6),(4,5),(5,4),(6,3),(7,2),(8,1)\}.

That is 88 values of XX. (The pair a=9,b=0a=9, b=0 is excluded because Y=09Y = 09 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 ({18,27,36,45}\{18,27,36,45\} then halved), mis-grouping XX and YY.
  • B
    missed a case: lists the unordered pairs {1,8},{2,7},{3,6},{4,5}\{1,8\},\{2,7\},\{3,6\},\{4,5\} as 44, forgetting that each ordered XX (e.g. 1818 and 8181) is a separate value.
  • C
    off by one: gets a+b=9a+b=9 but over-prunes, dropping two valid endpoints (e.g. excludes both 1818 and 8181 unnecessarily).

Specialist insight

The identity X+Y=11(a+b)X + Y = 11(a+b) is the whole solve: a two-digit number plus its reverse is always a multiple of 1111, so “greatest two-digit sum” forces a+b=9a+b=9 (since 11×9=9911\times9=99). The only subtlety is the two-digit constraint on YY: b1b\ge1 kills the (9,0)(9,0) pair, trimming the count from 99 to 88. Each ordered XX counts separately (188118\ne81), so do not halve. Recognising the 11(a+b)11(a+b) structure converts a brute-force digit hunt into a one-line divisibility read.

The trap, in one line

X+Y=11(a+b)=99a+b=9X+Y=11(a+b)=99\Rightarrow a+b=9; count ordered XX with both digits 1\ge1 (so YY stays two-digit) — that excludes (9,0)(9,0), leaving 88.

← All 2024 CSAT questions