11. Remainders & Modulo Arithmetic

Remainder concepts + modulo arithmetic (mod): division algorithm, remainder rules, cyclicity base, negative mod basics, SSC CGL level examples & practice questions with answers.

← Prev: Fractions & Decimals Next: Unit Digit & Cyclicity →

1) Division Algorithm (base concept)

Kisi bhi integers a (dividend) aur b (>0) (divisor) ke liye: a = bq + r jahan 0 ≤ r < b. Yahi r remainder hota hai.

2) Modulo (mod) kya hota hai?

a mod n ka matlab: a ko n se divide karne par jo remainder aaye.

3) Congruence (≡) — SSC friendly meaning

Agar a aur b ko n se divide karne par same remainder aaye, to: a ≡ b (mod n)

4) Most-used modulo rules (must learn)

5) Quick examples (reduce first)

Example 1

(123 + 789) mod 10

Example 2

(98 × 77) mod 7

6) Negative modulo (simple handling)

Exam me kabhi kabhi subtraction me negative aa jata hai. Rule: answer ko 0 to n−1 ke beech laane ke liye n add kar do.

7) Standard remainder patterns (SSC)

A) (a + b) divisible by n

Agar a mod n = r, to (n − r) mod n = n − r (unless r=0). So a + (n − r) is divisible by n.

B) If a ≡ b (mod n) then ak ≡ bk (mod n)

8) Classic SSC-type remainder questions

Example 1: Big power remainder

Find remainder when 3100 is divided by 7.

Example 2: Expression remainder

Find remainder when (1050 + 3) is divided by 7.

9) Common traps


10) Practice (SSC CGL) + Answers

  1. Find remainder when 257 is divided by 9.
  2. Find (3456 mod 8).
  3. Find remainder when 225 is divided by 7.
  4. Find remainder when (995 + 1) is divided by 10.
  5. (15×17 + 19) mod 6 ?
  6. (5 − 19) mod 7 ?
Show Answers
  1. 257 = 9×28 + 5 ⇒ remainder 5
  2. 3456 divisible by 8? last3=456, 456÷8=57 ⇒ remainder 0
  3. 2 mod 7 cycle: 2,4,1,2... length 3. 25 mod 3 = 1 ⇒ remainder 2
  4. 99 mod 10 = 9 ⇒ 9odd mod 10 = 9 ⇒ (9 + 1) mod 10 = 0
  5. 15 mod 6=3, 17 mod 6=5 ⇒ 3×5=15 mod 6=3; 19 mod 6=1 ⇒ (3+1)=4
  6. (5−19)=-14; -14 mod 7 = 0
← Prev Next →