Difficulty: Easy
Correct Answer: A′B′ + AB
Explanation:
Introduction / Context:Exclusive-NOR (XNOR) outputs HIGH when its inputs are equal (both 0 or both 1) and LOW when they differ. Recognizing its Boolean identity is essential for algebraic manipulation, schematic implementation, and verification against truth tables or Karnaugh maps.
Given Data / Assumptions:
Concept / Approach:The definition “equal → HIGH” translates directly to the sum of the two equal cases: A = 0, B = 0 and A = 1, B = 1. In minterm form, these are A′B′ and AB. Therefore, XNOR = A′B′ + AB. The complement of this (A′B + AB′) is the XOR function (different → HIGH).
Step-by-Step Solution:
List truth table rows where output should be 1: (A,B) = (0,0) and (1,1).Write minterms: A′B′ and AB.Sum the minterms: F = A′B′ + AB.Conclude that this is the XNOR identity.Verification / Alternative check:Karnaugh map placement of the 1s at (00) and (11) groups to yield A′B′ + AB; algebraically, note that XNOR = (A ⊙ B)′ = (A′B + AB′)′ which by De Morgan simplifies to A′B′ + AB.
Why Other Options Are Wrong:
Common Pitfalls:Mixing up XOR and XNOR; forgetting that XNOR is the complement of XOR and represents equality; misapplying De Morgan transformations.
Final Answer:A′B′ + AB
Discussion & Comments