SlideShare ist ein Scribd-Unternehmen logo
1 von 100
Downloaden Sie, um offline zu lesen
Logic Design
A Review
Boolean Algebra
y Two Values: zero and one
y Three Basic Functions: And, Or, Not
y Any Boolean Function Can be

Constructed from These Three
A nd
0
1

0
0
0

1
0
1

Or
0
1

0
0
1

1
1
1

N ot
0
1

1
0
Algebraic Laws
Classification
Identity
Dominance
Commutativity
Associativity
Distributive
Demorgan’s Laws

Law
a1=1a=a
a+0=0+a=a
a0=0a=0
1+a=a+1=1
a+b=b+a
ab=ba
a(bc)=(ab)c
a+(b+c)=(a+b)+c
a(b+c)=ab+ac
a+bc=(a+b)(a+c)
( a + b ) ′ = a ′b ′
( ab ) ′ = a ′ + b ′
Boolean Expressions
y Addition represents OR
y Multiplication represents AND
y Not is represented by a prime a’ or an

overbar a
y Examples:
y s = a’bc + ab’c + abc’ + a’b’c’
y q = ab + bc + ac + abc
Superfluous Terms
y The following Two Equations Represent

The Same Function.
q = ab + bc + ac + abc
q = ab + bc + ac

a
0
0
0
0
1
1
1
1

b
0
0
1
1
0
0
1
1

c q
0 0
1 0
0 0
1 1
0 0
1 1
0 1
1 1
Prime Implicants
y A Prime Implicant is a Product of

Variables or Their Complements, eg.
ab’cd’
y If a Prime Implicant has the Value 1,
then the Function has the Value 1
y A Minimal Equation is a Sum of Prime
Implicants
Minimization and Minterms
y Minimization Reduces the Size and

Number of Prime Implicants
y A MinTerm is a Prime Implicant with
the Maximum Number of Variables
y For a 3-input Function a’bc is a
MinTerm, while ab is not.
y Prime Implicants can be Combined to
Eliminate Variables, abc’+abc = ab
Minimization with Maps
y A Karnaugh Map

C

A

^1

1

^
^

00
0 1

B

01
0

11
0

10
1

0

0

0
Procedure
y Select Regions Containing All 1’s
y Regions should be as Large as Possible
y Regions must contain 2k cells
y Regions should overlap as little as

possible
y The complete set of regions must
contain all 1’s in the map
Procedure 2
y Top and Bottom of Map are Contiguous
y Left and Right of Map are Contiguous
y Regions represent Prime Implicants
y Use Variable name guides to construct

equation
– Completely inside the region of a variable
means prime implicant contains variable
– Completely outside the region of a variable
means prime implicant contains negation
00
0 1

A

^1

1

^
^

Applied to Previous Map
C
B

01
0

11
0

10
1

0

0

0

q=c’b’+c’a’
B

^
A

00
00 0

^
^

A 4-Variable Karnaugh Map
D
C
01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^
First Minimization
D

^
A

^
^

B

00
00 0

C

01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^
B

^
A

00
00 0

C

^
^

Second Minimization
D
01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^
Minimal Forms for Previous
Slides:
y

ab ′d + bc ′d + a ′bc + acd ′

y

ac ′d + a ′bd + bcd ′ + ab ′c

y Moral: A Boolean Function May Have

Several Different Minimal Forms
y Karnaugh Maps are Ineffective for
Functions with More than Six Inputs.
Quine McClusky Minimization
y Amenable to Machine Implementation
y Applicable to Circuits with an Arbitrary

Number of Inputs
y Effective Procedure for Finding Prime
Implicants, but …
y Can Require an Exponential Amount of
Time for Some Circuits
Quine-McClusky Procedure
y Start with The Function Truth Table
y Extract All Input Combinations that

Produce a TRUE Output (MinTerms)
y Group All MinTerms by The Number of
Ones They Contain
y Combine Minterms from Adjacent
Groups
More Quine-McClusky
y Two Min-Terms Combine If They Differ

by Only One Bit
y The Combined MinTerm has an x in the
Differing Position
y Create New Groups From Combined
Min-Terms
y Each Member of A New Group Must
Have the Same Number of 1’s and x’s
Yet More Quine-McClusky
y Each Member of A Group Must Have

x’s in The Same Position.
y Combine Members of the New Groups
To Create More New Groups
y Combined Terms Must Differ By One
Bit, and Have x’s in the Same Positions
y Combine as Much as Possible
y Select Prime Implicants to “Cover” All
Ones in the Function
Quine-McClusky Example 1
Numbers in Parentheses are Truth-Table
Positions.

0011(3) 1100(12)
0111(7) 1011(11) 1101(13)
1110(14)
1111(15)
Quine-McClusky Example 2
New Groups After Combining MinTerms

0x11(3,7)
1x11(11,15)
x011(3,11)
x111(7,15)

110x(12,13)
111x(14,15)
11x0(12,14)
11x1(13,15)
Quine-McClusky Example 3
The Final Two Groups
Note That These Two Elements Cover
All Truth-Table Positions

xx11(3,7,11,15)
11xx(12,13,14,15)
Quine-McClusky Example 4
y Each Group Element Represents a Prime

Implicant
y It is Necessary to Select Group Elements
to Cover All Truth-Table Positions.
y In This Case, ab+cd is the Minimal
Formula.
y In General, Selecting a Minimal Number
of Prime Implicants is NP-Complete
Basic Logic Symbols

And

Or

Not
The Exclusive Or Function

Xor
0
1

0
0
1

1
1
0
A Simple Logic Diagram

Signal Flow
Additional Logic Symbols

Nand

Nor

Buffer Xnor
Sequential Logic
y Contains Memory Elements
y Memory is Provided by Feedback
y Circuit diagrams generally have

implicit or explicit cycles
y Two Styles: Synchronous and
Asynchronous
An RS Flip-Flop

S

R

Q

Q’
RS Characteristics
y If S=0 and R=1, Q is set to 1, and Q’ is

reset to 0
y If R=0 and S=1, Q is reset to 0, and Q’ is
set to 1
y If S=1 and R=1, Q and Q’ maintain their
previous state.
y If S=0 and R=0, a transision to S=1, R=1
will cause oscillation.
Instability
y RS flip-flops can become unstable if

both R and S are set to zero.
y All Sequential elements are
fundamentally unstable under certain
conditions
– Invalid Transisions
– Transisions too close together
– Transisions at the wrong time
D Flip-Flops
D-Flip Flop Characteristics
y Avoids the instability of the RS flip-flop
y Retains its last input value
y Formally known as a “Delay” flip-flop
y May become unstable if transisions are

too close together
y Is generally implemented as a special
circuit, not as pictured here.
A Clocked D Flip-Flop
Clocked D-Flip Flop
Characteristics
y Synchronizes transisions with a clock
y Input should remain stable while clock

is active
y Transision at the wrong time can cause
instability
– Changes while clock is active
– Changes simultaneous with clock
Flip-Flop Symbols

S

R

Q

Q’

D
Clk

Q

Q’

J

K

Q

Q’

T
Clk

Flip-Flop Symbols Contain Implicit
Feedback Loops

Q

Q’
A CMOS Flip-Flop
Clk
Q
D
Q’
Clk’
CMOS Logic Elements
y CMOS = Complementary MOS
y CMOS Elements Often Require 2 Clocks

or 2 Controls
y Clocks or Controls must be
Complements of One another
y Clock-Skew (Non-Simultaneous
changes in both clocks) can cause
problems
An Asynchronous Sequential
Circuit
Combinational Logic

D
Clk

Q
Q’
Asynchronous Circuits
y Combinational Logic is used:

– To Compute New States
– To Compute Outputs
y State is maintained in Asynchronous

Circuit Elements
y Care must be used to avoid oscillations
A Synchronous Sequential
Circuit
Combinational Logic
D
Clk

D

Q
Q’
Synchronous Circuits
y Combinational Logic is used to:

– Compute New States
– Compute Outputs
y State is maintained in Synchronous

Flip-Flops
y State Changes can be made only when
clock changes
y Combinational Logic Must be Stable
when Clock is Active
Register Symbol
Input
16

Load
Clock
16

Output
Register Issues
y Generally A Collection of D Flip-Flops
y Can be Synchronous or Asynchronous
y Default is Assumption is

Synchronous
y May have internal wiring to:
– Perform Shifts
– Set/Clear
– All-Zero Status Flag
Tristate Elements
y Three States:

– Zero (Output is grounded)
– One (Output connected to Power Terminal)
– High-Impedance (Output Not Connected to
Either Power Or Ground)
y Can be Used to Construct Cheap

Multiplexors
CMOS Tri-state Buffers

Non-Inverting

Inverting
Tri-State Buffer Issues
y The Gate Amplifies its Signal
y May be Inverting or Non-Inverting
y Often used to Construct Multiplexors

Using Wired-Or Connections
More Tri-State Issues
y In a Wired-Or Connection, Only One

Buffer can be in Non-Tristate State
y Violating This Rule Can Destroy The
Circuit Due a Power/Ground Short
1

1

1

DANGER!
0
The CMOS Transmission Gate
Transmission Gate Issues
y Similar to Tristate Buffer
y Has No Amplification
y Number of Consecutive Transmission

Gates is Limited
y Similar Problems With Wired-Or
Connections
Logic Design
A Review
Boolean Algebra
Two Values: zero and one
y Three Basic Functions: And, Or, Not
y Any Boolean Function Can be
Constructed from These Three
y

A nd
0
1

0
0
0

1
0
1

Or
0
1

0
0
1

1
1
1

N ot
0
1

1
0
Algebraic Laws
Classification
Identity
Dominance
Commutativity
Associativity
Distributive
Demorgan’s Laws

Law
a1=1a=a
a+0=0+a=a
a0=0a=0
1+a=a+1=1
a+b=b+a
ab=ba
a(bc)=(ab)c
a+(b+c)=(a+b)+c
a(b+c)=ab+ac
a+bc=(a+b)(a+c)
( a + b ) ′ = a ′b ′
( ab ) ′ = a ′ + b ′
Boolean Expressions
Addition represents OR
y Multiplication represents AND
y Not is represented by a prime a’ or an
overbar a
y Examples:
y s = a’bc + ab’c + abc’ + a’b’c’
y q = ab + bc + ac + abc
y
Superfluous Terms
y

The following Two Equations Represent
The Same Function.
q = ab + bc + ac + abc
q = ab + bc + ac

a
0
0
0
0
1
1
1
1

b
0
0
1
1
0
0
1
1

c q
0 0
1 0
0 0
1 1
0 0
1 1
0 1
1 1
Prime Implicants
A Prime Implicant is a Product of
Variables or Their Complements, eg.
ab’cd’
y If a Prime Implicant has the Value 1,
then the Function has the Value 1
y A Minimal Equation is a Sum of Prime
Implicants
y
Minimization and Minterms
Minimization Reduces the Size and
Number of Prime Implicants
y A MinTerm is a Prime Implicant with
the Maximum Number of Variables
y For a 3-input Function a’bc is a
MinTerm, while ab is not.
y Prime Implicants can be Combined to
Eliminate Variables, abc’+abc = ab
y
Minimization with Maps
y

A Karnaugh Map

C

A

^1

1

^
^

00
0 1

B

01
0

11
0

10
1

0

0

0
Procedure
Select Regions Containing All 1’s
y Regions should be as Large as Possible
y Regions must contain 2k cells
y Regions should overlap as little as
possible
y The complete set of regions must
contain all 1’s in the map
y
Procedure 2
Top and Bottom of Map are Contiguous
y Left and Right of Map are Contiguous
y Regions represent Prime Implicants
y Use Variable name guides to construct
equation
y

– Completely inside the region of a variable
means prime implicant contains variable
– Completely outside the region of a variable
means prime implicant contains negation
00
0 1

A

^1

1

^
^

Applied to Previous Map
C
B

01
0

11
0

10
1

0

0

0

q=c’b’+c’a’
B

^

00
00 0

01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^

A

^
^

A 4-Variable Karnaugh Map
D
C
First Minimization
D

^

01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^

A

^
^

B

00
00 0

C
B

^

00
00 0

01
0

11
0

10
0

01

0

1

1

1

11

0

1

0

1

10

0

1

1

1

^

A

C

^
^

Second Minimization
D
Minimal Forms for Previous
Slides:
y

ab ′d + bc ′d + a ′bc + acd ′

y

ac ′d + a ′bd + bcd ′ + ab ′c

Moral: A Boolean Function May Have
Several Different Minimal Forms
y Karnaugh Maps are Ineffective for
Functions with More than Six Inputs.
y
Quine McClusky Minimization
Amenable to Machine Implementation
y Applicable to Circuits with an Arbitrary
Number of Inputs
y Effective Procedure for Finding Prime
Implicants, but …
y Can Require an Exponential Amount of
Time for Some Circuits
y
Quine-McClusky Procedure
Start with The Function Truth Table
y Extract All Input Combinations that
Produce a TRUE Output (MinTerms)
y Group All MinTerms by The Number of
Ones They Contain
y Combine Minterms from Adjacent
Groups
y
More Quine-McClusky
Two Min-Terms Combine If They Differ
by Only One Bit
y The Combined MinTerm has an x in the
Differing Position
y Create New Groups From Combined
Min-Terms
y Each Member of A New Group Must
Have the Same Number of 1’s and x’s
y
Yet More Quine-McClusky
Each Member of A Group Must Have
x’s in The Same Position.
y Combine Members of the New Groups
To Create More New Groups
y Combined Terms Must Differ By One
Bit, and Have x’s in the Same Positions
y Combine as Much as Possible
y Select Prime Implicants to “Cover” All
Ones in the Function
y
Quine-McClusky Example 1
Numbers in Parentheses are Truth-Table
Positions.

0011(3) 1100(12)
0111(7) 1011(11) 1101(13)
1110(14)
1111(15)
Quine-McClusky Example 2
New Groups After Combining MinTerms

0x11(3,7)
1x11(11,15)
x011(3,11)
x111(7,15)

110x(12,13)
111x(14,15)
11x0(12,14)
11x1(13,15)
Quine-McClusky Example 3
The Final Two Groups
Note That These Two Elements Cover
All Truth-Table Positions

xx11(3,7,11,15)
11xx(12,13,14,15)
Quine-McClusky Example 4
Each Group Element Represents a Prime
Implicant
y It is Necessary to Select Group Elements
to Cover All Truth-Table Positions.
y In This Case, ab+cd is the Minimal
Formula.
y In General, Selecting a Minimal Number
of Prime Implicants is NP-Complete
y
Basic Logic Symbols

And

Or

Not
The Exclusive Or Function

Xor
0
1

0
0
1

1
1
0
A Simple Logic Diagram

Signal Flow
Additional Logic Symbols

Nand

Nor

Buffer Xnor
Sequential Logic
Contains Memory Elements
y Memory is Provided by Feedback
y Circuit diagrams generally have
implicit or explicit cycles
y Two Styles: Synchronous and
Asynchronous
y
An RS Flip-Flop

S

R

Q

Q’
RS Characteristics
If S=0 and R=1, Q is set to 1, and Q’ is
reset to 0
y If R=0 and S=1, Q is reset to 0, and Q’ is
set to 1
y If S=1 and R=1, Q and Q’ maintain their
previous state.
y If S=0 and R=0, a transision to S=1, R=1
will cause oscillation.
y
Instability
RS flip-flops can become unstable if
both R and S are set to zero.
y All Sequential elements are
fundamentally unstable under certain
conditions
y

– Invalid Transisions
– Transisions too close together
– Transisions at the wrong time
D Flip-Flops
D-Flip Flop Characteristics
Avoids the instability of the RS flip-flop
y Retains its last input value
y Formally known as a “Delay” flip-flop
y May become unstable if transisions are
too close together
y Is generally implemented as a special
circuit, not as pictured here.
y
A Clocked D Flip-Flop
Clocked D-Flip Flop
Characteristics
Synchronizes transisions with a clock
y Input should remain stable while clock
is active
y Transision at the wrong time can cause
instability
y

– Changes while clock is active
– Changes simultaneous with clock
Flip-Flop Symbols

S

R

Q

Q’

D
Clk

Q

Q’

J

K

Q

Q’

T
Clk

Flip-Flop Symbols Contain Implicit
Feedback Loops

Q

Q’
A CMOS Flip-Flop
Clk
Q
D
Q’
Clk’
CMOS Logic Elements
CMOS = Complementary MOS
y CMOS Elements Often Require 2 Clocks
or 2 Controls
y Clocks or Controls must be
Complements of One another
y Clock-Skew (Non-Simultaneous
changes in both clocks) can cause
problems
y
An Asynchronous Sequential
Circuit
Combinational Logic

D
Clk

Q
Q’
Asynchronous Circuits
y

Combinational Logic is used:
– To Compute New States
– To Compute Outputs

State is maintained in Asynchronous
Circuit Elements
y Care must be used to avoid oscillations
y
A Synchronous Sequential
Circuit
Combinational Logic
D
Clk

D

Q
Q’
Synchronous Circuits
y

Combinational Logic is used to:
– Compute New States
– Compute Outputs

State is maintained in Synchronous
Flip-Flops
y State Changes can be made only when
clock changes
y Combinational Logic Must be Stable
when Clock is Active
y
Register Symbol
Input
16

Load
Clock
16

Output
Register Issues
Generally A Collection of D Flip-Flops
y Can be Synchronous or Asynchronous
y Default is Assumption is Synchronous
y May have internal wiring to:
y

– Perform Shifts
– Set/Clear
– All-Zero Status Flag
Tristate Elements
y

Three States:
– Zero (Output is grounded)
– One (Output connected to Power Terminal)
– High-Impedance (Output Not Connected to
Either Power Or Ground)

y

Can be Used to Construct Cheap
Multiplexors
CMOS Tri-state Buffers

Non-Inverting

Inverting
Tri-State Buffer Issues
The Gate Amplifies its Signal
y May be Inverting or Non-Inverting
y Often used to Construct Multiplexors
Using Wired-Or Connections
y
More Tri-State Issues
In a Wired-Or Connection, Only One
Buffer can be in Non-Tristate State
y Violating This Rule Can Destroy The
Circuit Due a Power/Ground Short
y

1

1

1

DANGER!
0
The CMOS Transmission Gate
Transmission Gate Issues
Similar to Tristate Buffer
y Has No Amplification
y Number of Consecutive Transmission
Gates is Limited
y Similar Problems With Wired-Or
Connections
y

Weitere ähnliche Inhalte

Was ist angesagt?

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 03 Boolean Algebra and Combinational Logic
Chapter 03 Boolean Algebra and Combinational LogicChapter 03 Boolean Algebra and Combinational Logic
Chapter 03 Boolean Algebra and Combinational LogicSSE_AndyLi
 
Boolean algebra And Logic Gates
Boolean algebra And Logic GatesBoolean algebra And Logic Gates
Boolean algebra And Logic GatesKumar
 
Basic gates and boolean algebra
Basic gates and boolean algebraBasic gates and boolean algebra
Basic gates and boolean algebraSudheesh S Madhav
 
digital logic design Chapter 2 boolean_algebra_&_logic_gates
digital logic design Chapter 2 boolean_algebra_&_logic_gatesdigital logic design Chapter 2 boolean_algebra_&_logic_gates
digital logic design Chapter 2 boolean_algebra_&_logic_gatesImran Waris
 
Digital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsDigital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsLekashri Subramanian
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraelfeds916
 
Introduction to logic gate
Introduction to logic gateIntroduction to logic gate
Introduction to logic gatechauhankapil
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebramdaglis
 
Boolean expression org.
Boolean expression org.Boolean expression org.
Boolean expression org.mshoaib15
 
DM2020 boolean algebra
DM2020 boolean algebraDM2020 boolean algebra
DM2020 boolean algebraRobert Geofroy
 
simplification of boolean algebra
simplification of boolean algebrasimplification of boolean algebra
simplification of boolean algebramayannpolisticoLNU
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebragavhays
 

Was ist angesagt? (20)

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
 
BOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATEBOOLEAN ALGEBRA & LOGIC GATE
BOOLEAN ALGEBRA & LOGIC GATE
 
Chapter 03 Boolean Algebra and Combinational Logic
Chapter 03 Boolean Algebra and Combinational LogicChapter 03 Boolean Algebra and Combinational Logic
Chapter 03 Boolean Algebra and Combinational Logic
 
Boolean algebra And Logic Gates
Boolean algebra And Logic GatesBoolean algebra And Logic Gates
Boolean algebra And Logic Gates
 
Basic gates and boolean algebra
Basic gates and boolean algebraBasic gates and boolean algebra
Basic gates and boolean algebra
 
digital logic design Chapter 2 boolean_algebra_&_logic_gates
digital logic design Chapter 2 boolean_algebra_&_logic_gatesdigital logic design Chapter 2 boolean_algebra_&_logic_gates
digital logic design Chapter 2 boolean_algebra_&_logic_gates
 
Digital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 unitsDigital logic circuits important question and answers for 5 units
Digital logic circuits important question and answers for 5 units
 
Digital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebraDigital systems logicgates-booleanalgebra
Digital systems logicgates-booleanalgebra
 
Logic Equation Simplification
Logic Equation SimplificationLogic Equation Simplification
Logic Equation Simplification
 
Introduction to logic gate
Introduction to logic gateIntroduction to logic gate
Introduction to logic gate
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
Boolean algebra
Boolean algebraBoolean algebra
Boolean algebra
 
Boolean expression org.
Boolean expression org.Boolean expression org.
Boolean expression org.
 
DM2020 boolean algebra
DM2020 boolean algebraDM2020 boolean algebra
DM2020 boolean algebra
 
Chapter 5 boolean algebra
Chapter 5 boolean algebraChapter 5 boolean algebra
Chapter 5 boolean algebra
 
simplification of boolean algebra
simplification of boolean algebrasimplification of boolean algebra
simplification of boolean algebra
 
Digital logic circuit
Digital logic circuitDigital logic circuit
Digital logic circuit
 
Boolean Algebra
Boolean AlgebraBoolean Algebra
Boolean Algebra
 
Boolean Logic
Boolean LogicBoolean Logic
Boolean Logic
 
Boolean algebra and logic gates
Boolean algebra and logic gatesBoolean algebra and logic gates
Boolean algebra and logic gates
 

Ähnlich wie Logic design basics

Ähnlich wie Logic design basics (20)

Determinants
DeterminantsDeterminants
Determinants
 
determinants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfdeterminants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdf
 
determinants-160504230830.pdf
determinants-160504230830.pdfdeterminants-160504230830.pdf
determinants-160504230830.pdf
 
Karnaugh maps
Karnaugh mapsKarnaugh maps
Karnaugh maps
 
Lect 2 boolean algebra (4 5-21)
Lect 2 boolean algebra (4 5-21)Lect 2 boolean algebra (4 5-21)
Lect 2 boolean algebra (4 5-21)
 
booleanalgebra-140914001141-phpapp01 (1).ppt
booleanalgebra-140914001141-phpapp01 (1).pptbooleanalgebra-140914001141-phpapp01 (1).ppt
booleanalgebra-140914001141-phpapp01 (1).ppt
 
3,EEng k-map.pdf
3,EEng k-map.pdf3,EEng k-map.pdf
3,EEng k-map.pdf
 
9402730.ppt
9402730.ppt9402730.ppt
9402730.ppt
 
TABREZ KHAN.ppt
TABREZ KHAN.pptTABREZ KHAN.ppt
TABREZ KHAN.ppt
 
Chapter-3.ppt
Chapter-3.pptChapter-3.ppt
Chapter-3.ppt
 
Vivek
VivekVivek
Vivek
 
Generalized linear model
Generalized linear modelGeneralized linear model
Generalized linear model
 
sop_pos(DE).pptx
sop_pos(DE).pptxsop_pos(DE).pptx
sop_pos(DE).pptx
 
Introduction of determinant
Introduction of determinantIntroduction of determinant
Introduction of determinant
 
Simplex algorithm
Simplex algorithmSimplex algorithm
Simplex algorithm
 
Boolean Algebra SOP POS_Computer Architecture.pdf
Boolean Algebra SOP POS_Computer Architecture.pdfBoolean Algebra SOP POS_Computer Architecture.pdf
Boolean Algebra SOP POS_Computer Architecture.pdf
 
Ch02 5
Ch02 5Ch02 5
Ch02 5
 
chp-1-matrices-determinants1 (2).ppt
chp-1-matrices-determinants1 (2).pptchp-1-matrices-determinants1 (2).ppt
chp-1-matrices-determinants1 (2).ppt
 
Matrices ppt
Matrices pptMatrices ppt
Matrices ppt
 
Boolean Algebra DLD
Boolean Algebra DLDBoolean Algebra DLD
Boolean Algebra DLD
 

Kürzlich hochgeladen

Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 

Kürzlich hochgeladen (20)

Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 

Logic design basics