ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Digital Logic Design
    CC-110
    Progress0 / 63 topics
    Topics
    1. Introduction to Digital Systems2. Number Systems3. Introduction to Boolean Algebra4. Basic theorems and properties of Boolean Algebra5. Boolean Functions6. Logic Gates7. NAND and NOR Implementation8. Representation of Function in Sum of Minterms or Product of Maxterms9. Simplification of Boolean function using Karnaugh Map10. Don't care Conditions11. The Tabulation Method12. Introduction to Combinational Logic13. Design of Adders14. Design of Subtractors15. Code Convertors16. Analysis Procedure of Combinational Circuits17. Binary Parallel Adders18. Decimal Adders19. Magnitude Comparator20. Decoders and its applications21. Multiplexers22. Demultiplexers23. Encoders24. ROM25. Programmable Logic Array (PLA)26. Introduction to Sequential Circuits27. Basic Flip Flop28. Clocked RS Flip Flop29. Clocked D Flip Flop30. Clocked JK Flip Flop31. Clocked T Flip Flop32. Analysis of Clocked Sequential Circuits33. State Reduction and Assignment34. Flip Flop Excitation tables35. Design Procedure36. Design of Counters37. Design with State Equations38. Introduction to Registers39. Shift Registers40. Ripple Counters41. Synchronous Counters42. Timing Sequences43. Memory Unit44. Random Access Memory45. Introduction to Programmable Logic Devices (CPLD, FPGA)46. Lab Assignments using tools such as Verilog HDL/VHDL, MultiSim47. Familiarization with Digital Electronic Trainer48. Logic gates operations49. Half Adder Operation50. Full Adder Operation51. Half Subtractor Operation52. Full Subtractor Operation53. 7-Segment Display Operation54. Decoder Operation55. BCD To 7-Segment Display56. Multiplexer Operation57. Using Multiplexer and Demultiplexer/Decoder58. Multiplexing 7-Segment Displays59. Comparator Operations60. D Latch and Flip-Flop Operation61. Latching BCD Data for Displaying On 7-Segment Display62. JK Flip-Flop Operation63. Random Access Memories
    CC-110›Basic theorems and properties of Boolean Algebra
    Digital Logic DesignTopic 4 of 63

    Basic theorems and properties of Boolean Algebra

    8 minread
    1,410words
    Intermediatelevel

    The basic theorems and properties of Boolean algebra are essential for simplifying and manipulating Boolean expressions. These laws and properties help in the design and analysis of digital circuits. Here is a list of the key theorems and properties:

    1. Identity Law

    • OR Identity:
      A+0=AA + 0 = AA+0=A
      Adding 0 to a variable does not change its value.

    • AND Identity:
      A⋅1=AA \cdot 1 = AA⋅1=A
      Multiplying a variable by 1 does not change its value.

    2. Null Law (or Domination Law)

    • OR Null Law:
      A+1=1A + 1 = 1A+1=1
      Adding 1 to any variable always results in 1.

    • AND Null Law:
      A⋅0=0A \cdot 0 = 0A⋅0=0
      Multiplying any variable by 0 always results in 0.

    3. Complement Law

    • OR Complement Law:
      A+¬A=1A + \neg A = 1A+¬A=1
      A variable ORed with its complement always equals 1.

    • AND Complement Law:
      A⋅¬A=0A \cdot \neg A = 0A⋅¬A=0
      A variable ANDed with its complement always equals 0.

    4. Idempotent Law

    • OR Idempotent Law:
      A+A=AA + A = AA+A=A
      ORing a variable with itself does not change its value.

    • AND Idempotent Law:
      A⋅A=AA \cdot A = AA⋅A=A
      ANDing a variable with itself does not change its value.

    5. Domination Law

    • OR Domination Law:
      A+0=AA + 0 = AA+0=A
      This law is similar to the Identity Law and reiterates that adding 0 doesn’t change the value of a variable.

    • AND Domination Law:
      A⋅1=AA \cdot 1 = AA⋅1=A
      This law is also a repeat of the Identity Law and states that multiplying by 1 doesn’t change the value of a variable.

    6. Distributive Law

    • Distributive Law for AND over OR:
      A⋅(B+C)=(A⋅B)+(A⋅C)A \cdot (B + C) = (A \cdot B) + (A \cdot C)A⋅(B+C)=(A⋅B)+(A⋅C)
      AND distributes over OR, meaning you can multiply a variable over the terms inside parentheses.

    • Distributive Law for OR over AND:
      A+(B⋅C)=(A+B)⋅(A+C)A + (B \cdot C) = (A + B) \cdot (A + C)A+(B⋅C)=(A+B)⋅(A+C)
      OR distributes over AND, allowing you to expand the expression by factoring.

    7. Associative Law

    • OR Associative Law:
      (A+B)+C=A+(B+C)(A + B) + C = A + (B + C)(A+B)+C=A+(B+C)
      The order of OR operations does not affect the result.

    • AND Associative Law:
      (A⋅B)⋅C=A⋅(B⋅C)(A \cdot B) \cdot C = A \cdot (B \cdot C)(A⋅B)⋅C=A⋅(B⋅C)
      The order of AND operations does not affect the result.

    8. Commutative Law

    • OR Commutative Law:
      A+B=B+AA + B = B + AA+B=B+A
      The order of operands in an OR operation does not matter.

    • AND Commutative Law:
      A⋅B=B⋅AA \cdot B = B \cdot AA⋅B=B⋅A
      The order of operands in an AND operation does not matter.

    9. Absorption Law

    • Absorption Law for OR:
      A+(A⋅B)=AA + (A \cdot B) = AA+(A⋅B)=A
      If a variable is ORed with the AND of itself and another variable, it simplifies to the original variable.

    • Absorption Law for AND:
      A⋅(A+B)=AA \cdot (A + B) = AA⋅(A+B)=A
      If a variable is ANDed with the OR of itself and another variable, it simplifies to the original variable.

    10. Double Negation Law

    • Double Negation Law:
      ¬(¬A)=A\neg(\neg A) = A¬(¬A)=A
      Negating a variable twice results in the original variable.

    11. De Morgan’s Theorems

    De Morgan’s laws are used to express the negation of complex Boolean expressions in terms of simpler expressions. They help in simplifying expressions involving NOT operations.

    • De Morgan’s First Law:
      ¬(A⋅B)=¬A+¬B\neg (A \cdot B) = \neg A + \neg B¬(A⋅B)=¬A+¬B
      The negation of an AND operation is the OR of the negations.

    • De Morgan’s Second Law:
      ¬(A+B)=¬A⋅¬B\neg (A + B) = \neg A \cdot \neg B¬(A+B)=¬A⋅¬B
      The negation of an OR operation is the AND of the negations.

    12. Consensus Theorem

    The consensus theorem simplifies expressions that involve terms that appear as both products and sums:

    • Consensus Theorem:
      A⋅B+¬A⋅C+B⋅C=A⋅B+¬A⋅CA \cdot B + \neg A \cdot C + B \cdot C = A \cdot B + \neg A \cdot CA⋅B+¬A⋅C+B⋅C=A⋅B+¬A⋅C
      This theorem removes the redundancy of B⋅CB \cdot CB⋅C when the other two terms are already present in the expression.

    13. Redundancy Theorem

    This theorem deals with removing unnecessary terms from Boolean expressions:

    • Redundancy Theorem:
      A+A⋅B=AA + A \cdot B = AA+A⋅B=A
      If a variable is ORed with the AND of itself and another variable, the result is just the variable itself.

    14. Involution Law

    The involution law is the property that relates a variable to itself when it undergoes two negations.

    • Involution Law:
      ¬(¬A)=A\neg(\neg A) = A¬(¬A)=A
      Negating a variable twice returns the original variable.

    15. Simplification Theorem

    • Simplification Theorem:
      Simplifying Boolean expressions involves removing redundant operations and terms by applying the laws of Boolean algebra.

    Example of Boolean Expression Simplification

    Consider the expression:
    A⋅(A+B)A \cdot (A + B)A⋅(A+B)

    Using the Absorption Law:
    A⋅(A+B)=AA \cdot (A + B) = AA⋅(A+B)=A

    Applications of Boolean Theorems and Properties

    1. Circuit Optimization:
      Simplifying Boolean expressions helps reduce the number of logic gates needed in a circuit, improving both cost and performance.

    2. Digital Logic Design:
      These laws and properties are crucial in the design of combinational and sequential logic circuits, as they help design efficient logic gates and systems.

    3. Error Detection and Correction:
      Boolean algebra is often used in error detection and correction systems like parity checks and cyclic redundancy checks (CRC).

    4. Simplification of Truth Tables:
      Boolean algebra can be used to minimize the complexity of truth tables for designing simpler logic circuits.

    In summary, these theorems and properties form the foundation of Boolean algebra and are essential for anyone working with digital circuits, logic gates, and hardware design. By applying these laws, you can simplify expressions and make more efficient logic circuit designs.

    Previous topic 3
    Introduction to Boolean Algebra
    Next topic 5
    Boolean Functions

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time8 min
      Word count1,410
      Code examples0
      DifficultyIntermediate