Learn how digital circuits use binary signals and logic gates to process information
Digital circuits operate using binary (base-2) numbers with only two states:
Binary to Decimal Conversion:
Binary 1011 = 1×2³ + 0×2² + 1×2¹ + 1×2⁰ = 8 + 0 + 2 + 1 = 11 (decimal)
Basic building blocks of digital circuits:
Mathematical notation for logic operations:
• AND: A · B or A ∧ B
• OR: A + B or A ∨ B
• NOT: Ā or ¬A
De Morgan's Laws:
¬(A ∧ B) = ¬A ∨ ¬B
¬(A ∨ B) = ¬A ∧ ¬B