SlideShare a Scribd company logo
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 circuits
Jaipal 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 Gates
Er. Nawaraj Bhandari
 
Chapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and GatesChapter 02 Logic Functions and Gates
Chapter 02 Logic Functions and Gates
SSE_AndyLi
 
Ch 5 boolean logic
Ch 5 boolean logicCh 5 boolean logic
Ch 5 boolean logic
Chaffey College
 
2dig circ
2dig circ2dig circ
Boolean functions
Boolean functionsBoolean functions
Boolean functions
ZareenRauf1
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebra
elfeds916
 
Digital logic design lecture 06
Digital logic design   lecture 06 Digital logic design   lecture 06
Digital logic design lecture 06
FarhatUllah27
 
Logic Equation Simplification
Logic Equation SimplificationLogic Equation Simplification
Digital design chap 2
Digital design    chap 2Digital design    chap 2
Digital design chap 2
Mohammad Bappy
 
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 Smiplification
samantha 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 gates
Rai University
 
Name dld preparation
Name dld preparationName dld preparation
Name dld preparation
Padam Rai
 
BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE BOOLEAN ALGEBRA AND LOGIC GATE
BOOLEAN ALGEBRA AND LOGIC GATE
Tamim Tanvir
 
Chapter 5 boolean algebra
Chapter 5 boolean algebraChapter 5 boolean algebra
Chapter 5 boolean algebra
Praveen M Jigajinni
 
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
Rojin Khadka
 
Introduction to Boolean Algebra
Introduction to Boolean AlgebraIntroduction to Boolean Algebra
Introduction to Boolean Algebra
blaircomp2003
 
Logic gates
Logic gatesLogic gates
Logic gates
Rajeev Verma
 
boolean algebra and logic simplification
boolean algebra and logic simplificationboolean algebra and logic simplification
boolean algebra and logic simplification
Unsa 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

Logic Gates.pptx
Logic Gates.pptxLogic Gates.pptx
Logic Gates.pptx
DanicaHeusdens
 
Boolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.SivakumarBoolean Algebra - R.D.Sivakumar
Boolean Algebra - R.D.Sivakumar
Sivakumar 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_circuit
KMJ Science Computer
 
Boolean Algebra.pdf
Boolean Algebra.pdfBoolean Algebra.pdf
Boolean Algebra.pdf
ssusere02873
 
Chapter_11.pdf
Chapter_11.pdfChapter_11.pdf
Chapter_11.pdf
Upinder Kaur
 
Digital electronics
Digital electronicsDigital electronics
Digital electronics
nanishajieha
 
Boolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdfBoolen Algebra Lecture Notes.pdf
Boolen Algebra Lecture Notes.pdf
nyamuonatinashe
 
Boolean variables r010
Boolean variables   r010Boolean variables   r010
Boolean variables r010
arunachalamr16
 
Computer Architecture & Organization
Computer Architecture & OrganizationComputer Architecture & Organization
Computer Architecture & Organization
NANDINI SHARMA
 
chapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptxchapter 3 Boolean algebra (2).pptx
chapter 3 Boolean algebra (2).pptx
RithinA1
 
BOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATEBOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATE
Ideal Eyes Business College
 
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
WilliamJosephat1
 
07 boolean algebra
07 boolean algebra07 boolean algebra
07 boolean algebra
Sohail Akbar Goheer
 
Boolean Logic.pptx
Boolean Logic.pptxBoolean Logic.pptx
Boolean Logic.pptx
akshat205573
 
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
DamotTesfaye
 
9. logic gates._rr
9. logic gates._rr9. logic gates._rr
9. logic gates._rr
Arriz San Juan
 
Digital 1 8
Digital 1 8Digital 1 8
Digital 1 8
Sayan Chakraborty
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
Manish Kumar
 
Boolean Algebra DLD
Boolean Algebra DLDBoolean Algebra DLD
Boolean Algebra DLD
Rokonuzzaman Rony
 
14 Lec11 2003
14 Lec11 200314 Lec11 2003
14 Lec11 2003
Kavin Paul
 

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

How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
TechSoup
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
Nguyen Thanh Tu Collection
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 

Recently uploaded (20)

How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Walmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdfWalmart Business+ and Spark Good for Nonprofits.pdf
Walmart Business+ and Spark Good for Nonprofits.pdf
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
BÀI TẬP BỔ TRỢ TIẾNG ANH LỚP 9 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2024-2025 - ...
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 

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