Fatskills
Practice. Master. Repeat.
Study Guide: Physics Optics and Modern - How to Solve: Logic Gates & Boolean Simplification (IIT JEE)
Source: https://www.fatskills.com/joint-entrance-examination-jee/chapter/physics-optics-and-modern-how-to-solve-logic-gates-boolean-simplification-iit-jee

Physics Optics and Modern - How to Solve: Logic Gates & Boolean Simplification (IIT JEE)

By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.

⏱️ ~5 min read

How to Solve: Logic Gates & Boolean Simplification (IIT JEE)

Introduction

"Mastering logic gates and Boolean simplification can fetch you 8–12 marks in IIT JEE—enough to push you into the top 1000. These gates power every smartphone, computer, and AI system, and JEE loves testing them in circuits, truth tables, and algebraic simplification."

WHAT YOU NEED TO KNOW FIRST

  1. Binary Numbers (0 and 1): Logic gates operate on binary inputs.
  2. Basic Algebra (AND = multiplication, OR = addition): Boolean algebra follows unique rules.
  3. Truth Tables: A table showing all possible input combinations and outputs.

KEY TERMS & FORMULAS

1. Logic Gates & Their Symbols

Gate Symbol Boolean Expression Truth Table (A, B → Output)
AND AND Y = A · B 0·0=0, 0·1=0, 1·0=0, 1·1=1
OR OR Y = A + B 0+0=0, 0+1=1, 1+0=1, 1+1=1
NOT NOT Y = A’ 0→1, 1→0
NAND NAND Y = (A · B)’ Inverts AND output
NOR NOR Y = (A + B)’ Inverts OR output
XOR XOR Y = A ⊕ B = A’B + AB’ 0⊕0=0, 0⊕1=1, 1⊕0=1, 1⊕1=0

MEMORISE THIS: Truth tables for AND, OR, NOT, XOR.

2. Boolean Algebra Laws (Given on Exam Sheet, but Know How to Apply)

Law Expression
Identity A + 0 = A, A · 1 = A
Null A + 1 = 1, A · 0 = 0
Idempotent A + A = A, A · A = A
Complement A + A’ = 1, A · A’ = 0
Commutative A + B = B + A, A · B = B · A
Associative (A + B) + C = A + (B + C), (A · B) · C = A · (B · C)
Distributive A · (B + C) = (A · B) + (A · C), A + (B · C) = (A + B) · (A + C)
Absorption A + (A · B) = A, A · (A + B) = A
De Morgan’s (A · B)’ = A’ + B’, (A + B)’ = A’ · B’

MEMORISE THIS: De Morgan’s Laws (critical for simplification).

STEP-BY-STEP METHOD

Step 1: Understand the Problem Type

  • Type 1: Given a logic gate circuit → Find output expression or truth table.
  • Type 2: Given a Boolean expression → Simplify it.
  • Type 3: Given a truth table → Find the Boolean expression.

Step 2: For Logic Gate Circuits

  1. Label all inputs and intermediate outputs.
  2. Write the Boolean expression for each gate in order.
  3. Simplify the final expression using Boolean laws.
  4. Draw the truth table if required.

Step 3: For Boolean Simplification

  1. Apply De Morgan’s Laws first if there are NAND/NOR gates.
  2. Use distributive law to expand terms.
  3. Apply absorption, complement, and idempotent laws to simplify.
  4. Check for redundant terms (e.g., A + A’B = A + B).

Step 4: For Truth Tables → Boolean Expression

  1. Identify rows where output = 1.
  2. For each row, write a product term (AND) of inputs (e.g., A’B if A=0, B=1).
  3. OR all product terms to get the Sum of Products (SOP) form.
  4. Simplify the SOP expression.

WORKED EXAMPLES

Example 1 – Basic: Logic Gate Circuit

Problem: Find the output expression for the circuit:

A → NOT → AND ← B

Solution: 1. Label outputs:
- NOT gate output = A’
- AND gate inputs = A’, B 2. Write expression:
- Y = A’ · B 3. Truth table:
| A | B | A’ | Y = A’B |
|---|---|----|--------|
| 0 | 0 | 1 | 0 |
| 0 | 1 | 1 | 1 |
| 1 | 0 | 0 | 0 |
| 1 | 1 | 0 | 0 |

What we did and why: - We followed the signal flow, wrote the expression for each gate, and combined them. - The truth table verifies the output for all input combinations.

Example 2 – Medium: Boolean Simplification

Problem: Simplify: Y = (A + B)’ · (A + C) + B’C Solution: 1. Apply De Morgan’s to (A + B)’:
- (A + B)’ = A’ · B’ 2. Substitute:
- Y = (A’B’) · (A + C) + B’C 3. Distribute (A’B’):
- Y = A’B’A + A’B’C + B’C 4. Simplify A’B’A = 0 (A · A’ = 0):
- Y = A’B’C + B’C 5. Factor out B’C:
- Y = B’C (A’ + 1) = B’C (1) = B’C

What we did and why: - We used De Morgan’s first to break the complement. - Then distributed and simplified using Boolean laws (A’ + 1 = 1).

Example 3 – Exam-Style: Truth Table → Boolean Expression

Problem: Given the truth table, find the simplified Boolean expression for Y.

A B C Y
0 0 0 0
0 0 1 1
0 1 0 0
0 1 1 1
1 0 0 0
1 0 1 0
1 1 0 1
1 1 1 1

Solution: 1. Identify rows where Y = 1:
- Row 2: A’B’C
- Row 4: A’BC
- Row 7: ABC’
- Row 8: ABC 2. Write SOP expression:
- Y = A’B’C + A’BC + ABC’ + ABC 3. Simplify:
- Group terms: Y = A’C(B’ + B) + AB(C’ + C)
- (B’ + B) = 1, (C’ + C) = 1
- Y = A’C + AB

What we did and why: - We extracted product terms from the truth table. - Simplified using the complement law (B’ + B = 1).

COMMON MISTAKES

  1. MISTAKE: Confusing OR (+) with XOR (⊕).
    WHY IT HAPPENS: Both use "+" in some notations.
    CORRECT APPROACH: OR = 1 if any input is 1; XOR = 1 if inputs differ.

  2. MISTAKE: Forgetting De Morgan’s Laws for NAND/NOR.
    WHY IT HAPPENS: Treating NAND as AND instead of (AND)’.
    CORRECT APPROACH: NAND = (A·B)’, NOR = (A+B)’.

  3. MISTAKE: Incorrectly applying distributive law.
    WHY IT HAPPENS: Mixing up A + (B·C) = (A+B)(A+C).
    CORRECT APPROACH: Practice expanding both forms.

  4. MISTAKE: Overcomplicating simplification.
    WHY IT HAPPENS: Not spotting A + A’B = A + B.
    CORRECT APPROACH: Always look for redundant terms.

  5. MISTAKE: Mislabeling truth table rows.
    WHY IT HAPPENS: Not following binary order (00, 01, 10, 11).
    CORRECT APPROACH: List inputs in ascending binary order.

EXAM TRAPS

  1. TRAP: NAND/NOR gates disguised as AND/OR.
    HOW TO SPOT IT: Look for a small circle (inversion) at the output.
    HOW TO AVOID IT: Always write the expression as (AND)’ or (OR)’.

  2. TRAP: Boolean expressions with hidden simplifications.
    HOW TO SPOT IT: Long expressions with repeated terms (e.g., A + A’B).
    HOW TO AVOID IT: Apply absorption/complement laws first.

  3. TRAP: Truth tables with missing rows.
    HOW TO SPOT IT: For n inputs, check if all 2ⁿ rows are present.
    HOW TO AVOID IT: Count rows (e.g., 3 inputs → 8 rows).

1-MINUTE RECAP

"Listen up—this is your last-minute cheat sheet for logic gates and Boolean simplification. Memorise the truth tables for AND, OR, NOT, and XOR. For circuits, label every wire, write the expression step-by-step, and simplify using De Morgan’s and distributive laws. For truth tables, pick rows where output = 1, write product terms, and simplify. Watch out for NAND/NOR traps—they’re just AND/OR with an inversion. And remember: A + A’B = A + B. That’s it. Now go ace that exam!



ADVERTISEMENT