CSAT Solved Papers/ 2025/Q46

2025 CSAT — Q46

Quant Number theory 2.5 marks Medium

If nn is a natural number, then what is the number of distinct remainders of (1n+2n)(1^n + 2^n) when divided by 44?

  1. A 0
  2. B 1
  3. C 2 Answer
  4. D 3

Worked rationale

1n=11^n = 1 always. The behaviour of 2n(mod4)2^n \pmod 4 has a tiny case-split:

  • n=1n = 1: 21=22^1 = 2, so 1+2=33(mod4)1 + 2 = 3 \equiv 3 \pmod 4.
  • n2n \ge 2: 2n2^n is divisible by 44, so 2n02^n \equiv 0, giving 1+0=11(mod4)1 + 0 = 1 \equiv 1 \pmod 4.

So as nn ranges over all naturals, (1n+2n)mod4(1^n + 2^n) \bmod 4 takes exactly the values {3,1}\{3, 1\}two distinct remainders.

Answer: (c) 2.

Why the other options miss

  • A
    solved the wrong question: thinks the expression is always divisible by 44 (remainder always 00), missing both actual residues.
  • B
    missed a case: evaluates only n2n \ge 2 (always remainder 11) and forgets the special case n=1n = 1 giving remainder 33.
  • D
    missed a case: imagines 2nmod42^n \bmod 4 cycles through {2,0,}\{2, 0, \dots\} producing more residues, not realising it settles to 00 for all n2n \ge 2.

Specialist insight

The crux is that 2n(mod4)2^n \pmod 4 does not cycle — it is 22 once (n=1n=1) and then 00 forever (n2n \ge 2). Most modular-power items have a periodic cycle; this one has a transient then a constant, and the entire difficulty is remembering the lone n=1n=1 case. Always test the smallest exponents explicitly (n=1,2n=1,2) before declaring a pattern — here n=1n=1 is the only source of the second residue. The answer is the size of the residue set {1,3}\{1, 3\}, which is 22. A quick discipline: when a base shares a factor with the modulus (22 and 44), expect the powers to collapse to 00, not to cycle.

The trap, in one line

2nmod42^n \bmod 4 is 22 only at n=1n=1 then 00 for all n2n\ge2 — so the sum hits just {3,1}\{3,1\}, two distinct remainders (don't forget n=1n=1).

← All 2025 CSAT questions