SlideShare a Scribd company logo
1 of 15
DIGITAL ELECTRONICS CIRCUIT
PREPARED BY
MS.SHANKHA MITRA SUNANI
ASSISTANT PROF.IN THE
DEPARTMENT OF ETC
P.M.E.C GOVT.ENGINEERING
COLLEGE BERHAMPUR
CONTENT
MODULE – I
Number System:
• Introduction to various number systems and their Conversion
• Arithmetic Operation using 1’s and 2`s Compliments,
• Signed Binary number
• Introduction to Binary codes and their applications.
• Boolean algebra and identities, Complete Logic set
• logic gates and truth tables
• Universal logic gates, NAND and NOR Logic Implementations
• Algebraic Reductionand realization using logic gates
• Canonical Logic Forms, Extracting Canonical Forms
• K-Maps: Two, Three and Four variable K-maps,
MODULE – II
COMBINATIONAL LOGIC DESIGN
• Concept of Digital Components
• HALF ADDER,FULL ADDER,HALF SUBSTRACTOR,FULL SUBSTRACTOR
• BINARY MULTIPLIER,MAGNITUDE COMPARATOR
• Line Decoder, encoders
• Multiplexers and De-multiplexers
Synchronous Sequential logic Design
• Latches (SR, D)
• Flip-Flops
• characteristics equation and state diagram of each FFs
• Conversion of Flip-Flops
• Analysis of Clocked Sequential circuits and Mealy and Moore Models of Finite State
Machines
COUNTERS
• Binary Counters :Introduction
• Principle and design of synchronous counters
• Principle and design of asynchronous counters
• Design of MOD-N counters
• Ring counters. Decade counters
• State Diagram of binary counters
MODULE – III
Shift resistors
• Principle of 4-bit shift resistors
• Shifting principle, Timing Diagram
• SISO, SIPO ,PISO and PIPO resistors.
Memory and Programmable Logic
• Types of Memories, Memory Decoding, error detection and correction),
• RAM and ROMs. Programmable Logic Array, Programmable Array Logic, Sequential
Programmable Devices.
IC Logic Families
• Properties DTL, RTL, TTL, I2L and CMOS and its gate level implementation
• A/D converters and D/A converters
The general idea is to introduce you to the different number systems: Binary, Octal etc.
and how to convert those numbers to/from the decimal number system
How do you convert a binary to decimal?
Convert 11010 to decimal.
•First write the binary number as-
1 1 0 1 0
• now below every digit write the weight of that position as-
1 1 0 1 0
4 3 2 1 0
2 2 2 2 2
• rewrite them in the expanded form as-
1 1 0 1 0
16 8 4 2 1
• then multiply the corresponding values and add the resulting terms
1*16 + 1*8 + 0*4 + 1*2 + 0*1
= 16 + 8 + 0 + 2 + 0
= 26
How to convert a decimal number into binary form?
To convert a decimal number to binary, keep dividing the number by 2 until the quotient
reaches 0 and note all the remainders obtained after every division
Convert 73 to binary..
Quotient remainder
• 73/2 = 1 36
• 36/2 = 0 18
• 18/2 = 0 9
• 9/2 = 1 4
• 4/2 = 0 2
• 2/2 = 0 1
• 1/2 = 1 0
• write the remainders in reverse order i.e. from bottom to top. So the binary equivalent of
73 is 1001001.
BINARY ADDITION
There are four basic rules for binary addition--
• 0+0= 0
• 0+1 = 1
• 1 +0= 1
• 1 + 1 = 10
• Let's add two binary numbers say- 10011 and 01000. Binary addition is also carried out the same way as you
normally add two numbers
• 10011
• 01000
• --------
• 11011
• BINARY SUBTRACTION
Basic Rules for binary subtraction are-
• 0-0=0
• 1-0 =1
• 1-1 =1
• 10-1 = 1
8
Boolean Algebra
• George Boole 2 November 1815 Lincoln Lincolnshire, England – 8 December 1864 Ballintemple,
Ireland Professor at Queens College, Cork, Ireland.spring of 1847 that he put his ideas into the
pamphlet called Mathematical Analysis of Logic.” from wikipedia.com he developed boolean
algebra.
• Theorems & Proofs
Theorem 1: a+b = b+a, ab=ba (commutative)
Theorem 2: a+bc = (a+b)(a+c) (distributive)
Theorem3 a(b+c) = ab + ac
Theorem 4: a+0=a, a1 = a (identity)
Theorem 5: a+a’=1, a a’= 0 (complement) X + X’ = 1 X · X’ = 0
Associative X+(Y+Z)=(X+Y)+Z
Theorem 6 (Involution Laws):
• For every element a in , (a')' = a
Proof: a is one complement of a'.
The complement of a' is unique
Thus a = (a')'
Theorem 7 (Absorption Law): For every pair a,b in a·(a+b) = a; a + a·b = a.
Proof: a(a+b)
= (a+0)(a+b)
= a+0·b
= a + 0
= a
Theorem 8
For every pair a, b in B
a + a’*b = a + b; a*(a’ + b) = a*b
Proof: a + a’*b
= (a + a’)*(a + b)
= (1)*(a + b)
= (a + b)
Theorem 9: De Morgan’s Law
• (X + Y)’ = X’ · Y’
• (XY)’ = X’ + Y’
Simplify
F=X’YZ+X’YZ’+XZ
Duals
• What is meant by the dual of a function?
– The dual of a function is obtained by interchanging OR and AND operations
and replacing 1s and 0s with 0s and 1s.
Show that a’b’+ab+a’b = a’+b
Proof 1: a’b’+ab+a’b = a’b’+(a+a’)b
= a’b’ + b
= a’ + b
SIMPLIFY (a’b’+c)(a+b)(b’+ac)’
= (a’b’+c)(a+b)(b(ac)’)
= (a’b’+c)(a+b)b(a’+c’)
= (a’b’+c)b(a’+c’)
= (a’b’b+bc)(a’+c’)
= (0+bc)(a’+c’)
= bc(a’+c’)
= a’bc+bcc’
= a’bc+0
= a’bc
10
LOGIC Gates
• The most basic digital devices are called gates.
• Gates got their name from their function of allowing or blocking (gating) the flow
of digital information.
• A gate has one or more inputs and produces an output depending on the input(s).
• A gate is called a combinational circuit.
• Three most important gates are: AND, OR, NOT
Exclusive-OR Gate
X Y Z
X
Y
Z
0 0 0
0 1 1
1 0 1
1 1 0
X
Y
Z X Y Z
0 0 1
0 1 0
1 0 0
1 1 1
UNIVERSAL GATE
• A universal gate is a gate which can implement any Boolean function without need to use
any other gate type.
• The NAND and NOR gates are universal gates.
• In practice, this is advantageous since NAND and NOR gates are economical and easier to
fabricate and are the basic gates used in all IC digital logic families.
• In fact, an AND gate is typically implemented as a NAND gate followed by an inverter not
the other way around!!
• Likewise, an OR gate is typically implemented as a NOR gate followed by an inverter not
the other way around!!
NAND Gate is a Universal Gate:
To prove that any Boolean function can be implemented using only NAND gates, we will show
that the AND, OR, and NOT operations can be performed using only these gates.
• Implementing an Inverter Using only NAND Gate
• The figure shows two ways in which a NAND gate can be used as an inverter (NOT gate).
• All NAND input pins connect to the input signal A gives an output A’.
COUNTER
• Counter is a sequential logic circuit which is count the binary sequence
sequentially.
• Counter is divided in to two types
• Synchronous counter
• Asynchronous counter
• In synchronous counter all the flipflop is triggered by clockpulse
simultaneously
• In asynchronous counter the first flip flop is triggered by clock pulse and the
output of first flip flop is given to second flip flop and so on
• According to counting the sequence fipflop is divided in to two types
• UP COUNTER
• DOWN COUNTER
• In up counter the counter counts in ascending order
• In down counter the counter counts the binary sequence in decending order
• If n= Number of fipflop is used in the counter to design & N= Number of binary
states that counter count then N<=2n
Decppt

More Related Content

What's hot

What's hot (20)

dld 01-introduction
dld 01-introductiondld 01-introduction
dld 01-introduction
 
Digital Logic & Design
Digital Logic & DesignDigital Logic & Design
Digital Logic & Design
 
Logic Design
Logic DesignLogic Design
Logic Design
 
Chapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital SystemsChapter 01 Basic Principles of Digital Systems
Chapter 01 Basic Principles of Digital Systems
 
Chapter 2 ee202 boolean part a
Chapter 2 ee202 boolean part aChapter 2 ee202 boolean part a
Chapter 2 ee202 boolean part a
 
Logic Gates O level Past Papers questions
Logic Gates O level Past Papers questionsLogic Gates O level Past Papers questions
Logic Gates O level Past Papers questions
 
Alu1
Alu1Alu1
Alu1
 
Dpsd lecture-notes
Dpsd lecture-notesDpsd lecture-notes
Dpsd lecture-notes
 
Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system Ee 202 chapter 1 number and code system
Ee 202 chapter 1 number and code system
 
Number system
Number systemNumber system
Number system
 
number system
number systemnumber system
number system
 
Chapter 07 Digital Alrithmetic and Arithmetic Circuits
Chapter 07 Digital Alrithmetic and Arithmetic CircuitsChapter 07 Digital Alrithmetic and Arithmetic Circuits
Chapter 07 Digital Alrithmetic and Arithmetic Circuits
 
Number system
Number systemNumber system
Number system
 
LOGIC GATES - SARTHAK YADAV
LOGIC GATES - SARTHAK YADAVLOGIC GATES - SARTHAK YADAV
LOGIC GATES - SARTHAK YADAV
 
1
11
1
 
Digital design chap 2
Digital design    chap 2Digital design    chap 2
Digital design chap 2
 
Combinational Logic Unit 2
Combinational Logic Unit 2Combinational Logic Unit 2
Combinational Logic Unit 2
 
Number system logic gates
Number system logic gatesNumber system logic gates
Number system logic gates
 
Number system
Number systemNumber system
Number system
 
Logic design and switching theory
Logic design and switching theoryLogic design and switching theory
Logic design and switching theory
 

Similar to Decppt

digital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxdigital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxabelllll
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptxGobinathAECEJRF1101
 
Number_Systems_and_Boolean_Algebra.ppt
Number_Systems_and_Boolean_Algebra.pptNumber_Systems_and_Boolean_Algebra.ppt
Number_Systems_and_Boolean_Algebra.pptVEERA BOOPATHY E
 
Chapter 5_combinational logic (EEEg4302).pdf
Chapter 5_combinational logic (EEEg4302).pdfChapter 5_combinational logic (EEEg4302).pdf
Chapter 5_combinational logic (EEEg4302).pdfTamiratDejene1
 
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECE
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECEDigital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECE
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECESeshaVidhyaS
 
18CSC203J_COA_Unit 2 final.pptx
18CSC203J_COA_Unit 2 final.pptx18CSC203J_COA_Unit 2 final.pptx
18CSC203J_COA_Unit 2 final.pptxtakix43466
 
Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Asif Iqbal
 
Digital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxDigital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxThapar Institute
 
Lata digital electronics
Lata digital electronicsLata digital electronics
Lata digital electronicslata kushwaha
 
Digital electronics logic design complete notes.pdf
Digital electronics logic design complete notes.pdfDigital electronics logic design complete notes.pdf
Digital electronics logic design complete notes.pdf022BELEHemant
 
UNIT - II.pptx
UNIT - II.pptxUNIT - II.pptx
UNIT - II.pptxamudhak10
 
combinational-circuit (1).ppt
combinational-circuit (1).pptcombinational-circuit (1).ppt
combinational-circuit (1).pptThanmayiKumar
 

Similar to Decppt (20)

digital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptxdigital-electronics lecture Ch 1and 2 -1.pptx
digital-electronics lecture Ch 1and 2 -1.pptx
 
Number Systems.ppt
Number Systems.pptNumber Systems.ppt
Number Systems.ppt
 
02-gates-w.pptx
02-gates-w.pptx02-gates-w.pptx
02-gates-w.pptx
 
21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx21EC201– Digital Principles and system design.pptx
21EC201– Digital Principles and system design.pptx
 
Number_Systems_and_Boolean_Algebra.ppt
Number_Systems_and_Boolean_Algebra.pptNumber_Systems_and_Boolean_Algebra.ppt
Number_Systems_and_Boolean_Algebra.ppt
 
Chapter 5_combinational logic (EEEg4302).pdf
Chapter 5_combinational logic (EEEg4302).pdfChapter 5_combinational logic (EEEg4302).pdf
Chapter 5_combinational logic (EEEg4302).pdf
 
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECE
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECEDigital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECE
Digital Electronics (EC8392) UNIT-II -PPT-S.SESHA VIDHYA/ ASP/ECE
 
5941981.ppt
5941981.ppt5941981.ppt
5941981.ppt
 
18CSC203J_COA_Unit 2 final.pptx
18CSC203J_COA_Unit 2 final.pptx18CSC203J_COA_Unit 2 final.pptx
18CSC203J_COA_Unit 2 final.pptx
 
digitalelectronics.ppt
digitalelectronics.pptdigitalelectronics.ppt
digitalelectronics.ppt
 
Digital Logic
Digital LogicDigital Logic
Digital Logic
 
CA UNIT II.pptx
CA UNIT II.pptxCA UNIT II.pptx
CA UNIT II.pptx
 
Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4Synchronous Sequential Logic Unit 4
Synchronous Sequential Logic Unit 4
 
UNIT-1_CSA.pdf
UNIT-1_CSA.pdfUNIT-1_CSA.pdf
UNIT-1_CSA.pdf
 
Digital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptxDigital Electronics Unit_1.pptx
Digital Electronics Unit_1.pptx
 
Lata digital electronics
Lata digital electronicsLata digital electronics
Lata digital electronics
 
Digital electronics logic design complete notes.pdf
Digital electronics logic design complete notes.pdfDigital electronics logic design complete notes.pdf
Digital electronics logic design complete notes.pdf
 
UNIT - II.pptx
UNIT - II.pptxUNIT - II.pptx
UNIT - II.pptx
 
De boolean algebra
De boolean algebraDe boolean algebra
De boolean algebra
 
combinational-circuit (1).ppt
combinational-circuit (1).pptcombinational-circuit (1).ppt
combinational-circuit (1).ppt
 

More from shankha Shankhamitrasunani (6)

Pptdec2
Pptdec2Pptdec2
Pptdec2
 
Aec ppt2
Aec ppt2Aec ppt2
Aec ppt2
 
Ppt am
Ppt amPpt am
Ppt am
 
Pptdec2
Pptdec2Pptdec2
Pptdec2
 
Aec ppt2
Aec ppt2Aec ppt2
Aec ppt2
 
Ppt control
Ppt controlPpt control
Ppt control
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 

Recently uploaded (20)

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 

Decppt

  • 1. DIGITAL ELECTRONICS CIRCUIT PREPARED BY MS.SHANKHA MITRA SUNANI ASSISTANT PROF.IN THE DEPARTMENT OF ETC P.M.E.C GOVT.ENGINEERING COLLEGE BERHAMPUR
  • 2. CONTENT MODULE – I Number System: • Introduction to various number systems and their Conversion • Arithmetic Operation using 1’s and 2`s Compliments, • Signed Binary number • Introduction to Binary codes and their applications. • Boolean algebra and identities, Complete Logic set • logic gates and truth tables • Universal logic gates, NAND and NOR Logic Implementations • Algebraic Reductionand realization using logic gates • Canonical Logic Forms, Extracting Canonical Forms • K-Maps: Two, Three and Four variable K-maps, MODULE – II COMBINATIONAL LOGIC DESIGN • Concept of Digital Components • HALF ADDER,FULL ADDER,HALF SUBSTRACTOR,FULL SUBSTRACTOR • BINARY MULTIPLIER,MAGNITUDE COMPARATOR • Line Decoder, encoders • Multiplexers and De-multiplexers
  • 3. Synchronous Sequential logic Design • Latches (SR, D) • Flip-Flops • characteristics equation and state diagram of each FFs • Conversion of Flip-Flops • Analysis of Clocked Sequential circuits and Mealy and Moore Models of Finite State Machines COUNTERS • Binary Counters :Introduction • Principle and design of synchronous counters • Principle and design of asynchronous counters • Design of MOD-N counters • Ring counters. Decade counters • State Diagram of binary counters MODULE – III Shift resistors • Principle of 4-bit shift resistors • Shifting principle, Timing Diagram • SISO, SIPO ,PISO and PIPO resistors.
  • 4. Memory and Programmable Logic • Types of Memories, Memory Decoding, error detection and correction), • RAM and ROMs. Programmable Logic Array, Programmable Array Logic, Sequential Programmable Devices. IC Logic Families • Properties DTL, RTL, TTL, I2L and CMOS and its gate level implementation • A/D converters and D/A converters
  • 5. The general idea is to introduce you to the different number systems: Binary, Octal etc. and how to convert those numbers to/from the decimal number system How do you convert a binary to decimal? Convert 11010 to decimal. •First write the binary number as- 1 1 0 1 0 • now below every digit write the weight of that position as- 1 1 0 1 0 4 3 2 1 0 2 2 2 2 2 • rewrite them in the expanded form as- 1 1 0 1 0 16 8 4 2 1 • then multiply the corresponding values and add the resulting terms 1*16 + 1*8 + 0*4 + 1*2 + 0*1 = 16 + 8 + 0 + 2 + 0 = 26 How to convert a decimal number into binary form? To convert a decimal number to binary, keep dividing the number by 2 until the quotient reaches 0 and note all the remainders obtained after every division
  • 6. Convert 73 to binary.. Quotient remainder • 73/2 = 1 36 • 36/2 = 0 18 • 18/2 = 0 9 • 9/2 = 1 4 • 4/2 = 0 2 • 2/2 = 0 1 • 1/2 = 1 0 • write the remainders in reverse order i.e. from bottom to top. So the binary equivalent of 73 is 1001001.
  • 7. BINARY ADDITION There are four basic rules for binary addition-- • 0+0= 0 • 0+1 = 1 • 1 +0= 1 • 1 + 1 = 10 • Let's add two binary numbers say- 10011 and 01000. Binary addition is also carried out the same way as you normally add two numbers • 10011 • 01000 • -------- • 11011 • BINARY SUBTRACTION Basic Rules for binary subtraction are- • 0-0=0 • 1-0 =1 • 1-1 =1 • 10-1 = 1
  • 8. 8 Boolean Algebra • George Boole 2 November 1815 Lincoln Lincolnshire, England – 8 December 1864 Ballintemple, Ireland Professor at Queens College, Cork, Ireland.spring of 1847 that he put his ideas into the pamphlet called Mathematical Analysis of Logic.” from wikipedia.com he developed boolean algebra. • Theorems & Proofs Theorem 1: a+b = b+a, ab=ba (commutative) Theorem 2: a+bc = (a+b)(a+c) (distributive) Theorem3 a(b+c) = ab + ac Theorem 4: a+0=a, a1 = a (identity) Theorem 5: a+a’=1, a a’= 0 (complement) X + X’ = 1 X · X’ = 0 Associative X+(Y+Z)=(X+Y)+Z Theorem 6 (Involution Laws): • For every element a in , (a')' = a Proof: a is one complement of a'. The complement of a' is unique Thus a = (a')' Theorem 7 (Absorption Law): For every pair a,b in a·(a+b) = a; a + a·b = a. Proof: a(a+b) = (a+0)(a+b) = a+0·b = a + 0 = a
  • 9. Theorem 8 For every pair a, b in B a + a’*b = a + b; a*(a’ + b) = a*b Proof: a + a’*b = (a + a’)*(a + b) = (1)*(a + b) = (a + b) Theorem 9: De Morgan’s Law • (X + Y)’ = X’ · Y’ • (XY)’ = X’ + Y’ Simplify F=X’YZ+X’YZ’+XZ
  • 10. Duals • What is meant by the dual of a function? – The dual of a function is obtained by interchanging OR and AND operations and replacing 1s and 0s with 0s and 1s. Show that a’b’+ab+a’b = a’+b Proof 1: a’b’+ab+a’b = a’b’+(a+a’)b = a’b’ + b = a’ + b SIMPLIFY (a’b’+c)(a+b)(b’+ac)’ = (a’b’+c)(a+b)(b(ac)’) = (a’b’+c)(a+b)b(a’+c’) = (a’b’+c)b(a’+c’) = (a’b’b+bc)(a’+c’) = (0+bc)(a’+c’) = bc(a’+c’) = a’bc+bcc’ = a’bc+0 = a’bc 10
  • 11. LOGIC Gates • The most basic digital devices are called gates. • Gates got their name from their function of allowing or blocking (gating) the flow of digital information. • A gate has one or more inputs and produces an output depending on the input(s). • A gate is called a combinational circuit. • Three most important gates are: AND, OR, NOT
  • 12. Exclusive-OR Gate X Y Z X Y Z 0 0 0 0 1 1 1 0 1 1 1 0 X Y Z X Y Z 0 0 1 0 1 0 1 0 0 1 1 1
  • 13. UNIVERSAL GATE • A universal gate is a gate which can implement any Boolean function without need to use any other gate type. • The NAND and NOR gates are universal gates. • In practice, this is advantageous since NAND and NOR gates are economical and easier to fabricate and are the basic gates used in all IC digital logic families. • In fact, an AND gate is typically implemented as a NAND gate followed by an inverter not the other way around!! • Likewise, an OR gate is typically implemented as a NOR gate followed by an inverter not the other way around!! NAND Gate is a Universal Gate: To prove that any Boolean function can be implemented using only NAND gates, we will show that the AND, OR, and NOT operations can be performed using only these gates. • Implementing an Inverter Using only NAND Gate • The figure shows two ways in which a NAND gate can be used as an inverter (NOT gate). • All NAND input pins connect to the input signal A gives an output A’.
  • 14. COUNTER • Counter is a sequential logic circuit which is count the binary sequence sequentially. • Counter is divided in to two types • Synchronous counter • Asynchronous counter • In synchronous counter all the flipflop is triggered by clockpulse simultaneously • In asynchronous counter the first flip flop is triggered by clock pulse and the output of first flip flop is given to second flip flop and so on • According to counting the sequence fipflop is divided in to two types • UP COUNTER • DOWN COUNTER • In up counter the counter counts in ascending order • In down counter the counter counts the binary sequence in decending order • If n= Number of fipflop is used in the counter to design & N= Number of binary states that counter count then N<=2n