SlideShare a Scribd company logo
1 of 33
BY::: 
ROJIN KHADKA
◦ Logic gates 
◦ Boolean algebra
INTRODUCTION: 
 A logic gate is an electronic circuit/device which 
makes logic decisions. 
 Most logic gates are two inputs and one outputs. 
 At any given moment, every terminal is in one of 
the two binary conditions low (0) or high(1), 
represented by different voltage levels.
 The logic state of a terminal can, and generally 
does, change often as the circuit processes data. 
 In most logic gates, the low state is approximately 
0v, while the high state is approximately 5v. 
 Logic gates are also called as switches. with the 
advent of integrate circuits, switches have been 
replaced by TTL circuit and CMOS circuits. 
 symbolic logic uses values, variables and 
operations.
TYPES OF LOGIC GATES: 
The most common logic gates used are, 
Basic gates 
1.OR 
2.AND 
3.NOT 
Universal gates 
1.NAND 
2.NOR 
 X-OR or Exclusive-OR
 Logic gates have special symbols: 
OR gate 
X 
Y 
Z = X + Y 
 And waveform behavior in time as follows: 
X 0 0 1 1 
Y 0 1 0 1 
(AND) X · Y 0 0 0 1 
(OR) X + Y 0 1 1 1 
(NOT) X 1 1 0 0 
X 
Y 
Z = X · Y 
AND gate 
X Z = X 
NOT gate or 
inverter
OR GATE: 
 The OR gate has two or more inputs and one 
output. 
 Its output is true if at least one input is true. 
SYMBOL:
 The OR operation may be defined as “Y equals A 
OR B”. 
Y=A+B 
Where, the symbol ‘+’ indicates the OR concept. 
 Each terminal may assume two possible values 
either zero or one.
TRUTH TABLE: 
A B A+B 
0 0 0 
0 1 1 
1 0 1 
1 1 1
AND GATE: 
 The AND gate is also a basic kind of digital circuit. 
 It has also two or more inputs and one output. 
SYMBOL:
 The AND operation for the output is defined as, “y 
equals A AND B”. 
Y=A.B 
 Where ‘.’ symbol indicates AND operation. 
 The output of the AND gate is one only when both 
inputs are one.
TRUTH TABLE: 
A B A+B 
0 0 0 
0 1 0 
1 0 0 
1 1 1
NOT GATE or Inverter Gate: 
 A NOT gate is a basic gate that has one input and 
one output. 
SYMBOL:
 The NOT circuit serves to invert the polarity of any 
input pulse apply to it. 
 If A is the input then output “Y equals to NOT A or 
Ā. 
Y= Ā 
Where, the bar symbol over A represents NOT or 
compliment operation
TRUTH TABLE: 
A Ā 
0 1 
1 0
NAND GATE: 
 The NAND gate is known as an universal gate 
because it can be used to realize all the three 
basic functions of OR, AND & NOT gates. 
 It is also called as NOT-AND gate. 
SYMBOL:
 The Boolean expression for the NAND operation 
is given by, 
Y=A.B
TRUTH TABLE: 
A B AB 
0 0 1 
0 1 1 
1 0 1 
1 1 0
NOR GATE: 
 The NOR gate is also a universal gate and it is a 
combination of a NOT and OR gates. 
SYMBOL:
 The Boolean expression for NOR gate is given 
by, 
Y=A+B
TRUTH TABLE: 
A B A+B 
0 0 1 
0 1 0 
1 0 0 
1 1 0
Exclusive OR or X-OR GATE: 
 The X-OR gate is a logic gate having two inputs 
with and single output. 
SYMBOL:
 The Boolean expression for the X-OR gate is 
given by, 
Y=A+B 
Where + indicates the exclusive OR operation and 
in terms of expression it can be expanded as 
Y=AB+AB 
+ 
+
TRUTH TABLE: 
A B AB+AB 
0 0 0 
0 1 1 
1 0 1 
1 1 0
ADVANTAGES OF LOGIC GATES: 
 It is generally very easy to reliably distinguish 
between logic 1 or logic 0. 
 The simplest flip-flop is the RS which is made up 
of two gates. 
 K-map is also designed by using logic gates. That 
simplification helps when you start to connect 
gates to implement the functions. 
 These gates are also used in TTL and CMOS 
circuitary.
 Boolean Algebra derives its name from the 
mathematician George Boole in 1854 in his book 
“An investigation of the laws of taught”. 
 Instead of usual algebra of numbers Boolean 
algebra is the algebra of truth values 0 or 1. 
 In order to fully understand this the relation 
between the AND gate, OR gate & NOT gate 
operations should be appreciated.
POSTULATES OF BOOLEAN ALGEBRA: 
 The Boolean algebra has its own set of 
fundamental laws which differ from the ordinary 
algebra. They are, 
OR laws: 
 A+0=A 
 A+1=1 
 A+A=A 
 A+Ā=1
AND laws: 
 A.0=0 
 A.A=A 
 A.1=A 
 A.Ā=0 
NOT laws: 
 0=1 
 1=0 
 If A=0 then Ā=1 
 If A=1 then Ā=0 
 Ā=A
Commutative law: 
 A+B=B+A 
 A.B=B.A 
Associative laws: 
 A+(B+C)=(A+B)+C 
 A.(B.C)=(A.B).C 
 (A+B)+(C+D)=A+B+C+D
Distributive laws: 
 A.(B+C)=(A.B)+(A.C) 
 (A+B).C=A.C+B.C 
 A+ĀB=A+B 
 A+B.C=(A+B).(A+C) 
Absorptive laws: 
 A+A.B=A 
 A.(A+B)=A 
 A.(Ā+B)=AB 
Demorgan’s laws: 
 A+B=A.B 
 A.B=A+B
EXAMPLE: 
(AB+C)(AB+D)=AB+CD 
 AB.AB+AB.D+C.AB+C.D 
 AB+ABD+ABC+CD {A.A=A} 
 AB(1+D)+ABC+CD {1+A=1} 
 AB+ABC+CD 
 AB(1+C)+CD 
 AB+CD
Advantages: 
 If we use Boolean algebra for your logical problem 
you can save more gates and operations. so your 
design will be cheaper, more comprehensible, 
more serviceable . 
 It allows logical steps quickly and repeatedly. 
Disadvantages: 
 Can only arrive at direct results not implied once.
boolean algrebra and logic gates in short

More Related Content

What's hot

multiplexers and demultiplexers
 multiplexers and demultiplexers multiplexers and demultiplexers
multiplexers and demultiplexersUnsa Shakir
 
Universal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliUniversal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliDipayan Sarkar
 
Register transfer language & its micro operations
Register transfer language & its micro operationsRegister transfer language & its micro operations
Register transfer language & its micro operationsLakshya Sharma
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraelfeds916
 
2nd PUC computer science chapter 2 boolean algebra 1
2nd PUC computer science chapter 2  boolean algebra 12nd PUC computer science chapter 2  boolean algebra 1
2nd PUC computer science chapter 2 boolean algebra 1Aahwini Esware gowda
 
CSEC Physics Review - Introduction To Logic Gates
CSEC Physics Review - Introduction To Logic GatesCSEC Physics Review - Introduction To Logic Gates
CSEC Physics Review - Introduction To Logic GatesKevin Small
 
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic CircuitsFYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic CircuitsArti Parab Academics
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplificationUnsa Shakir
 
Latches and flip flop
Latches and flip flopLatches and flip flop
Latches and flip flopShuaib Hotak
 
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 gatesDhwanil Champaneria
 
Logical micro-operations
Logical micro-operationsLogical micro-operations
Logical micro-operationsVATSAL TRIVEDI
 

What's hot (20)

multiplexers and demultiplexers
 multiplexers and demultiplexers multiplexers and demultiplexers
multiplexers and demultiplexers
 
Universal Gates - Aneesa N Ali
Universal Gates - Aneesa N AliUniversal Gates - Aneesa N Ali
Universal Gates - Aneesa N Ali
 
Register transfer language & its micro operations
Register transfer language & its micro operationsRegister transfer language & its micro operations
Register transfer language & its micro operations
 
Universal gate BY Abdullah
Universal gate BY AbdullahUniversal gate BY Abdullah
Universal gate BY Abdullah
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebra
 
Logic Gates
Logic GatesLogic Gates
Logic Gates
 
Minimization Technique .ppt
 Minimization Technique .ppt Minimization Technique .ppt
Minimization Technique .ppt
 
Boolean algebra and Logic gates
Boolean algebra and Logic gatesBoolean algebra and Logic gates
Boolean algebra and Logic gates
 
Multiplexers
MultiplexersMultiplexers
Multiplexers
 
2nd PUC computer science chapter 2 boolean algebra 1
2nd PUC computer science chapter 2  boolean algebra 12nd PUC computer science chapter 2  boolean algebra 1
2nd PUC computer science chapter 2 boolean algebra 1
 
Combinational circuit
Combinational circuitCombinational circuit
Combinational circuit
 
CSEC Physics Review - Introduction To Logic Gates
CSEC Physics Review - Introduction To Logic GatesCSEC Physics Review - Introduction To Logic Gates
CSEC Physics Review - Introduction To Logic Gates
 
Multiplexers & Demultiplexers
Multiplexers & DemultiplexersMultiplexers & Demultiplexers
Multiplexers & Demultiplexers
 
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic CircuitsFYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
FYBSC IT Digital Electronics Unit III Chapter I Combinational Logic Circuits
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplification
 
Latches and flip flop
Latches and flip flopLatches and flip flop
Latches and flip flop
 
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
 
Basic Logic gates
Basic Logic gatesBasic Logic gates
Basic Logic gates
 
Logical micro-operations
Logical micro-operationsLogical micro-operations
Logical micro-operations
 
Digital Logic Design
Digital Logic Design Digital Logic Design
Digital Logic Design
 

Similar to boolean algrebra and logic gates in short

Digital logic gates and Boolean algebra
Digital logic gates and Boolean algebraDigital logic gates and Boolean algebra
Digital logic gates and Boolean algebraSARITHA REDDY
 
1,basic and derived logic gates.pdf
1,basic and derived logic gates.pdf1,basic and derived logic gates.pdf
1,basic and derived logic gates.pdfDamotTesfaye
 
Logic gates ,flip flop ,registers and
Logic gates ,flip flop ,registers andLogic gates ,flip flop ,registers and
Logic gates ,flip flop ,registers andMuruganandhanD
 
De Mornan Theory, Boolean Algebra, 7 logical get, truth table,
De Mornan Theory, Boolean Algebra, 7 logical get, truth table,  De Mornan Theory, Boolean Algebra, 7 logical get, truth table,
De Mornan Theory, Boolean Algebra, 7 logical get, truth table, DharmaKumariBhandari
 
BOOLEAN ALGEBRA & LOGIC GATES.ppt
BOOLEAN ALGEBRA & LOGIC GATES.pptBOOLEAN ALGEBRA & LOGIC GATES.ppt
BOOLEAN ALGEBRA & LOGIC GATES.pptdhanamalathieee
 
solids_and_semiconductor_devices_4.ppt
solids_and_semiconductor_devices_4.pptsolids_and_semiconductor_devices_4.ppt
solids_and_semiconductor_devices_4.pptUmeshPatil149
 
Solids_And_Semiconductor_Devices_4.ppt
Solids_And_Semiconductor_Devices_4.pptSolids_And_Semiconductor_Devices_4.ppt
Solids_And_Semiconductor_Devices_4.pptJosephMuez2
 
ICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptxICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptxChristianVelchez2
 
Semiconductor Devices Class 12 Part-4
Semiconductor Devices Class 12 Part-4Semiconductor Devices Class 12 Part-4
Semiconductor Devices Class 12 Part-4Self-employed
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxRithinA1
 
Presentation on Logic Fundamental by Anupam
Presentation on Logic Fundamental by AnupamPresentation on Logic Fundamental by Anupam
Presentation on Logic Fundamental by AnupamAnupamAkib
 
Chapter 2 Boolean Algebra.pptx
Chapter 2 Boolean Algebra.pptxChapter 2 Boolean Algebra.pptx
Chapter 2 Boolean Algebra.pptxHazardRhenz1
 
Chapter 4. logic function and boolean algebra
Chapter 4. logic function and boolean algebraChapter 4. logic function and boolean algebra
Chapter 4. logic function and boolean algebraAshish KC
 
Lecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxLecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxWilliamJosephat1
 
Ass.(2)applications of logic u.s d.m
Ass.(2)applications of logic u.s d.mAss.(2)applications of logic u.s d.m
Ass.(2)applications of logic u.s d.mSyed Umair
 

Similar to boolean algrebra and logic gates in short (20)

Digital logic gates and Boolean algebra
Digital logic gates and Boolean algebraDigital logic gates and Boolean algebra
Digital logic gates and Boolean algebra
 
1,basic and derived logic gates.pdf
1,basic and derived logic gates.pdf1,basic and derived logic gates.pdf
1,basic and derived logic gates.pdf
 
Logic gates ,flip flop ,registers and
Logic gates ,flip flop ,registers andLogic gates ,flip flop ,registers and
Logic gates ,flip flop ,registers and
 
De Mornan Theory, Boolean Algebra, 7 logical get, truth table,
De Mornan Theory, Boolean Algebra, 7 logical get, truth table,  De Mornan Theory, Boolean Algebra, 7 logical get, truth table,
De Mornan Theory, Boolean Algebra, 7 logical get, truth table,
 
BOOLEAN ALGEBRA & LOGIC GATES.ppt
BOOLEAN ALGEBRA & LOGIC GATES.pptBOOLEAN ALGEBRA & LOGIC GATES.ppt
BOOLEAN ALGEBRA & LOGIC GATES.ppt
 
9. logic gates._rr
9. logic gates._rr9. logic gates._rr
9. logic gates._rr
 
Boolean Algebra.pptx
 Boolean Algebra.pptx Boolean Algebra.pptx
Boolean Algebra.pptx
 
Digital logic
Digital logicDigital logic
Digital logic
 
Chapter_11.pdf
Chapter_11.pdfChapter_11.pdf
Chapter_11.pdf
 
solids_and_semiconductor_devices_4.ppt
solids_and_semiconductor_devices_4.pptsolids_and_semiconductor_devices_4.ppt
solids_and_semiconductor_devices_4.ppt
 
Solids_And_Semiconductor_Devices_4.ppt
Solids_And_Semiconductor_Devices_4.pptSolids_And_Semiconductor_Devices_4.ppt
Solids_And_Semiconductor_Devices_4.ppt
 
ICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptxICT Basic Logic Gates Lessons.pptx
ICT Basic Logic Gates Lessons.pptx
 
Semiconductor Devices Class 12 Part-4
Semiconductor Devices Class 12 Part-4Semiconductor Devices Class 12 Part-4
Semiconductor Devices Class 12 Part-4
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptx
 
Presentation on Logic Fundamental by Anupam
Presentation on Logic Fundamental by AnupamPresentation on Logic Fundamental by Anupam
Presentation on Logic Fundamental by Anupam
 
Chapter 2 Boolean Algebra.pptx
Chapter 2 Boolean Algebra.pptxChapter 2 Boolean Algebra.pptx
Chapter 2 Boolean Algebra.pptx
 
Chapter 4. logic function and boolean algebra
Chapter 4. logic function and boolean algebraChapter 4. logic function and boolean algebra
Chapter 4. logic function and boolean algebra
 
Lecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptxLecture 04-Digital logic gates.pptx
Lecture 04-Digital logic gates.pptx
 
Ass.(2)applications of logic u.s d.m
Ass.(2)applications of logic u.s d.mAss.(2)applications of logic u.s d.m
Ass.(2)applications of logic u.s d.m
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 

Recently uploaded

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
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
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
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
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
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
 
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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
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
 

Recently uploaded (20)

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
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...
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
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
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
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
 
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
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
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
 

boolean algrebra and logic gates in short

  • 2. ◦ Logic gates ◦ Boolean algebra
  • 3. INTRODUCTION:  A logic gate is an electronic circuit/device which makes logic decisions.  Most logic gates are two inputs and one outputs.  At any given moment, every terminal is in one of the two binary conditions low (0) or high(1), represented by different voltage levels.
  • 4.  The logic state of a terminal can, and generally does, change often as the circuit processes data.  In most logic gates, the low state is approximately 0v, while the high state is approximately 5v.  Logic gates are also called as switches. with the advent of integrate circuits, switches have been replaced by TTL circuit and CMOS circuits.  symbolic logic uses values, variables and operations.
  • 5. TYPES OF LOGIC GATES: The most common logic gates used are, Basic gates 1.OR 2.AND 3.NOT Universal gates 1.NAND 2.NOR  X-OR or Exclusive-OR
  • 6.  Logic gates have special symbols: OR gate X Y Z = X + Y  And waveform behavior in time as follows: X 0 0 1 1 Y 0 1 0 1 (AND) X · Y 0 0 0 1 (OR) X + Y 0 1 1 1 (NOT) X 1 1 0 0 X Y Z = X · Y AND gate X Z = X NOT gate or inverter
  • 7. OR GATE:  The OR gate has two or more inputs and one output.  Its output is true if at least one input is true. SYMBOL:
  • 8.  The OR operation may be defined as “Y equals A OR B”. Y=A+B Where, the symbol ‘+’ indicates the OR concept.  Each terminal may assume two possible values either zero or one.
  • 9. TRUTH TABLE: A B A+B 0 0 0 0 1 1 1 0 1 1 1 1
  • 10. AND GATE:  The AND gate is also a basic kind of digital circuit.  It has also two or more inputs and one output. SYMBOL:
  • 11.  The AND operation for the output is defined as, “y equals A AND B”. Y=A.B  Where ‘.’ symbol indicates AND operation.  The output of the AND gate is one only when both inputs are one.
  • 12. TRUTH TABLE: A B A+B 0 0 0 0 1 0 1 0 0 1 1 1
  • 13. NOT GATE or Inverter Gate:  A NOT gate is a basic gate that has one input and one output. SYMBOL:
  • 14.  The NOT circuit serves to invert the polarity of any input pulse apply to it.  If A is the input then output “Y equals to NOT A or Ā. Y= Ā Where, the bar symbol over A represents NOT or compliment operation
  • 15. TRUTH TABLE: A Ā 0 1 1 0
  • 16. NAND GATE:  The NAND gate is known as an universal gate because it can be used to realize all the three basic functions of OR, AND & NOT gates.  It is also called as NOT-AND gate. SYMBOL:
  • 17.  The Boolean expression for the NAND operation is given by, Y=A.B
  • 18. TRUTH TABLE: A B AB 0 0 1 0 1 1 1 0 1 1 1 0
  • 19. NOR GATE:  The NOR gate is also a universal gate and it is a combination of a NOT and OR gates. SYMBOL:
  • 20.  The Boolean expression for NOR gate is given by, Y=A+B
  • 21. TRUTH TABLE: A B A+B 0 0 1 0 1 0 1 0 0 1 1 0
  • 22. Exclusive OR or X-OR GATE:  The X-OR gate is a logic gate having two inputs with and single output. SYMBOL:
  • 23.  The Boolean expression for the X-OR gate is given by, Y=A+B Where + indicates the exclusive OR operation and in terms of expression it can be expanded as Y=AB+AB + +
  • 24. TRUTH TABLE: A B AB+AB 0 0 0 0 1 1 1 0 1 1 1 0
  • 25. ADVANTAGES OF LOGIC GATES:  It is generally very easy to reliably distinguish between logic 1 or logic 0.  The simplest flip-flop is the RS which is made up of two gates.  K-map is also designed by using logic gates. That simplification helps when you start to connect gates to implement the functions.  These gates are also used in TTL and CMOS circuitary.
  • 26.  Boolean Algebra derives its name from the mathematician George Boole in 1854 in his book “An investigation of the laws of taught”.  Instead of usual algebra of numbers Boolean algebra is the algebra of truth values 0 or 1.  In order to fully understand this the relation between the AND gate, OR gate & NOT gate operations should be appreciated.
  • 27. POSTULATES OF BOOLEAN ALGEBRA:  The Boolean algebra has its own set of fundamental laws which differ from the ordinary algebra. They are, OR laws:  A+0=A  A+1=1  A+A=A  A+Ā=1
  • 28. AND laws:  A.0=0  A.A=A  A.1=A  A.Ā=0 NOT laws:  0=1  1=0  If A=0 then Ā=1  If A=1 then Ā=0  Ā=A
  • 29. Commutative law:  A+B=B+A  A.B=B.A Associative laws:  A+(B+C)=(A+B)+C  A.(B.C)=(A.B).C  (A+B)+(C+D)=A+B+C+D
  • 30. Distributive laws:  A.(B+C)=(A.B)+(A.C)  (A+B).C=A.C+B.C  A+ĀB=A+B  A+B.C=(A+B).(A+C) Absorptive laws:  A+A.B=A  A.(A+B)=A  A.(Ā+B)=AB Demorgan’s laws:  A+B=A.B  A.B=A+B
  • 31. EXAMPLE: (AB+C)(AB+D)=AB+CD  AB.AB+AB.D+C.AB+C.D  AB+ABD+ABC+CD {A.A=A}  AB(1+D)+ABC+CD {1+A=1}  AB+ABC+CD  AB(1+C)+CD  AB+CD
  • 32. Advantages:  If we use Boolean algebra for your logical problem you can save more gates and operations. so your design will be cheaper, more comprehensible, more serviceable .  It allows logical steps quickly and repeatedly. Disadvantages:  Can only arrive at direct results not implied once.