SlideShare a Scribd company logo
1 of 10
A lab-based project
Report on
Design of 3 Bit Majority Circuit
Submitted in the partial fulfillment of the requirements for the award of degree of
BACHELOR OF TECHNOLOGY
IN
ELECTRICAL AND ELECTRON ICS ENGINEERING
By
P.SANJAY KUMAR(18981A0241)
Under the esteemed guidance of
M R .D . BHASKAR A R AO
Associate Professor
DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING
RAGHU ENGINEERING COLLEGE (autonomous)
(Permanently affiliated to JNTU- Kakinada, Approved by A.I.C.T.E - New Delhi)
Dakamarri, Visakhapatnam
JULY 2020
RAGHU ENGINEERING COLLEGE
Department of Electrical and Electronics Engineering
CERTIFICATE
This is to certify that this Digital Electronics Lab based work entitled as “DESIGN OF 3
BIT MAJORITY CIRCUIT ” submitted by P.SANJAY KUMAR (18981A0241) in partial
fulfillment of the requirements for the award of degree of Bachelor of Technology in
Electrical & Electronics Engineering at Raghu Engineering College during academic
year 2019-20.
We also declare that this minor project is our own effort and it has not been submitted to
any another university for award of any degree.
Signature of labincharge Signature of HOD
ACKN OWLED GEM EN T
I take this opportunity to express my sincere gratitude towards my respected
Mr.D.Bhaskara Rao we also grateful towards their support and continuous encouragement
,which were the constant source of inspiration for the completion of the research work
.Furthermore for the great enthusiasm they always shown for our work and also their
careful reading of this report have improved its quality considerably.
We sincerely appreciate their pronounced individualities, humanistic and warm
personal approach which has given us strength to carry out this work on steady and
smooth course. I humbly acknowledge a lifetime gratitude to their contribution.
Our special sincere thanks are due to K. Rahul Verma, Director and Raghu,
Chairman of Raghu Engineering College for their constant source of assurance and
strength to us during the entire period of this work.
Place: Visakhapatnam.
Date:
Contents:
Objective
Introduction
Majority Circuit
SOP
POS
Design of Circuits
Conclusion
References
Objective:
To Design a 3 Bit Majority Circuit
3 Bit -Majority Circuit:
A majority gate is a logical gate used in circuit complexity and other
applications of Boolean circuits. A majority gate returns true if and only
if more than 50% of its inputs are true.
Truth Table:
Sum Of Products:
The sum-of-products (SOP) form is a method (or form) of simplifying the Boolean
expressions of logic gates. In this SOP form of Boolean function representation, the variables
are operated by AND (product) to form a product term and all these product terms are
summed or added together to get the final function.
The sum-of-products form is also called as Disjunctive Normal Form as the product terms
are together and Disjunction operation is logical OR. Sum-of-products form is also called as
Standard SOP.
Ex: Boolean expression for majority function F = A’BC + AB’C + ABC ‘ + ABC
Truth table:
Now write the input variables combination with high output. F = AB + BC + AC
Checking
By Idempotence law, we know that
([ABC + ABC)] + ABC) = (ABC + ABC) = ABC
Now the function F = A’BC + AB’C + ABC’ + ABC
= A’BC + AB’C + ABC’ + ([ABC + ABC)] + ABC)
= (ABC + ABC ‘) + (ABC + AB’C) + (ABC + A’BC)
= AB (C + C ‘) + A (B + B’) C + (A + A’) BC
= AB + BC + AC.
Product Of Sums:
The product of sums form is a method (or form) of simplifying the Boolean expressions of
logic gates. In this POS form, all the variables are ORed, i.e. written as sums to form sum
terms.
All these sum terms are ANDed (multiplied) together to get the product-of-sum form. This
form is exactly opposite to the SOP form. So this can also be said as “Dual of SOP form”.
The product-of-sums form is also called as Conjunctive Normal Form as the sum terms are
ANDed together and Conjunction operation is logical AND. Product-of-sums form is also
called as Standard POS.
Example:
(A+B) * (A + B + C) * (C +D)
(A+B) ̅ * (C + D + E ̅)
POS form can be obtained by
Writing an OR term for each input combination, which produces LOW output.
Writing the input variables if the value is 0, and write the complement of the variable if its
value is 1.
AND the OR terms to obtain the output function.
Ex:
Boolean expression for majority function F = (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ +
B + C)
Ex:
Now write the input variables combination with high output. F = AB + BC + AC.
Checking
By Idempotence law, we know that
[(A + B + C) (A + B + C)] (A + B + C) = [(A + B + C)] (A + B + C) = (A + B + C)
Now the function
F = (A + B) (B + C) (A + C)
= (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ + B + C)
= [(A + B + C) (A + B + C)] (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ + B + C)
= [(A + B + C) (A + B + C ‘)] [(A + B + C) (A’ + B + C)] [(A + B + C) (A + B’ + C)]
= [(A + B) + (C * C ‘)] [(B + C) + (A * A’)] [(A + C) + (B * B’)]
= [(A + B) + 0] [(B + C) + 0] [(A + C) + 0] = (A + B) (B + C) (A + C)
Designing of circuits:
SOP EXPRESSION:
From the truth table
WE CAN WRITE SOP FOR HIGH OUTPUTS
SOP is a two level network, 1ST level consist of AND GATE ,2ND level consistof OR
GATE.
Q = A’BC+AB’C+ABC’+ABC
AND WE CAN MINIMISE THE EXPRESSION
BY USING BOOLEAN EXPRESSION
Q = A’BC+AB’C+AB(C’+C)
Q = A’BC+AB’C+AB (1)
Q = A’BC+A(B’C+B)
Q = A’BC+A(B+C)
NAND - NAND REALIZATION: Q = A’BC+A(B+C)
From the truth table
WE CAN WRITE POS FOR LOW OUTPUTS
SOP is a two level network, 1ST level consist of OR GATE ,2ND level consist of AND
GATE.
Q = ABC+ABC’+AB’C+A’BC
AND WE CAN MINIMISE THE EXPRESSION
BY USING BOOLEAN EXPRESSION
Q = (A+B) (C+C’)(A+B’+C) ( A’+B+C)
Q=(A+B) [AA’+AB+AC+A’B’+BN’+B’C+A’C+BC+CC]
Q= (A+B) [AB+AC+A’B’+B’C+A’C+BC+1]
Q = (A+B)[A(B+C)+A’(B’+C)+C(B’+B)+1]
Q= (A+B)[(A+A’){B+C+B’+C}+C+1]
Q=(A+B)[(B+B’+C+C’)+(1+C)]
Q=(A+B)[(1)+(1+C)]
Q= (A+B)(1+C)
POS:
y = (a+b)(1+c)
NOR-NOR Realization:
OBSERVATIONS:
From the above designs , we observed that when the inputs given to the circuit we get
majority of the inputs , which is more then 50% of the input.
Hence the 3 Bit Majority circuit is designed…
y = (a+b) (1+c)

More Related Content

What's hot

Code Conversion in 8085 Microprocessor
Code Conversion in 8085 MicroprocessorCode Conversion in 8085 Microprocessor
Code Conversion in 8085 MicroprocessorMOHIT AGARWAL
 
Verilog hdl design examples
Verilog hdl design examplesVerilog hdl design examples
Verilog hdl design examplesdennis gookyi
 
Programmable logic array
Programmable logic arrayProgrammable logic array
Programmable logic arrayHuba Akhtar
 
Programmable Logic Devices
Programmable Logic DevicesProgrammable Logic Devices
Programmable Logic Devicesanand hd
 
Introduction to ibm pc assembly language
Introduction to ibm pc assembly languageIntroduction to ibm pc assembly language
Introduction to ibm pc assembly languagewarda aziz
 
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)Programmable Logic Array(PLA) & Programmable Array Logic(PAL)
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)Revathi Subramaniam
 
Demultiplexer with vhdl code
Demultiplexer  with vhdl codeDemultiplexer  with vhdl code
Demultiplexer with vhdl codeVishal Bait
 
Degital 1
Degital 1Degital 1
Degital 1hnaita
 
1.ripple carry adder, full adder implementation using half adder.
1.ripple carry adder, full adder implementation using half adder.1.ripple carry adder, full adder implementation using half adder.
1.ripple carry adder, full adder implementation using half adder.MdFazleRabbi18
 
Interfacing memory with 8086 microprocessor
Interfacing memory with 8086 microprocessorInterfacing memory with 8086 microprocessor
Interfacing memory with 8086 microprocessorVikas Gupta
 
Electromagnetic fields: Review of vector algebra
Electromagnetic fields: Review of vector algebraElectromagnetic fields: Review of vector algebra
Electromagnetic fields: Review of vector algebraDr.SHANTHI K.G
 
Asynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 pptAsynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 pptSIVALAKSHMIPANNEERSE
 

What's hot (20)

Code Conversion in 8085 Microprocessor
Code Conversion in 8085 MicroprocessorCode Conversion in 8085 Microprocessor
Code Conversion in 8085 Microprocessor
 
Verilog hdl design examples
Verilog hdl design examplesVerilog hdl design examples
Verilog hdl design examples
 
Programmable logic array
Programmable logic arrayProgrammable logic array
Programmable logic array
 
Programmable Logic Devices
Programmable Logic DevicesProgrammable Logic Devices
Programmable Logic Devices
 
Vhdl programming
Vhdl programmingVhdl programming
Vhdl programming
 
Introduction to ibm pc assembly language
Introduction to ibm pc assembly languageIntroduction to ibm pc assembly language
Introduction to ibm pc assembly language
 
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)Programmable Logic Array(PLA) & Programmable Array Logic(PAL)
Programmable Logic Array(PLA) & Programmable Array Logic(PAL)
 
Demultiplexer with vhdl code
Demultiplexer  with vhdl codeDemultiplexer  with vhdl code
Demultiplexer with vhdl code
 
Electrical properties of p-n junction
Electrical properties of p-n junctionElectrical properties of p-n junction
Electrical properties of p-n junction
 
Degital 1
Degital 1Degital 1
Degital 1
 
Gopi 1 lab manual
Gopi 1 lab manualGopi 1 lab manual
Gopi 1 lab manual
 
Subtractor (1)
Subtractor (1)Subtractor (1)
Subtractor (1)
 
Demultiplexer
DemultiplexerDemultiplexer
Demultiplexer
 
1.ripple carry adder, full adder implementation using half adder.
1.ripple carry adder, full adder implementation using half adder.1.ripple carry adder, full adder implementation using half adder.
1.ripple carry adder, full adder implementation using half adder.
 
Avr instruction set
Avr instruction setAvr instruction set
Avr instruction set
 
Question bank digital electronics
Question bank digital electronicsQuestion bank digital electronics
Question bank digital electronics
 
Interfacing memory with 8086 microprocessor
Interfacing memory with 8086 microprocessorInterfacing memory with 8086 microprocessor
Interfacing memory with 8086 microprocessor
 
Electromagnetic fields: Review of vector algebra
Electromagnetic fields: Review of vector algebraElectromagnetic fields: Review of vector algebra
Electromagnetic fields: Review of vector algebra
 
Asynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 pptAsynchronous Sequential Circuit-Unit 4 ppt
Asynchronous Sequential Circuit-Unit 4 ppt
 
Encoder decoder
Encoder decoderEncoder decoder
Encoder decoder
 

Similar to DIGITAL ELECTRONICS DESIGN OF 3 BIT MAJORITY CIRCUIT

Digital electronics combinational log ckt sop pos kmap quine
Digital electronics combinational log ckt sop pos kmap quineDigital electronics combinational log ckt sop pos kmap quine
Digital electronics combinational log ckt sop pos kmap quineNilesh Bhaskarrao Bahadure
 
N301 Designing Circuits
N301 Designing CircuitsN301 Designing Circuits
N301 Designing Circuitsgavhays
 
Electronic devices and circuits.pptx
Electronic devices and circuits.pptxElectronic devices and circuits.pptx
Electronic devices and circuits.pptxArunKumar674066
 
Lecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxLecture 05-Logic expression and Boolean Algebra.pptx
Lecture 05-Logic expression and Boolean Algebra.pptxWilliamJosephat1
 
2,Combinational Logic Circuits.pdf
2,Combinational Logic Circuits.pdf2,Combinational Logic Circuits.pdf
2,Combinational Logic Circuits.pdfDamotTesfaye
 
Conversion of Boolean Function - R.D.Sivakumar
Conversion of Boolean Function - R.D.SivakumarConversion of Boolean Function - R.D.Sivakumar
Conversion of Boolean Function - R.D.SivakumarSivakumar R D .
 
Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Dhananjay Lakhe
 
Data flow model -Lecture-4
Data flow model -Lecture-4Data flow model -Lecture-4
Data flow model -Lecture-4Dr.YNM
 
Logic simplification sop and pos forms
Logic simplification sop and pos formsLogic simplification sop and pos forms
Logic simplification sop and pos formsManesh T
 
Bt0064, logic design
Bt0064, logic designBt0064, logic design
Bt0064, logic designsmumbahelp
 
Analysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAnalysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAllison Thompson
 

Similar to DIGITAL ELECTRONICS DESIGN OF 3 BIT MAJORITY CIRCUIT (20)

Digital electronics combinational log ckt sop pos kmap quine
Digital electronics combinational log ckt sop pos kmap quineDigital electronics combinational log ckt sop pos kmap quine
Digital electronics combinational log ckt sop pos kmap quine
 
N301 Designing Circuits
N301 Designing CircuitsN301 Designing Circuits
N301 Designing Circuits
 
Electronic devices and circuits.pptx
Electronic devices and circuits.pptxElectronic devices and circuits.pptx
Electronic devices and circuits.pptx
 
module3:Karnaugh Map
module3:Karnaugh Mapmodule3:Karnaugh Map
module3:Karnaugh Map
 
Chapter 4: Combinational Logic
Chapter 4: Combinational LogicChapter 4: Combinational Logic
Chapter 4: Combinational Logic
 
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
 
2,Combinational Logic Circuits.pdf
2,Combinational Logic Circuits.pdf2,Combinational Logic Circuits.pdf
2,Combinational Logic Circuits.pdf
 
Chapter 2 part b boolean soppos
Chapter 2 part b boolean sopposChapter 2 part b boolean soppos
Chapter 2 part b boolean soppos
 
9525.ppt
9525.ppt9525.ppt
9525.ppt
 
Combinational circuit
Combinational circuitCombinational circuit
Combinational circuit
 
Conversion of Boolean Function - R.D.Sivakumar
Conversion of Boolean Function - R.D.SivakumarConversion of Boolean Function - R.D.Sivakumar
Conversion of Boolean Function - R.D.Sivakumar
 
Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation Digital Electronics Standard boolean representation
Digital Electronics Standard boolean representation
 
Data flow model -Lecture-4
Data flow model -Lecture-4Data flow model -Lecture-4
Data flow model -Lecture-4
 
14 Lec11 2003
14 Lec11 200314 Lec11 2003
14 Lec11 2003
 
Logic simplification sop and pos forms
Logic simplification sop and pos formsLogic simplification sop and pos forms
Logic simplification sop and pos forms
 
Digital 4-bit Comprator
Digital 4-bit CompratorDigital 4-bit Comprator
Digital 4-bit Comprator
 
Bt0064, logic design
Bt0064, logic designBt0064, logic design
Bt0064, logic design
 
Analysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAnalysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB Software
 
B sc ii sem unit 2(b) ba
B sc ii sem unit 2(b) baB sc ii sem unit 2(b) ba
B sc ii sem unit 2(b) ba
 
Unit 04
Unit 04Unit 04
Unit 04
 

More from sanjay kumar pediredla

TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLAB
TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLABTIME RESPONSE OF SECOND ORDER SYSTEM USING MATLAB
TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLABsanjay kumar pediredla
 
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINK
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINKMODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINK
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINKsanjay kumar pediredla
 
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEM
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEMTHIS PPT ON ELECTRONIC FUEL INJECTION SYSTEM
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEMsanjay kumar pediredla
 
GREEN ENERGY ELECTRICAL POWER CONVERTER GREEN ENERGY ELE...
GREEN ENERGY ELECTRICAL POWER CONVERTER                      GREEN ENERGY ELE...GREEN ENERGY ELECTRICAL POWER CONVERTER                      GREEN ENERGY ELE...
GREEN ENERGY ELECTRICAL POWER CONVERTER GREEN ENERGY ELE...sanjay kumar pediredla
 
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABsanjay kumar pediredla
 
power systems ppt on Arc welding and Electric welding equipment and compariso...
power systems ppt on Arc welding and Electric welding equipment and compariso...power systems ppt on Arc welding and Electric welding equipment and compariso...
power systems ppt on Arc welding and Electric welding equipment and compariso...sanjay kumar pediredla
 
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...sanjay kumar pediredla
 
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT sanjay kumar pediredla
 
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT VALUE WITH COST ANAL...
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT  VALUE WITH COST ANAL...DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT  VALUE WITH COST ANAL...
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT VALUE WITH COST ANAL...sanjay kumar pediredla
 
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT  PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT sanjay kumar pediredla
 
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS SIMULATION OF DC SERIES MOTOR CHARACTERISTICS
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS sanjay kumar pediredla
 
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANT
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANTPROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANT
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANTsanjay kumar pediredla
 
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOT
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOTANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOT
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOTsanjay kumar pediredla
 
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB  LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB sanjay kumar pediredla
 
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTION
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTIONDOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTION
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTIONsanjay kumar pediredla
 
IMPULSE RESPONSE OF SECOND ORDER SYSTEM
IMPULSE RESPONSE OF SECOND ORDER SYSTEMIMPULSE RESPONSE OF SECOND ORDER SYSTEM
IMPULSE RESPONSE OF SECOND ORDER SYSTEMsanjay kumar pediredla
 

More from sanjay kumar pediredla (20)

TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLAB
TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLABTIME RESPONSE OF SECOND ORDER SYSTEM USING MATLAB
TIME RESPONSE OF SECOND ORDER SYSTEM USING MATLAB
 
PPT IS ON MICROGRID
PPT IS ON MICROGRIDPPT IS ON MICROGRID
PPT IS ON MICROGRID
 
UP AND DOWN FADING OF LED
UP AND DOWN FADING OF LEDUP AND DOWN FADING OF LED
UP AND DOWN FADING OF LED
 
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINK
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINKMODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINK
MODELLING OF DC SERVO MOTOR USING MATLAB-SIMULINK
 
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEM
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEMTHIS PPT ON ELECTRONIC FUEL INJECTION SYSTEM
THIS PPT ON ELECTRONIC FUEL INJECTION SYSTEM
 
GREEN ENERGY ELECTRICAL POWER CONVERTER GREEN ENERGY ELE...
GREEN ENERGY ELECTRICAL POWER CONVERTER                      GREEN ENERGY ELE...GREEN ENERGY ELECTRICAL POWER CONVERTER                      GREEN ENERGY ELE...
GREEN ENERGY ELECTRICAL POWER CONVERTER GREEN ENERGY ELE...
 
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLABELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
ELECTRICAL CIRCUIT ANALYSIS PROBLEM SOLUTION IN MATLAB
 
power systems ppt on Arc welding and Electric welding equipment and compariso...
power systems ppt on Arc welding and Electric welding equipment and compariso...power systems ppt on Arc welding and Electric welding equipment and compariso...
power systems ppt on Arc welding and Electric welding equipment and compariso...
 
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...
CONTROL SYSTEM PPT ON DETERMINATION OF SABILITY OF SYSTEM USING NYQUIST PLOT ...
 
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT
CONTROL SYSTEMS PPT ON A UNIT STEP RESPONSE OF A SERIES RLC CIRCUIT
 
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT VALUE WITH COST ANAL...
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT  VALUE WITH COST ANAL...DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT  VALUE WITH COST ANAL...
DESIGN OF CIRCUIT DEBITS THE GIVEN VALUE TO THE DEFAULT VALUE WITH COST ANAL...
 
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT  PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT
PROBLEM SOLVING ON THE MUTUAL INDUCTANCE OF COUPLED CIRCUIT
 
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS SIMULATION OF DC SERIES MOTOR CHARACTERISTICS
SIMULATION OF DC SERIES MOTOR CHARACTERISTICS
 
GREEN ENERGY ELECTRIC POWER CONVERTER
GREEN ENERGY ELECTRIC POWER CONVERTERGREEN ENERGY ELECTRIC POWER CONVERTER
GREEN ENERGY ELECTRIC POWER CONVERTER
 
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANT
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANTPROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANT
PROBLEM ON THE POWERFACTOR CORRRECTION IN POWER PLANT
 
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOT
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOTANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOT
ANALYZE THE STABILITY OF DC SERVO MOTOR USING NYQUIST PLOT
 
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB  LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB
LEADCOMPENSATOR DESIGN FOR A SYSTEM USING MATLAB
 
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTION
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTIONDOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTION
DOUBLE CAGE INDUCTION MOTOR AND IT'S CONSTRUCTION
 
IMPULSE RESPONSE OF SECOND ORDER SYSTEM
IMPULSE RESPONSE OF SECOND ORDER SYSTEMIMPULSE RESPONSE OF SECOND ORDER SYSTEM
IMPULSE RESPONSE OF SECOND ORDER SYSTEM
 
WIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSIONWIRELESS POWER TRANSMISSION
WIRELESS POWER TRANSMISSION
 

Recently uploaded

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
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
 
(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
 
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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 

Recently uploaded (20)

Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
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
 
(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
 
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
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 

DIGITAL ELECTRONICS DESIGN OF 3 BIT MAJORITY CIRCUIT

  • 1. A lab-based project Report on Design of 3 Bit Majority Circuit Submitted in the partial fulfillment of the requirements for the award of degree of BACHELOR OF TECHNOLOGY IN ELECTRICAL AND ELECTRON ICS ENGINEERING By P.SANJAY KUMAR(18981A0241) Under the esteemed guidance of M R .D . BHASKAR A R AO Associate Professor DEPARTMENT OF ELECTRICAL AND ELECTRONICS ENGINEERING RAGHU ENGINEERING COLLEGE (autonomous) (Permanently affiliated to JNTU- Kakinada, Approved by A.I.C.T.E - New Delhi) Dakamarri, Visakhapatnam JULY 2020 RAGHU ENGINEERING COLLEGE Department of Electrical and Electronics Engineering
  • 2. CERTIFICATE This is to certify that this Digital Electronics Lab based work entitled as “DESIGN OF 3 BIT MAJORITY CIRCUIT ” submitted by P.SANJAY KUMAR (18981A0241) in partial fulfillment of the requirements for the award of degree of Bachelor of Technology in Electrical & Electronics Engineering at Raghu Engineering College during academic year 2019-20. We also declare that this minor project is our own effort and it has not been submitted to any another university for award of any degree. Signature of labincharge Signature of HOD ACKN OWLED GEM EN T I take this opportunity to express my sincere gratitude towards my respected Mr.D.Bhaskara Rao we also grateful towards their support and continuous encouragement
  • 3. ,which were the constant source of inspiration for the completion of the research work .Furthermore for the great enthusiasm they always shown for our work and also their careful reading of this report have improved its quality considerably. We sincerely appreciate their pronounced individualities, humanistic and warm personal approach which has given us strength to carry out this work on steady and smooth course. I humbly acknowledge a lifetime gratitude to their contribution. Our special sincere thanks are due to K. Rahul Verma, Director and Raghu, Chairman of Raghu Engineering College for their constant source of assurance and strength to us during the entire period of this work. Place: Visakhapatnam. Date: Contents: Objective Introduction Majority Circuit SOP POS Design of Circuits
  • 4. Conclusion References Objective: To Design a 3 Bit Majority Circuit 3 Bit -Majority Circuit: A majority gate is a logical gate used in circuit complexity and other applications of Boolean circuits. A majority gate returns true if and only if more than 50% of its inputs are true. Truth Table:
  • 5. Sum Of Products: The sum-of-products (SOP) form is a method (or form) of simplifying the Boolean expressions of logic gates. In this SOP form of Boolean function representation, the variables are operated by AND (product) to form a product term and all these product terms are summed or added together to get the final function. The sum-of-products form is also called as Disjunctive Normal Form as the product terms are together and Disjunction operation is logical OR. Sum-of-products form is also called as Standard SOP. Ex: Boolean expression for majority function F = A’BC + AB’C + ABC ‘ + ABC Truth table:
  • 6. Now write the input variables combination with high output. F = AB + BC + AC Checking By Idempotence law, we know that ([ABC + ABC)] + ABC) = (ABC + ABC) = ABC Now the function F = A’BC + AB’C + ABC’ + ABC = A’BC + AB’C + ABC’ + ([ABC + ABC)] + ABC) = (ABC + ABC ‘) + (ABC + AB’C) + (ABC + A’BC) = AB (C + C ‘) + A (B + B’) C + (A + A’) BC = AB + BC + AC. Product Of Sums: The product of sums form is a method (or form) of simplifying the Boolean expressions of logic gates. In this POS form, all the variables are ORed, i.e. written as sums to form sum terms. All these sum terms are ANDed (multiplied) together to get the product-of-sum form. This form is exactly opposite to the SOP form. So this can also be said as “Dual of SOP form”. The product-of-sums form is also called as Conjunctive Normal Form as the sum terms are ANDed together and Conjunction operation is logical AND. Product-of-sums form is also called as Standard POS. Example: (A+B) * (A + B + C) * (C +D) (A+B) ̅ * (C + D + E ̅) POS form can be obtained by Writing an OR term for each input combination, which produces LOW output. Writing the input variables if the value is 0, and write the complement of the variable if its value is 1. AND the OR terms to obtain the output function. Ex:
  • 7. Boolean expression for majority function F = (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ + B + C) Ex: Now write the input variables combination with high output. F = AB + BC + AC. Checking By Idempotence law, we know that [(A + B + C) (A + B + C)] (A + B + C) = [(A + B + C)] (A + B + C) = (A + B + C) Now the function F = (A + B) (B + C) (A + C) = (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ + B + C) = [(A + B + C) (A + B + C)] (A + B + C) (A + B + C ‘) (A + B’ + C) (A’ + B + C) = [(A + B + C) (A + B + C ‘)] [(A + B + C) (A’ + B + C)] [(A + B + C) (A + B’ + C)] = [(A + B) + (C * C ‘)] [(B + C) + (A * A’)] [(A + C) + (B * B’)] = [(A + B) + 0] [(B + C) + 0] [(A + C) + 0] = (A + B) (B + C) (A + C) Designing of circuits: SOP EXPRESSION: From the truth table WE CAN WRITE SOP FOR HIGH OUTPUTS SOP is a two level network, 1ST level consist of AND GATE ,2ND level consistof OR GATE. Q = A’BC+AB’C+ABC’+ABC AND WE CAN MINIMISE THE EXPRESSION BY USING BOOLEAN EXPRESSION Q = A’BC+AB’C+AB(C’+C) Q = A’BC+AB’C+AB (1) Q = A’BC+A(B’C+B) Q = A’BC+A(B+C) NAND - NAND REALIZATION: Q = A’BC+A(B+C)
  • 8. From the truth table WE CAN WRITE POS FOR LOW OUTPUTS SOP is a two level network, 1ST level consist of OR GATE ,2ND level consist of AND GATE. Q = ABC+ABC’+AB’C+A’BC AND WE CAN MINIMISE THE EXPRESSION BY USING BOOLEAN EXPRESSION Q = (A+B) (C+C’)(A+B’+C) ( A’+B+C) Q=(A+B) [AA’+AB+AC+A’B’+BN’+B’C+A’C+BC+CC] Q= (A+B) [AB+AC+A’B’+B’C+A’C+BC+1] Q = (A+B)[A(B+C)+A’(B’+C)+C(B’+B)+1] Q= (A+B)[(A+A’){B+C+B’+C}+C+1] Q=(A+B)[(B+B’+C+C’)+(1+C)] Q=(A+B)[(1)+(1+C)] Q= (A+B)(1+C)
  • 10. NOR-NOR Realization: OBSERVATIONS: From the above designs , we observed that when the inputs given to the circuit we get majority of the inputs , which is more then 50% of the input. Hence the 3 Bit Majority circuit is designed… y = (a+b) (1+c)