SlideShare a Scribd company logo
1 of 23
BOOLEAN ALGEBRA
COURSE CONTENT
1. Basic Operations
2. Boolean expressions and truth table
3. Basic theorems
4. Commutative, Associative, Distributive and
5. DeMorgan’s laws
6. Simplification theorems
7. Multiplying out and factoring expressions
8. Exclusive-OR and Equivalence Operations
9. The Consensus theorems
10.Algebraic simplifications of switching
expressions
11.Proving Validity of an equation
1. Basic Operations
The basic operations of Boolean algebra are conjunction, disjunction,
and negation.
These Boolean operations are expressed with the corresponding binary
operators AND, and OR and the unary operator NOT, collectively
referred to as Boolean operators.
2. Boolean expressions and truth table
Boolean expression are formed by application of the basic operation to
one or more variables or constants.
Simple expression consist of a single constant or variable more
complicated expression are formed by combining two or more other
expression using AND or OR gates.
Expression: AB’+C
2. Boolean expressions and truth table
Expression: AB’+C
A B C B’ AB’ AB’+C
0 0 0 1 0 0
0 0 1 1 0 1
0 1 0 0 0 0
0 1 1 0 0 1
1 0 0 1 1 1
1 0 1 1 1 1
1 1 0 0 0 0
1 1 1 0 0 1
2. Boolean expressions and truth table
Questions:
1. A+B=B+A
2. A’B’+A’+B’
3. D.(A’B+BC)
3. Basic Theorems:
1. Operation with 0 & 1:
 X+0=X
 X+1=X
 X.0=0
 X.1=X
2. Idempotent Law:
 X+X=X
 X.X=X
3. Basic Theorems:
3. Involution Law:
 (X’)’ =X
4. Laws of Complementarity:
 X + X’ = 1
 X . X’ = 0
4. Boolean Laws:
Commutative Law
. Commutative Law of Addition:
A + B = B + A
A B A+B
0 0 0
0 1 1
1 0 1
1 1 1
A B B+A
0 0 0
0 1 1
1 0 1
1 1 1
4. Boolean Laws:
Commutative Law
. Commutative Law of Multiplication:
A . B = B . A
A B A.B
0 0 0
0 1 0
1 0 0
1 1 1
A B B.A
0 0 0
0 1 0
1 0 0
1 1 1
4. Boolean Laws:
Associative Law
. Associative Law of Addition:
A+(B+C) = (A+B)+C
A B C B+C A+(B+C)
0 0 0 0 0
0 0 1 1 1
0 1 0 1 1
0 1 1 1 1
1 0 0 0 1
1 0 1 1 1
1 1 0 1 1
1 1 1 1 1
A B C A+B (A+B)+C
0 0 0 0 0
0 0 1 0 1
0 1 0 1 1
0 1 1 1 1
1 0 0 1 1
1 0 1 1 1
1 1 0 1 1
1 1 1 1 1
4. Boolean Laws:
Associative Law
. Associative Law of Multiplication:
A(BC) = (AB)C
A B C BC A(BC)
0 0 0 0 0
0 0 1 0 0
0 1 0 0 0
0 1 1 1 0
1 0 0 0 0
1 0 1 0 0
1 1 0 0 0
1 1 1 1 1
A B C AB (AB)C
0 0 0 0 0
0 0 1 0 0
0 1 0 0 0
0 1 1 0 0
1 0 0 0 0
1 0 1 0 0
1 1 0 1 0
1 1 1 1 1
4. Boolean Laws:
Associative Law
. Distributive Law of Addition:
A+ (BC) = (A+B)(A+C)
. Distributive Law of Multiplication:
A (B+C) = AB+AC
5. DeMorgan’s laws:
. (A + B) = A B
The Complement of a sum is equal to the product of Complement.
. (AB) = A + B
The Complement of a product is the equal to sum of Complement.
“Make Truth Table”
5. DeMorgan’s laws:
. (A + B) = A B
The Complement of a sum is equal to the product of Complement.
. (AB) = A + B
The Complement of a product is the equal to sum of Complement.
“Make Truth Table”
6. Simplification theorems:
1. Uniting:
(X+Y) (X+Y’) = X
X Y Y’ X+Y X+Y’ (X+Y) (X+Y’)
0 0 1 0 1 0
0 1 0 1 0 0
1 0 1 1 1 1
1 1 0 1 1 1
6. Simplification theorems:
2. Absorption:
X+XY=X
X Y XY X+XY
0 0 0 0
0 1 0 0
1 0 0 1
1 1 1 1
6. Simplification theorems:
2. Absorption:
X(X+Y) = X
X Y X+Y X(X+Y)
0 0 0 0
0 1 1 0
1 0 1 1
1 1 1 1
6. Simplification theorems:
3. Elimination:
. X+X’Y = X+Y
. X(X’+Y) = XY
4. Consensus:
. XY + X’Z + YZ = XY + X’Z
. (X+Y)(X’+Z)(Y+Z) = (X+Y)(X’+Z)
7. Exclusive OR and equivalent operation:
1. XOR:
. Q = (A ⊕ B) = A’.B + A.B’
2. XNOR:
. A ⊙ B = AB + ĀB ̅.
8. Algebraic simplifications of switching expressions:
Expression no 1:
A.B’ + A.B + B.C
A(B’+B) + B.C
A(0+1) + B.C
A.1 + B.C
A+B.C
Expression no 2:
A+A.B
A(1+B)
A.1
A
8. Algebraic simplifications of switching expressions:
Expression no 3:
AB+ A(B+C)+B(B+C)
AB+AB+AC+BB+BC (Distributive Law)
AB+AB+AC+B+BC (BB=B)
AB+AC+B+BC (AB+AB=AB)
AB+AC+B (B+BC=B)
B+AC (AB+B=B)
9. Proving Validity of an equation
. Construct a truth Table and evaluate both side eq.
. Manipulate one side of eq by applying various rules and theorems until its it is identical with other
side.
Expression #01
A.B’+A.B+B.C= A+B.C
Truth Table:
Expression #02
A+A.B=A
Expression #03
A.B’ +A.B + B.C = A+B.C

More Related Content

Similar to Week 2 Boolean Algebra.pptx

Similar to Week 2 Boolean Algebra.pptx (20)

NOTA TOPIK 2_SSK20152 (3).pptx
NOTA TOPIK 2_SSK20152 (3).pptxNOTA TOPIK 2_SSK20152 (3).pptx
NOTA TOPIK 2_SSK20152 (3).pptx
 
Boolean Logic.pptx
Boolean Logic.pptxBoolean Logic.pptx
Boolean Logic.pptx
 
BOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATEBOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATE
 
Report on set theory
Report on set theoryReport on set theory
Report on set theory
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
DLD PRESENTATION1.pptx
DLD PRESENTATION1.pptxDLD PRESENTATION1.pptx
DLD PRESENTATION1.pptx
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
DigitalLogic_BooleanAlgebra_P.pdf
DigitalLogic_BooleanAlgebra_P.pdfDigitalLogic_BooleanAlgebra_P.pdf
DigitalLogic_BooleanAlgebra_P.pdf
 
Top school in india
Top school in indiaTop school in india
Top school in india
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
Chapter2 (1).pptx
Chapter2 (1).pptxChapter2 (1).pptx
Chapter2 (1).pptx
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
Gerbang Logika Dasar
Gerbang Logika DasarGerbang Logika Dasar
Gerbang Logika Dasar
 
Logic Equation Simplification
Logic Equation SimplificationLogic Equation Simplification
Logic Equation Simplification
 
Computer and Network Technology (CNT) - Lecture 04
Computer and Network Technology (CNT) - Lecture 04Computer and Network Technology (CNT) - Lecture 04
Computer and Network Technology (CNT) - Lecture 04
 
DM2020 boolean algebra
DM2020 boolean algebraDM2020 boolean algebra
DM2020 boolean algebra
 
Lecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxLecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptx
 
Chapter 2.pdf
Chapter 2.pdfChapter 2.pdf
Chapter 2.pdf
 
Laws of boolean algebra
Laws of boolean algebraLaws of boolean algebra
Laws of boolean algebra
 

More from AbdulRehman703897

More from AbdulRehman703897 (10)

thightly.pptx
thightly.pptxthightly.pptx
thightly.pptx
 
Being Sensitive to Your Audience’s Needs.pptx
Being Sensitive to Your Audience’s Needs.pptxBeing Sensitive to Your Audience’s Needs.pptx
Being Sensitive to Your Audience’s Needs.pptx
 
Creating Effective Sentences.pptx
Creating Effective Sentences.pptxCreating Effective Sentences.pptx
Creating Effective Sentences.pptx
 
Presentation (1).pdf
Presentation (1).pdfPresentation (1).pdf
Presentation (1).pdf
 
our ppt.pptx
our ppt.pptxour ppt.pptx
our ppt.pptx
 
cybercrimeandsecurity-181031153257 (1).pdf
cybercrimeandsecurity-181031153257 (1).pdfcybercrimeandsecurity-181031153257 (1).pdf
cybercrimeandsecurity-181031153257 (1).pdf
 
google.pptx
google.pptxgoogle.pptx
google.pptx
 
presentationongoogle.pdf
presentationongoogle.pdfpresentationongoogle.pdf
presentationongoogle.pdf
 
Principle of Computer Operation.ppt
Principle of Computer Operation.pptPrinciple of Computer Operation.ppt
Principle of Computer Operation.ppt
 
Introduction to Html and Css.pdf
Introduction to Html and Css.pdfIntroduction to Html and Css.pdf
Introduction to Html and Css.pdf
 

Recently uploaded

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 

Recently uploaded (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 

Week 2 Boolean Algebra.pptx

  • 2. COURSE CONTENT 1. Basic Operations 2. Boolean expressions and truth table 3. Basic theorems 4. Commutative, Associative, Distributive and 5. DeMorgan’s laws 6. Simplification theorems 7. Multiplying out and factoring expressions 8. Exclusive-OR and Equivalence Operations 9. The Consensus theorems 10.Algebraic simplifications of switching expressions 11.Proving Validity of an equation
  • 3. 1. Basic Operations The basic operations of Boolean algebra are conjunction, disjunction, and negation. These Boolean operations are expressed with the corresponding binary operators AND, and OR and the unary operator NOT, collectively referred to as Boolean operators.
  • 4. 2. Boolean expressions and truth table Boolean expression are formed by application of the basic operation to one or more variables or constants. Simple expression consist of a single constant or variable more complicated expression are formed by combining two or more other expression using AND or OR gates. Expression: AB’+C
  • 5. 2. Boolean expressions and truth table Expression: AB’+C A B C B’ AB’ AB’+C 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 1 1 0 0 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 1 1 1 0 0 1
  • 6. 2. Boolean expressions and truth table Questions: 1. A+B=B+A 2. A’B’+A’+B’ 3. D.(A’B+BC)
  • 7. 3. Basic Theorems: 1. Operation with 0 & 1:  X+0=X  X+1=X  X.0=0  X.1=X 2. Idempotent Law:  X+X=X  X.X=X
  • 8. 3. Basic Theorems: 3. Involution Law:  (X’)’ =X 4. Laws of Complementarity:  X + X’ = 1  X . X’ = 0
  • 9. 4. Boolean Laws: Commutative Law . Commutative Law of Addition: A + B = B + A A B A+B 0 0 0 0 1 1 1 0 1 1 1 1 A B B+A 0 0 0 0 1 1 1 0 1 1 1 1
  • 10. 4. Boolean Laws: Commutative Law . Commutative Law of Multiplication: A . B = B . A A B A.B 0 0 0 0 1 0 1 0 0 1 1 1 A B B.A 0 0 0 0 1 0 1 0 0 1 1 1
  • 11. 4. Boolean Laws: Associative Law . Associative Law of Addition: A+(B+C) = (A+B)+C A B C B+C A+(B+C) 0 0 0 0 0 0 0 1 1 1 0 1 0 1 1 0 1 1 1 1 1 0 0 0 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 A B C A+B (A+B)+C 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 0 1 1 1 1 1 0 0 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1
  • 12. 4. Boolean Laws: Associative Law . Associative Law of Multiplication: A(BC) = (AB)C A B C BC A(BC) 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 0 1 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 1 1 1 1 A B C AB (AB)C 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 1 1 0 1 0 1 1 1 1 1
  • 13. 4. Boolean Laws: Associative Law . Distributive Law of Addition: A+ (BC) = (A+B)(A+C) . Distributive Law of Multiplication: A (B+C) = AB+AC
  • 14. 5. DeMorgan’s laws: . (A + B) = A B The Complement of a sum is equal to the product of Complement. . (AB) = A + B The Complement of a product is the equal to sum of Complement. “Make Truth Table”
  • 15. 5. DeMorgan’s laws: . (A + B) = A B The Complement of a sum is equal to the product of Complement. . (AB) = A + B The Complement of a product is the equal to sum of Complement. “Make Truth Table”
  • 16. 6. Simplification theorems: 1. Uniting: (X+Y) (X+Y’) = X X Y Y’ X+Y X+Y’ (X+Y) (X+Y’) 0 0 1 0 1 0 0 1 0 1 0 0 1 0 1 1 1 1 1 1 0 1 1 1
  • 17. 6. Simplification theorems: 2. Absorption: X+XY=X X Y XY X+XY 0 0 0 0 0 1 0 0 1 0 0 1 1 1 1 1
  • 18. 6. Simplification theorems: 2. Absorption: X(X+Y) = X X Y X+Y X(X+Y) 0 0 0 0 0 1 1 0 1 0 1 1 1 1 1 1
  • 19. 6. Simplification theorems: 3. Elimination: . X+X’Y = X+Y . X(X’+Y) = XY 4. Consensus: . XY + X’Z + YZ = XY + X’Z . (X+Y)(X’+Z)(Y+Z) = (X+Y)(X’+Z)
  • 20. 7. Exclusive OR and equivalent operation: 1. XOR: . Q = (A ⊕ B) = A’.B + A.B’ 2. XNOR: . A ⊙ B = AB + ĀB ̅.
  • 21. 8. Algebraic simplifications of switching expressions: Expression no 1: A.B’ + A.B + B.C A(B’+B) + B.C A(0+1) + B.C A.1 + B.C A+B.C Expression no 2: A+A.B A(1+B) A.1 A
  • 22. 8. Algebraic simplifications of switching expressions: Expression no 3: AB+ A(B+C)+B(B+C) AB+AB+AC+BB+BC (Distributive Law) AB+AB+AC+B+BC (BB=B) AB+AC+B+BC (AB+AB=AB) AB+AC+B (B+BC=B) B+AC (AB+B=B)
  • 23. 9. Proving Validity of an equation . Construct a truth Table and evaluate both side eq. . Manipulate one side of eq by applying various rules and theorems until its it is identical with other side. Expression #01 A.B’+A.B+B.C= A+B.C Truth Table: Expression #02 A+A.B=A Expression #03 A.B’ +A.B + B.C = A+B.C