Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Unit 3: Binary Arithmetic — Multiplication & Division

Lesson 27 of 34 in the free Fundamentals of IT & Computers notes on Siksha Sarovar, written by Rohit Jangra.

Unit III — Binary Arithmetic: Multiplication & Division

Binary multiplication and division mirror their decimal counterparts but are simplified because the only digits are 0 and 1, making the multiplication table trivial.

---

Binary Multiplication Rules

ABA × B
000
010
100
111

Key insight: Binary multiplication is essentially AND operation plus shifting.

  • Multiplying by 0 gives 0.
  • Multiplying by 1 leaves the number unchanged.
  • Each partial product is shifted left by one position for each bit position of the multiplier.

---

Binary Multiplication Examples

Example 1: Multiply (1011)₂ × (101)₂

        1 0 1 1   (11)
      ×   1 0 1   (5)
      ---------
        1 0 1 1   ← 1011 × 1 (bit 0, no shift)
      0 0 0 0 0   ← 1011 × 0 (bit 1, shift left 1)
    1 0 1 1 0 0   ← 1011 × 1 (bit 2, shift left 2)
    ---------
    1 1 0 1 1 1   (55)

Step-by-step addition of partial products:

  • 1011 + 000000 + 101100 = 110111₂ = 55 ✓ (11 × 5 = 55)

---

Example 2: Multiply (110)₂ × (11)₂

      1 1 0   (6)
    ×   1 1   (3)
    -------
      1 1 0   ← 110 × 1 (bit 0)
    1 1 0 0   ← 110 × 1 (bit 1, shift left 1)
    -------
   1 0 0 1 0  (18)

Result: (10010)₂ = 18 ✓ (6 × 3 = 18)

---

Binary Division

Binary division follows long division — the same process as decimal but with only 0 and 1.

Steps:

  1. Take bits from the dividend from left to right.
  2. If the current partial dividend ≥ divisor → quotient bit = 1; subtract divisor.
  3. If the current partial dividend < divisor → quotient bit = 0; bring down next bit.

---

Example: Divide (110110)₂ ÷ (110)₂ (i.e., 54 ÷ 6)

Dividend: 110110
Divisor:  110

110 goes into 110 → 1, remainder 000
Bring down 1 → 0001
110 does not go into 0001 → 0
Bring down 1 → 00011
110 does not go into 00011 → 0
Bring down 0 → 000110
110 goes into 110 → 1, remainder 000

Quotient: 1001  (=9)
Remainder: 0

Verification: 9 × 6 = 54 ✓

---

Summary Table

OperationMethodKey Rule
AdditionColumn-by-column, carry1+1=10
SubtractionColumn-by-column, borrow0−1 borrows from left
MultiplicationPartial products + shift + add1×1=1; anything×0=0
DivisionLong divisionQuotient 1 if partial dividend ≥ divisor
Key Takeaway: Binary multiplication reduces to AND operations and left shifts — much simpler than decimal multiplication. Binary division is long division with only two possible quotient bits (0 or 1). Always verify results by converting back to decimal.