SlideShare a Scribd company logo
1 of 30
sinaiuniversity.net
Dr. Alaa M. Zaki
2
Revision about Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Computer Architecture
Lecture #1
The inverter performs the Boolean NOT operation.
When the input is LOW, the output is HIGH; when
the input is HIGH, the output is LOW.
Basic Gates
The Inverter
A X
Input
A X
Output
LOW (0) HIGH (1)
HIGH (1) LOW(0)
The NOT operation (complement) is shown with an
overbar. Thus, the Boolean expression for an
inverter is X = A.
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
A X
A group of inverters can be used to form the 1’s complement of a binary number:
Binary number
1’s complement
1 0 0 0 1 1 0 1
0 1 1 1 0 0 1 0
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The Inverter
The AND gate produces a HIGH output when all inputs are
HIGH; otherwise, the output is LOW. For a 2-input gate,
the truth table is
The AND Gate
The AND operation is usually shown with a dot between the
variables but it may be implied (no dot). Thus, the AND
operation is written as X = A .B or X = AB.
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
0
0
1
A
B
X &
A
B
X
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
The AND operation is used in computer programming as a selective mask. If you want to
retain certain bits of a binary number but reset the other bits to 0, you could set a mask with
1’s in the position of the retained bits.
A
B
X
B
00000011
If the binary number 10100011 is ANDed with the mask 00001111, what is the result?
&
A
B
X
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The AND Gate
The OR gate produces a HIGH output if any input is
HIGH; if all inputs are LOW, the output is LOW. For
a 2-input gate, the truth table is
The OR Gate
The OR operation is shown with a plus sign (+) between the
variables. Thus, the OR operation is written as X = A + B.
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
1
1
1
A
B
X A
B
X
≥ 1
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
The OR operation can be used in computer programming to set certain bits of a binary
number to 1.
B
A
B
X A
B
X
≥ 1
ASCII letters have a 1 in the bit 5 position for lower case letters and a 0 in this position for
capitals. (Bit positions are numbered from right to left starting with 0.) What will be the
result if you OR an ASCII letter with the 8-bit mask 00100000?
The resulting letter will be lower case.
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The OR Gate
The NAND gate produces a LOW output when all inputs
are HIGH; otherwise, the output is HIGH. For a 2-input
gate, the truth table is
The NAND Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
1
1
0
A
B
X A
B
X
&
The NAND operation is shown with a dot between the variables and
an overbar covering them. Thus, the NAND operation is written as X
= A .B (Alternatively, X = AB.)
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
The NAND gate is particularly useful because it is a “universal” gate – all other basic gates can be
constructed from NAND gates.
B
How would you connect a 2-input NAND gate to form a basic inverter?
A
B
X A
B
X
&
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The NOR gate produces a LOW output if
any input is HIGH; if all inputs are HIGH,
the output is LOW. For a 2-input gate, the
truth table is
The NOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
0
0
0
A
B
X A
B
X
≥1
The NOR operation is shown with a plus sign (+) between the variables and an
overbar covering them. Thus, the NOR operation is written as X = A + B.
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
The NOR operation will produce a LOW if any input is HIGH.
B
When is the LED is ON for the circuit shown?
The LED will be on when any of the four inputs are HIGH.
A
C
B
D
X
330W
+5.0 V
A
B
X A
B
X
≥1
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The NOR Gate
The XOR gate produces a HIGH output only
when both inputs are at opposite logic levels.
The truth table is
The XOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
0
1
1
0
A
B
X A
B
X
= 1
The XOR operation is written as X = AB + AB. Alternatively, it can be
written with a circled plus sign between the variables as X = A + B.
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
Notice that the XOR gate will produce a HIGH only when exactly one input is HIGH.
B
If the A and B waveforms are both inverted for the above waveforms, how is
the output affected?
There is no change in the output.
A
B
X A
B
X
= 1
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The XOR Gate
The XNOR gate produces a HIGH
output only when both inputs are at
the same logic level. The truth table
is
The XNOR Gate
Inputs
A B X
Output
0 0
0 1
1 0
1 1
1
0
0
1
A
B
X A
B
X
The XNOR operation shown as X = AB + AB. Alternatively, the
XNOR operation can be shown with a circled dot between the
variables. Thus, it can be shown as X = A . B.
= 1
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Example waveforms:
A
X
Notice that the XNOR gate will produce a HIGH when both inputs are the same.
This makes it useful for comparison functions.
B
If the A waveform is inverted but B remains the same, how is the output
affected? The output will be inverted.
A
B
X A
B
X
= 1
Basic Gates
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
The XNOR Gate
In Boolean algebra, a variable is a symbol used to represent an action, a condition, or
data. A single variable can only have a value of 1 or 0.
Boolean Addition
The complement represents the inverse of a variable and is indicated with an overbar.
Thus, the complement of A is A.
A literal is a variable or its complement.
Addition is equivalent to the OR operation. The sum term is 1 if one or
more if the literals are 1. The sum term is zero only if each literal is 0.
Determine the values of A, B, and C that make the sum term
of the expression A + B + C = 0?
Each literal must = 0; therefore A = 1, B = 0 and C = 1.
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
In Boolean algebra, multiplication is equivalent to the AND operation. The product
of literals forms a product term. The product term will be 1 only if all of the literals
are 1.
Boolean algebra
Boolean Multiplication
What are the values of the A, B and C if the product term of A.B.C = 1?
Each literal must = 1; therefore A = 1, B = 0 and C = 0.
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Commutative Laws
In terms of the result, the order in which variables are ORed
makes no difference.
The commutative laws are applied to addition and multiplication. For
addition, the commutative law states
A + B = B + A
In terms of the result, the order in which variables are ANDed
makes no difference.
For multiplication, the commutative law states
AB = BA
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
Associative Laws
When ORing more than two variables, the result is the same
regardless of the grouping of the variables.
The associative laws are also applied to addition and multiplication. For
addition, the associative law states
A + (B +C) = (A + B) + C
For multiplication, the associative law states
When ANDing more than two variables, the result is the same
regardless of the grouping of the variables.
A(BC) = (AB)C
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
Distributive Law
The distributive law is the factoring law. A common variable can be
factored from an expression just as in ordinary algebra. That is
AB + AC = A(B+ C)
The distributive law can be illustrated with equivalent circuits:
B+ C
C
A
X
B
AB
B
X
A
C
A
AC
AB + AC
A(B+ C)
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
Rules of Boolean Algebra
1. A + 0 = A
2. A + 1 = 1
3. A . 0 = 0
4. A . 1 = A
5. A + A = A
7. A . A = A
6. A + A = 1
8. A . A = 0
9. A = A
=
10. A + AB = A
12. (A + B)(A + C) = A + BC
11. A + AB = A + B
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
Rules of Boolean Algebra
Rules of Boolean algebra can be illustrated with Venn diagrams. The variable A is
shown as an area.
The rule A + AB = A can be illustrated easily with a diagram. Add an overlapping
area to represent the variable B.
A B
AB
The overlap region between A and B represents AB.
A
A B
A B
AB
The diagram visually shows that A + AB = A. Other rules can be illustrated with
the diagrams as well.
=
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
A
Rules of Boolean Algebra
A + AB = A + B
This time, A is represented by the blue area and B
again by the red circle.
B
The intersection represents
AB. Notice that A + AB = A + B
A
AB
A
Illustrate the rule with a Venn diagram.
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
Rules of Boolean Algebra
Rule 12, which states that (A + B)(A + C) = A + BC, can be proven by
applying earlier rules as follows:
(A + B)(A + C) = AA + AC + AB + BC
= A + AC + AB + BC
= A(1 + C + B) + BC
= A . 1 + BC
= A + BC
This rule is a little more complicated, but it can also be shown with a Venn
diagram, as given on the following slide…
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
A
A + B
The area representing A + B is shown in yellow.
The area representing A + C is shown in red.
Three areas represent the variables A, B, and C.
A
C
A + C
The overlap of red and yellow is shown in orange.
A B
C
A B
C
BC
ORing with A gives the same area as
before.
A B
C
BC
=
A B
C
(A + B)(A + C) A + BC
The overlapping area between B and C
represents BC.
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
Boolean algebra
DeMorgan’s Theorem
The complement of a product of variables is equal to the sum of
the complemented variables.
DeMorgan’s 1st Theorem
AB = A + B
Applying DeMorgan’s first theorem to gates:
Output
Inputs
A B AB A + B
0
0
1
1
0
1
0
1
1
1
1
0
1
1
1
0
A + B
A
B
AB
A
B
NAND Negative-OR
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
DeMorgan’s 2nd Theorem
The complement of a sum of variables is equal to the product of
the complemented variables.
A + B = A . B
Applying DeMorgan’s second theorem to gates:
A B A + B AB
Output
Inputs
0
0
1
1
0
1
0
1
1
0
0
0
1
0
0
0
AB
A
B
A + B
A
B
NOR Negative-AND
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
DeMorgan’s Theorem
Apply DeMorgan’s theorem to remove the overbar covering both
terms from the
expression X = C + D.
To apply DeMorgan’s theorem to the expression, you can break the
overbar covering both terms and change the sign between the
terms. This results in
X = C . D. Deleting the double bar gives X = C . D.
=
@Sinaiunieg www.su.edu.eg
info@su.edu.eg
DeMorgan’s Theorem
THANK YOU
Dr. Alaa zaki
Foranyquestionsfeel free
tocontactme bymail
Alaa.zaky@su.edu.eg

More Related Content

What's hot

Boolean algebra simplification and combination circuits
Boolean algebra simplification and combination circuitsBoolean algebra simplification and combination circuits
Boolean algebra simplification and combination circuitsJaipal Dhobale
 
Chapter 2: Boolean Algebra and Logic Gates
Chapter 2: Boolean Algebra and Logic GatesChapter 2: Boolean Algebra and Logic Gates
Chapter 2: Boolean Algebra and Logic GatesEr. Nawaraj Bhandari
 
Chapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and GatesChapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and GatesSSE_AndyLi
 
Boolean functions
Boolean functionsBoolean functions
Boolean functionsZareenRauf1
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraelfeds916
 
Digital logic design lecture 06
Digital logic design   lecture 06 Digital logic design   lecture 06
Digital logic design lecture 06 FarhatUllah27
 
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...Arti Parab Academics
 
Boolean Algebra and Logic Smiplification
Boolean Algebra and Logic SmiplificationBoolean Algebra and Logic Smiplification
Boolean Algebra and Logic Smiplificationsamantha rathnayake
 
B sc cs i bo-de u-ii logic gates
B sc cs i bo-de u-ii logic gatesB sc cs i bo-de u-ii logic gates
B sc cs i bo-de u-ii logic gatesRai University
 
Name dld preparation
Name dld preparationName dld preparation
Name dld preparationPadam Rai
 
BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE Tamim Tanvir
 
boolean algrebra and logic gates in short
boolean algrebra and logic gates in shortboolean algrebra and logic gates in short
boolean algrebra and logic gates in shortRojin Khadka
 
Introduction to Boolean Algebra
Introduction to Boolean AlgebraIntroduction to Boolean Algebra
Introduction to Boolean Algebrablaircomp2003
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplificationUnsa Shakir
 

What's hot (20)

Boolean algebra simplification and combination circuits
Boolean algebra simplification and combination circuitsBoolean algebra simplification and combination circuits
Boolean algebra simplification and combination circuits
 
Chapter 2: Boolean Algebra and Logic Gates
Chapter 2: Boolean Algebra and Logic GatesChapter 2: Boolean Algebra and Logic Gates
Chapter 2: Boolean Algebra and Logic Gates
 
Chapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and GatesChapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and Gates
 
Ch 5 boolean logic
Ch 5 boolean logicCh 5 boolean logic
Ch 5 boolean logic
 
2dig circ
2dig circ2dig circ
2dig circ
 
Boolean functions
Boolean functionsBoolean functions
Boolean functions
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebra
 
Digital logic design lecture 06
Digital logic design   lecture 06 Digital logic design   lecture 06
Digital logic design lecture 06
 
Logic Equation Simplification
Logic Equation SimplificationLogic Equation Simplification
Logic Equation Simplification
 
Digital design chap 2
Digital design    chap 2Digital design    chap 2
Digital design chap 2
 
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...
FYBSC IT Digital Electronics Unit II Chapter II Minterm, Maxterm and Karnaugh...
 
Boolean Algebra and Logic Smiplification
Boolean Algebra and Logic SmiplificationBoolean Algebra and Logic Smiplification
Boolean Algebra and Logic Smiplification
 
B sc cs i bo-de u-ii logic gates
B sc cs i bo-de u-ii logic gatesB sc cs i bo-de u-ii logic gates
B sc cs i bo-de u-ii logic gates
 
Name dld preparation
Name dld preparationName dld preparation
Name dld preparation
 
BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE
 
Chapter 5 boolean algebra
Chapter 5 boolean algebraChapter 5 boolean algebra
Chapter 5 boolean algebra
 
boolean algrebra and logic gates in short
boolean algrebra and logic gates in shortboolean algrebra and logic gates in short
boolean algrebra and logic gates in short
 
Introduction to Boolean Algebra
Introduction to Boolean AlgebraIntroduction to Boolean Algebra
Introduction to Boolean Algebra
 
Logic gates
Logic gatesLogic gates
Logic gates
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplification
 

Similar to Lec1 n

Boolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.SivakumarBoolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.SivakumarSivakumar R D .
 
Lecture 2.4 logic_gate_&_simple_logic_circuit
Lecture 2.4 logic_gate_&_simple_logic_circuitLecture 2.4 logic_gate_&_simple_logic_circuit
Lecture 2.4 logic_gate_&_simple_logic_circuitKMJ Science Computer
 
Boolean Algebra.pdf
Boolean Algebra.pdfBoolean Algebra.pdf
Boolean Algebra.pdfssusere02873
 
Digital electronics
Digital electronicsDigital electronics
Digital electronicsnanishajieha
 
Boolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdfBoolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdfnyamuonatinashe
 
Boolean variables r010
Boolean variables   r010Boolean variables   r010
Boolean variables r010arunachalamr16
 
Computer Architecture & Organization
Computer Architecture & OrganizationComputer Architecture & Organization
Computer Architecture & OrganizationNANDINI SHARMA
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxRithinA1
 
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.pptxWilliamJosephat1
 
Boolean Logic.pptx
Boolean Logic.pptxBoolean Logic.pptx
Boolean Logic.pptxakshat205573
 
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
 

Similar to Lec1 n (20)

Logic Gates.pptx
Logic Gates.pptxLogic Gates.pptx
Logic Gates.pptx
 
Boolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.SivakumarBoolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.Sivakumar
 
Lecture 2.4 logic_gate_&_simple_logic_circuit
Lecture 2.4 logic_gate_&_simple_logic_circuitLecture 2.4 logic_gate_&_simple_logic_circuit
Lecture 2.4 logic_gate_&_simple_logic_circuit
 
Boolean Algebra.pdf
Boolean Algebra.pdfBoolean Algebra.pdf
Boolean Algebra.pdf
 
Chapter_11.pdf
Chapter_11.pdfChapter_11.pdf
Chapter_11.pdf
 
Digital electronics
Digital electronicsDigital electronics
Digital electronics
 
Boolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdfBoolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdf
 
Boolean variables r010
Boolean variables   r010Boolean variables   r010
Boolean variables r010
 
Computer Architecture & Organization
Computer Architecture & OrganizationComputer Architecture & Organization
Computer Architecture & Organization
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptx
 
BOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATEBOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATE
 
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
 
07 boolean algebra
07 boolean algebra07 boolean algebra
07 boolean algebra
 
Boolean Logic.pptx
Boolean Logic.pptxBoolean Logic.pptx
Boolean Logic.pptx
 
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
 
9. logic gates._rr
9. logic gates._rr9. logic gates._rr
9. logic gates._rr
 
Digital 1 8
Digital 1 8Digital 1 8
Digital 1 8
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
Boolean Algebra DLD
Boolean Algebra DLDBoolean Algebra DLD
Boolean Algebra DLD
 
14 Lec11 2003
14 Lec11 200314 Lec11 2003
14 Lec11 2003
 

Recently uploaded

Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
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
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
_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
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
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
 
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
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
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
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 

Recently uploaded (20)

Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
_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
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.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
 
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
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.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
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.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
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 

Lec1 n

  • 2. 2 Revision about Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg Computer Architecture Lecture #1
  • 3. The inverter performs the Boolean NOT operation. When the input is LOW, the output is HIGH; when the input is HIGH, the output is LOW. Basic Gates The Inverter A X Input A X Output LOW (0) HIGH (1) HIGH (1) LOW(0) The NOT operation (complement) is shown with an overbar. Thus, the Boolean expression for an inverter is X = A. @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 4. Example waveforms: A X A X A group of inverters can be used to form the 1’s complement of a binary number: Binary number 1’s complement 1 0 0 0 1 1 0 1 0 1 1 1 0 0 1 0 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The Inverter
  • 5. The AND gate produces a HIGH output when all inputs are HIGH; otherwise, the output is LOW. For a 2-input gate, the truth table is The AND Gate The AND operation is usually shown with a dot between the variables but it may be implied (no dot). Thus, the AND operation is written as X = A .B or X = AB. Inputs A B X Output 0 0 0 1 1 0 1 1 0 0 0 1 A B X & A B X Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 6. Example waveforms: A X The AND operation is used in computer programming as a selective mask. If you want to retain certain bits of a binary number but reset the other bits to 0, you could set a mask with 1’s in the position of the retained bits. A B X B 00000011 If the binary number 10100011 is ANDed with the mask 00001111, what is the result? & A B X Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The AND Gate
  • 7. The OR gate produces a HIGH output if any input is HIGH; if all inputs are LOW, the output is LOW. For a 2-input gate, the truth table is The OR Gate The OR operation is shown with a plus sign (+) between the variables. Thus, the OR operation is written as X = A + B. Inputs A B X Output 0 0 0 1 1 0 1 1 0 1 1 1 A B X A B X ≥ 1 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 8. Example waveforms: A X The OR operation can be used in computer programming to set certain bits of a binary number to 1. B A B X A B X ≥ 1 ASCII letters have a 1 in the bit 5 position for lower case letters and a 0 in this position for capitals. (Bit positions are numbered from right to left starting with 0.) What will be the result if you OR an ASCII letter with the 8-bit mask 00100000? The resulting letter will be lower case. Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The OR Gate
  • 9. The NAND gate produces a LOW output when all inputs are HIGH; otherwise, the output is HIGH. For a 2-input gate, the truth table is The NAND Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 1 1 0 A B X A B X & The NAND operation is shown with a dot between the variables and an overbar covering them. Thus, the NAND operation is written as X = A .B (Alternatively, X = AB.) Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 10. Example waveforms: A X The NAND gate is particularly useful because it is a “universal” gate – all other basic gates can be constructed from NAND gates. B How would you connect a 2-input NAND gate to form a basic inverter? A B X A B X & Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 11. The NOR gate produces a LOW output if any input is HIGH; if all inputs are HIGH, the output is LOW. For a 2-input gate, the truth table is The NOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 0 0 0 A B X A B X ≥1 The NOR operation is shown with a plus sign (+) between the variables and an overbar covering them. Thus, the NOR operation is written as X = A + B. Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 12. Example waveforms: A X The NOR operation will produce a LOW if any input is HIGH. B When is the LED is ON for the circuit shown? The LED will be on when any of the four inputs are HIGH. A C B D X 330W +5.0 V A B X A B X ≥1 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The NOR Gate
  • 13. The XOR gate produces a HIGH output only when both inputs are at opposite logic levels. The truth table is The XOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 0 1 1 0 A B X A B X = 1 The XOR operation is written as X = AB + AB. Alternatively, it can be written with a circled plus sign between the variables as X = A + B. Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 14. Example waveforms: A X Notice that the XOR gate will produce a HIGH only when exactly one input is HIGH. B If the A and B waveforms are both inverted for the above waveforms, how is the output affected? There is no change in the output. A B X A B X = 1 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The XOR Gate
  • 15. The XNOR gate produces a HIGH output only when both inputs are at the same logic level. The truth table is The XNOR Gate Inputs A B X Output 0 0 0 1 1 0 1 1 1 0 0 1 A B X A B X The XNOR operation shown as X = AB + AB. Alternatively, the XNOR operation can be shown with a circled dot between the variables. Thus, it can be shown as X = A . B. = 1 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 16. Example waveforms: A X Notice that the XNOR gate will produce a HIGH when both inputs are the same. This makes it useful for comparison functions. B If the A waveform is inverted but B remains the same, how is the output affected? The output will be inverted. A B X A B X = 1 Basic Gates @Sinaiunieg www.su.edu.eg info@su.edu.eg The XNOR Gate
  • 17. In Boolean algebra, a variable is a symbol used to represent an action, a condition, or data. A single variable can only have a value of 1 or 0. Boolean Addition The complement represents the inverse of a variable and is indicated with an overbar. Thus, the complement of A is A. A literal is a variable or its complement. Addition is equivalent to the OR operation. The sum term is 1 if one or more if the literals are 1. The sum term is zero only if each literal is 0. Determine the values of A, B, and C that make the sum term of the expression A + B + C = 0? Each literal must = 0; therefore A = 1, B = 0 and C = 1. @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 18. In Boolean algebra, multiplication is equivalent to the AND operation. The product of literals forms a product term. The product term will be 1 only if all of the literals are 1. Boolean algebra Boolean Multiplication What are the values of the A, B and C if the product term of A.B.C = 1? Each literal must = 1; therefore A = 1, B = 0 and C = 0. @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 19. Commutative Laws In terms of the result, the order in which variables are ORed makes no difference. The commutative laws are applied to addition and multiplication. For addition, the commutative law states A + B = B + A In terms of the result, the order in which variables are ANDed makes no difference. For multiplication, the commutative law states AB = BA @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 20. Associative Laws When ORing more than two variables, the result is the same regardless of the grouping of the variables. The associative laws are also applied to addition and multiplication. For addition, the associative law states A + (B +C) = (A + B) + C For multiplication, the associative law states When ANDing more than two variables, the result is the same regardless of the grouping of the variables. A(BC) = (AB)C @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 21. Distributive Law The distributive law is the factoring law. A common variable can be factored from an expression just as in ordinary algebra. That is AB + AC = A(B+ C) The distributive law can be illustrated with equivalent circuits: B+ C C A X B AB B X A C A AC AB + AC A(B+ C) @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 22. Rules of Boolean Algebra 1. A + 0 = A 2. A + 1 = 1 3. A . 0 = 0 4. A . 1 = A 5. A + A = A 7. A . A = A 6. A + A = 1 8. A . A = 0 9. A = A = 10. A + AB = A 12. (A + B)(A + C) = A + BC 11. A + AB = A + B @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 23. Rules of Boolean Algebra Rules of Boolean algebra can be illustrated with Venn diagrams. The variable A is shown as an area. The rule A + AB = A can be illustrated easily with a diagram. Add an overlapping area to represent the variable B. A B AB The overlap region between A and B represents AB. A A B A B AB The diagram visually shows that A + AB = A. Other rules can be illustrated with the diagrams as well. = @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 24. A Rules of Boolean Algebra A + AB = A + B This time, A is represented by the blue area and B again by the red circle. B The intersection represents AB. Notice that A + AB = A + B A AB A Illustrate the rule with a Venn diagram. @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 25. Rules of Boolean Algebra Rule 12, which states that (A + B)(A + C) = A + BC, can be proven by applying earlier rules as follows: (A + B)(A + C) = AA + AC + AB + BC = A + AC + AB + BC = A(1 + C + B) + BC = A . 1 + BC = A + BC This rule is a little more complicated, but it can also be shown with a Venn diagram, as given on the following slide… @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 26. A A + B The area representing A + B is shown in yellow. The area representing A + C is shown in red. Three areas represent the variables A, B, and C. A C A + C The overlap of red and yellow is shown in orange. A B C A B C BC ORing with A gives the same area as before. A B C BC = A B C (A + B)(A + C) A + BC The overlapping area between B and C represents BC. @Sinaiunieg www.su.edu.eg info@su.edu.eg Boolean algebra
  • 27. DeMorgan’s Theorem The complement of a product of variables is equal to the sum of the complemented variables. DeMorgan’s 1st Theorem AB = A + B Applying DeMorgan’s first theorem to gates: Output Inputs A B AB A + B 0 0 1 1 0 1 0 1 1 1 1 0 1 1 1 0 A + B A B AB A B NAND Negative-OR @Sinaiunieg www.su.edu.eg info@su.edu.eg
  • 28. DeMorgan’s 2nd Theorem The complement of a sum of variables is equal to the product of the complemented variables. A + B = A . B Applying DeMorgan’s second theorem to gates: A B A + B AB Output Inputs 0 0 1 1 0 1 0 1 1 0 0 0 1 0 0 0 AB A B A + B A B NOR Negative-AND @Sinaiunieg www.su.edu.eg info@su.edu.eg DeMorgan’s Theorem
  • 29. Apply DeMorgan’s theorem to remove the overbar covering both terms from the expression X = C + D. To apply DeMorgan’s theorem to the expression, you can break the overbar covering both terms and change the sign between the terms. This results in X = C . D. Deleting the double bar gives X = C . D. = @Sinaiunieg www.su.edu.eg info@su.edu.eg DeMorgan’s Theorem
  • 30. THANK YOU Dr. Alaa zaki Foranyquestionsfeel free tocontactme bymail Alaa.zaky@su.edu.eg