SlideShare une entreprise Scribd logo
1  sur  19
Presentation
Data Logic Design
Group Members
• Shahban Iqbal 1421-116033
• Raja Faizan Ali 1421-116032
• Raja Usman 1421-116036
• Usama Hameed 1421-116028
Content:
• Sum of product (SOP)
• Product of sum (POS)
• Standard SOP and POS Forms
• Convert SOP to standard SOP
• Convert POS to Standard POS
• Minterms and Maxterms
Sum of Product
• The sum-of-products (SOP) form is a method
(or form) of simplifying the Boolean
expressions of logic gates.
• Sum and product derived from the symbolic
representations of the OR and AND functions.
• OR (+) , AND ( . ) , addition and multiplication.
f(A,B,C) = ABC + A’BC’
Sum
Product terms
Product of Sum
• When two or more sum terms are multiplied
by a Boolean OR operation.
• Sum terms are defined by using OR operation
and the product term is defined by using AND
operation.
f(A,B,C) = (A’+B) . (B+C’)
Product
Sum terms
Standard SOP and POS Forms
• The canonical forms are the special cases of
SOP and POS forms.
• These are also known as standard SOP and
POS forms.
Canonical Form
• In SOP or POS form, all individual terms do not
involve all literals.
• For example AB + A’BC the first product term
do not contain literal C.
• If each term in SOP or POS contain all literals
then the expression is known as standard or
canonical form.
Canonical Form
• Each individual term in the POS form is called Maxterm.
• Each individual term in the SOP form is called Minterm.
• In Minterm, we look for the functions where the output
results is “1”.
• while in Maxterm we look for function where the output
results is “0”.
• We perform Sum of minterm also known as Sum of products
(SOP) .
• We perform Product of Maxterm also known as Product of
sum (POS).
Convert SOP to standard SOP form
Step 1: Find the missing literal in each product
term if any.
Step 2: And each product term having missing
literals with terms form by ORing the literal and
its complement.
Step 3: Expends the term by applying,
distributive law and reorder the literals.
Step 4: Reduce the repeated product terms.
Because A + A = A (Theorem 1a ).
Example:
f (A,B,C) = AB + BC + AC
Step 1: Find the missing literals in each product
term.
f (A,B,C) = AB + BC + AC
Step 2: AND the product term with missing literal + its
complement.
f (A,B,C) = AB . (C+C’) + BC . (A+A’) + AC . (B+B’)
Literal B is missing
Literal A is missing
Literal C is missing
Missing literals and their complements
Step 3: Expends the term and reorder the literals.
f (A,B,C) = AB . (C+C’) + BC . (A+A’) + AC . (B+B’)
Expand & Reorder:
ABC + ABC’ + ABC + A’BC + ABC + AB’C
Step 4: Omit repeated product terms.
f(A,B,C)=ABC + ABC’ + ABC + A’BC + ABC + AB’C
f(A,B,C)= ABC + ABC’ + A’BC + AB’C
Convert POS to standard POS form
Step 1: Find the missing literal in each sum term
if any.
Step 2: OR each sum term having missing literals
with terms form by ANDing the literal and its
complement.
Step 3: Expends the term by applying,
distributive law and reorder the literals.
Step 4: Reduce the repeated product terms.
Because A + A = A (Theorem 1a ).
Example:
f (A,B,C) = (A + B) . (B + C) . (A + C)
Step 1: Find the missing literals in each sum term.
f (A,B,C) = (A + B) . (B + C) . (A + C)
Step 2: OR the sum term with missing literal . its
complement.
f (A,B,C) = (A + B)+(C.C’) + (B + C)+(A.A’) + (A + C)+(B.B’)
Literal B is missing
Literal A is missing
Literal C is missing
Missing literals and their complements
Step 3: Expends the term and reorder the literals.
f (A,B,C) = (A + B)+(C.C’) + (B + C)+(A.A’) + (A +C)+(B.B’)
Expand & Reorder:
f(A,B,C)=(A+B+C).(A+B+C’).(A+B+C).(A’+B+C).(A+B+C).(A+B’+C)
Step 4: Omit repeated sum terms.
f(A,B,C)=(A+B+C).(A+B+C’).(A+B+C).(A’+B+C).(A+B+C).(A+B’+C)
f(A,B,C)=(A+B+C).(A+B+C’).(A’+B+C).(A+B’+C)
Minterms
• Minterms are AND terms with every variable present in
either true or complemented form.
• Given that each binary variable may appear normal
(e.g., x) or complemented (e.g.x’ ), there are 2n m
• Example: Two variables (X and Y)produce 2 x 2 = 4
combinations:
XY(both normal)
XY’(X normal, Y complemented)
X’Y(X complemented, Y normal)
X’Y’(both complemented)
Thus there are four minterms of two variables.
Maxterms
• Maxterms are OR terms with every variable in true or
complemented form.
• Given that each binary variable may appear normal
(e.g., x) or complemented (e.g. x’), there are 2n
maxterms for n variables.
• Example: Two variables (X and Y) produce 2x2=4
combinations:
X+Y(both normal)
X+Y’(x normal, y complemented)
X’+Y(x complemented, y normal)
X’+Y’(both complemented)
A B C Minterms Maxterms
0 0 0 A’B’C’ = m0 A+B+C = M0
0 0 1 A’B’C = m1 A+B+C’ = M1
0 1 0 A’BC’ = m2 A+B’+C = M2
0 1 1 A’BC = m3 A+B’+C’ = M3
1 0 0 AB’C’ = m4 A’+B+C = M4
1 0 1 AB’C = m5 A’+B+C’ = M5
1 1 0 ABC’ = m6 A’+B’+C = M6
1 1 1 ABC = m7 A’+B’+C’ = M7
Minterms:
1. f(A,B,C) = A’B’C’ + A’BC’ + A’BC + ABC
= m0 + m2 + m3 + m7
= Σm(0,2,3,7)
2. f(A,B,C)= A’B’C + A’BC + AB’C + ABC
= m1 + m3 + m5 + m7
= Σm(1,3,5,7)
3. f(A,B,C)= A’B’C’ + A’BC’ + A’BC + ABC’
= m0 + m2 + m3 + m6
= Σm(0,2,3,6)
Maxterms:
1. f(A,B,C) = (A+B+C).(A+B’+C).(A+B’+C’)+(A’+B’+C’)
= M0 + M2 + M3 + M7
= ΠM(0,2,3,7)
2. f(A,B,C)= (A+B+C’).(A+B’+C’).(A+B’+C’).(A’+B’+C’)
= M1 + M3 + M5 + M7
= ΠM (1,3,5,7)
3. f(A,B,C)= (A+B+C).(A+B’+C).(A+B’+C’).(A’+B’+C)
= M0 + M2 + M3 + M6
= ΠM (0,2,3,6)

Contenu connexe

Tendances (20)

K - Map
  K - Map    K - Map
K - Map
 
Logic gates presentation
Logic gates presentationLogic gates presentation
Logic gates presentation
 
Logic gates and NAND and NOR univarsal gates
Logic gates and NAND and NOR univarsal gatesLogic gates and NAND and NOR univarsal gates
Logic gates and NAND and NOR univarsal gates
 
13 Boolean Algebra
13 Boolean Algebra13 Boolean Algebra
13 Boolean Algebra
 
BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE
 
carry look ahead adder
carry look ahead addercarry look ahead adder
carry look ahead adder
 
Sequential circuits in Digital Electronics
Sequential circuits in Digital ElectronicsSequential circuits in Digital Electronics
Sequential circuits in Digital Electronics
 
multiplexers and demultiplexers
 multiplexers and demultiplexers multiplexers and demultiplexers
multiplexers and demultiplexers
 
sequential circuits
sequential circuitssequential circuits
sequential circuits
 
Decoder Full Presentation
Decoder Full Presentation Decoder Full Presentation
Decoder Full Presentation
 
Adder ppt
Adder pptAdder ppt
Adder ppt
 
BCD ADDER
BCD ADDER BCD ADDER
BCD ADDER
 
Shift Registers
Shift RegistersShift Registers
Shift Registers
 
Karnaugh map
Karnaugh mapKarnaugh map
Karnaugh map
 
Subtractor
SubtractorSubtractor
Subtractor
 
Design half ,full Adder and Subtractor
Design half ,full Adder and SubtractorDesign half ,full Adder and Subtractor
Design half ,full Adder and Subtractor
 
Digital electronics
Digital electronicsDigital electronics
Digital electronics
 
Latches and flip flop
Latches and flip flopLatches and flip flop
Latches and flip flop
 
latches
 latches latches
latches
 
Sop and pos
Sop and posSop and pos
Sop and pos
 

Similaire à SOP POS, Minterm and Maxterm

4. Boolean Function and Their Representation.pptx
4. Boolean Function and Their Representation.pptx4. Boolean Function and Their Representation.pptx
4. Boolean Function and Their Representation.pptxNaveenPunia5
 
Module 1 ppt class.pptx
Module 1 ppt class.pptxModule 1 ppt class.pptx
Module 1 ppt class.pptxVivekNaik55
 
Module ppt class.pptx
Module ppt class.pptxModule ppt class.pptx
Module ppt class.pptxVivekNaik71
 
Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Dhananjay Lakhe
 
Principles of Combinational Logic-1
Principles of Combinational Logic-1Principles of Combinational Logic-1
Principles of Combinational Logic-1Supanna Shirguppe
 
digital logic circuits, digital component
 digital logic circuits, digital component digital logic circuits, digital component
digital logic circuits, digital componentRai University
 
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theoremsarunachalamr16
 
Boolean Function Forms
Boolean Function FormsBoolean Function Forms
Boolean Function FormsHashni T
 
Logic Simplification Using SOP
Logic Simplification Using SOPLogic Simplification Using SOP
Logic Simplification Using SOPAbi Malik
 
B.sc cs-ii-u-1.5 digital logic circuits, digital component
B.sc cs-ii-u-1.5 digital logic circuits, digital componentB.sc cs-ii-u-1.5 digital logic circuits, digital component
B.sc cs-ii-u-1.5 digital logic circuits, digital componentRai University
 
Boolean expression org.
Boolean expression org.Boolean expression org.
Boolean expression org.mshoaib15
 
Logic simplification sop and pos forms
Logic simplification sop and pos formsLogic simplification sop and pos forms
Logic simplification sop and pos formsManesh T
 

Similaire à SOP POS, Minterm and Maxterm (20)

Digital Electronics
Digital ElectronicsDigital Electronics
Digital Electronics
 
Minimization Technique .ppt
 Minimization Technique .ppt Minimization Technique .ppt
Minimization Technique .ppt
 
4. Boolean Function and Their Representation.pptx
4. Boolean Function and Their Representation.pptx4. Boolean Function and Their Representation.pptx
4. Boolean Function and Their Representation.pptx
 
BOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATEBOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATE
 
Module 1 ppt class.pptx
Module 1 ppt class.pptxModule 1 ppt class.pptx
Module 1 ppt class.pptx
 
Module ppt class.pptx
Module ppt class.pptxModule ppt class.pptx
Module ppt class.pptx
 
Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation
 
Simplification
SimplificationSimplification
Simplification
 
Principles of Combinational Logic-1
Principles of Combinational Logic-1Principles of Combinational Logic-1
Principles of Combinational Logic-1
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
digital logic circuits, digital component
 digital logic circuits, digital component digital logic circuits, digital component
digital logic circuits, digital component
 
B sc ii sem unit 2(b) ba
B sc ii sem unit 2(b) baB sc ii sem unit 2(b) ba
B sc ii sem unit 2(b) ba
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems
18 pc09 1.2_ digital logic gates _ boolean algebra_basic theorems
 
Boolean Function Forms
Boolean Function FormsBoolean Function Forms
Boolean Function Forms
 
Logic Simplification Using SOP
Logic Simplification Using SOPLogic Simplification Using SOP
Logic Simplification Using SOP
 
B.sc cs-ii-u-1.5 digital logic circuits, digital component
B.sc cs-ii-u-1.5 digital logic circuits, digital componentB.sc cs-ii-u-1.5 digital logic circuits, digital component
B.sc cs-ii-u-1.5 digital logic circuits, digital component
 
9402730.ppt
9402730.ppt9402730.ppt
9402730.ppt
 
Boolean expression org.
Boolean expression org.Boolean expression org.
Boolean expression org.
 
Logic simplification sop and pos forms
Logic simplification sop and pos formsLogic simplification sop and pos forms
Logic simplification sop and pos forms
 

Plus de Self-employed

Plus de Self-employed (6)

Cultural variables
Cultural variablesCultural variables
Cultural variables
 
System analysis
System analysisSystem analysis
System analysis
 
Census
CensusCensus
Census
 
Interjection
InterjectionInterjection
Interjection
 
Modem technology
Modem technologyModem technology
Modem technology
 
Preposition presentation
Preposition presentationPreposition presentation
Preposition presentation
 

Dernier

Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxPoojaSen20
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 

Dernier (20)

Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptxCulture Uniformity or Diversity IN SOCIOLOGY.pptx
Culture Uniformity or Diversity IN SOCIOLOGY.pptx
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 

SOP POS, Minterm and Maxterm

  • 2. Group Members • Shahban Iqbal 1421-116033 • Raja Faizan Ali 1421-116032 • Raja Usman 1421-116036 • Usama Hameed 1421-116028
  • 3. Content: • Sum of product (SOP) • Product of sum (POS) • Standard SOP and POS Forms • Convert SOP to standard SOP • Convert POS to Standard POS • Minterms and Maxterms
  • 4. Sum of Product • The sum-of-products (SOP) form is a method (or form) of simplifying the Boolean expressions of logic gates. • Sum and product derived from the symbolic representations of the OR and AND functions. • OR (+) , AND ( . ) , addition and multiplication. f(A,B,C) = ABC + A’BC’ Sum Product terms
  • 5. Product of Sum • When two or more sum terms are multiplied by a Boolean OR operation. • Sum terms are defined by using OR operation and the product term is defined by using AND operation. f(A,B,C) = (A’+B) . (B+C’) Product Sum terms
  • 6. Standard SOP and POS Forms • The canonical forms are the special cases of SOP and POS forms. • These are also known as standard SOP and POS forms.
  • 7. Canonical Form • In SOP or POS form, all individual terms do not involve all literals. • For example AB + A’BC the first product term do not contain literal C. • If each term in SOP or POS contain all literals then the expression is known as standard or canonical form.
  • 8. Canonical Form • Each individual term in the POS form is called Maxterm. • Each individual term in the SOP form is called Minterm. • In Minterm, we look for the functions where the output results is “1”. • while in Maxterm we look for function where the output results is “0”. • We perform Sum of minterm also known as Sum of products (SOP) . • We perform Product of Maxterm also known as Product of sum (POS).
  • 9. Convert SOP to standard SOP form Step 1: Find the missing literal in each product term if any. Step 2: And each product term having missing literals with terms form by ORing the literal and its complement. Step 3: Expends the term by applying, distributive law and reorder the literals. Step 4: Reduce the repeated product terms. Because A + A = A (Theorem 1a ).
  • 10. Example: f (A,B,C) = AB + BC + AC Step 1: Find the missing literals in each product term. f (A,B,C) = AB + BC + AC Step 2: AND the product term with missing literal + its complement. f (A,B,C) = AB . (C+C’) + BC . (A+A’) + AC . (B+B’) Literal B is missing Literal A is missing Literal C is missing Missing literals and their complements
  • 11. Step 3: Expends the term and reorder the literals. f (A,B,C) = AB . (C+C’) + BC . (A+A’) + AC . (B+B’) Expand & Reorder: ABC + ABC’ + ABC + A’BC + ABC + AB’C Step 4: Omit repeated product terms. f(A,B,C)=ABC + ABC’ + ABC + A’BC + ABC + AB’C f(A,B,C)= ABC + ABC’ + A’BC + AB’C
  • 12. Convert POS to standard POS form Step 1: Find the missing literal in each sum term if any. Step 2: OR each sum term having missing literals with terms form by ANDing the literal and its complement. Step 3: Expends the term by applying, distributive law and reorder the literals. Step 4: Reduce the repeated product terms. Because A + A = A (Theorem 1a ).
  • 13. Example: f (A,B,C) = (A + B) . (B + C) . (A + C) Step 1: Find the missing literals in each sum term. f (A,B,C) = (A + B) . (B + C) . (A + C) Step 2: OR the sum term with missing literal . its complement. f (A,B,C) = (A + B)+(C.C’) + (B + C)+(A.A’) + (A + C)+(B.B’) Literal B is missing Literal A is missing Literal C is missing Missing literals and their complements
  • 14. Step 3: Expends the term and reorder the literals. f (A,B,C) = (A + B)+(C.C’) + (B + C)+(A.A’) + (A +C)+(B.B’) Expand & Reorder: f(A,B,C)=(A+B+C).(A+B+C’).(A+B+C).(A’+B+C).(A+B+C).(A+B’+C) Step 4: Omit repeated sum terms. f(A,B,C)=(A+B+C).(A+B+C’).(A+B+C).(A’+B+C).(A+B+C).(A+B’+C) f(A,B,C)=(A+B+C).(A+B+C’).(A’+B+C).(A+B’+C)
  • 15. Minterms • Minterms are AND terms with every variable present in either true or complemented form. • Given that each binary variable may appear normal (e.g., x) or complemented (e.g.x’ ), there are 2n m • Example: Two variables (X and Y)produce 2 x 2 = 4 combinations: XY(both normal) XY’(X normal, Y complemented) X’Y(X complemented, Y normal) X’Y’(both complemented) Thus there are four minterms of two variables.
  • 16. Maxterms • Maxterms are OR terms with every variable in true or complemented form. • Given that each binary variable may appear normal (e.g., x) or complemented (e.g. x’), there are 2n maxterms for n variables. • Example: Two variables (X and Y) produce 2x2=4 combinations: X+Y(both normal) X+Y’(x normal, y complemented) X’+Y(x complemented, y normal) X’+Y’(both complemented)
  • 17. A B C Minterms Maxterms 0 0 0 A’B’C’ = m0 A+B+C = M0 0 0 1 A’B’C = m1 A+B+C’ = M1 0 1 0 A’BC’ = m2 A+B’+C = M2 0 1 1 A’BC = m3 A+B’+C’ = M3 1 0 0 AB’C’ = m4 A’+B+C = M4 1 0 1 AB’C = m5 A’+B+C’ = M5 1 1 0 ABC’ = m6 A’+B’+C = M6 1 1 1 ABC = m7 A’+B’+C’ = M7
  • 18. Minterms: 1. f(A,B,C) = A’B’C’ + A’BC’ + A’BC + ABC = m0 + m2 + m3 + m7 = Σm(0,2,3,7) 2. f(A,B,C)= A’B’C + A’BC + AB’C + ABC = m1 + m3 + m5 + m7 = Σm(1,3,5,7) 3. f(A,B,C)= A’B’C’ + A’BC’ + A’BC + ABC’ = m0 + m2 + m3 + m6 = Σm(0,2,3,6)
  • 19. Maxterms: 1. f(A,B,C) = (A+B+C).(A+B’+C).(A+B’+C’)+(A’+B’+C’) = M0 + M2 + M3 + M7 = ΠM(0,2,3,7) 2. f(A,B,C)= (A+B+C’).(A+B’+C’).(A+B’+C’).(A’+B’+C’) = M1 + M3 + M5 + M7 = ΠM (1,3,5,7) 3. f(A,B,C)= (A+B+C).(A+B’+C).(A+B’+C’).(A’+B’+C) = M0 + M2 + M3 + M6 = ΠM (0,2,3,6)