Logic Gates AIM: To know the different types of logic gate

Slides:



Advertisements
Similar presentations
Logic Gates A logic gate is an elementary building block of a digital circuit Most logic gates have two inputs and one output At any given moment, every.
Advertisements

Computer Science 210 Computer Organization Introduction to Logic Circuits.
Chapter 3 Basic Logic Gates 1.
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
3.1 Logic Signals and Gates Logic Signals ReturnNext  Logic Value: Many physical quantities can be represented two possible numbers or logic values —
Chapter 4 Logic Gates and Boolean Algebra. Introduction Logic gates are the actual physical implementations of the logical operators. These gates form.
In a not gate, if the input is on(1) the output is off (0) and vice versa.
In this module you will learn: What the various logic gates do. How to represent logic gates on a circuit diagram. The truth tables for the logic gates.
AND, OR and NOT. The AND gate needs to be both on, So number wise both 1. So then you will get a 1 as you can see in the last image on the right, If 1.
Logical Circuit Design Week 5: Combinational Logic Circuits Mentor Hamiti, MSc Office ,
LOGIC GATES Logic generally has only 2 states, ON or OFF, represented by 1 or 0. Logic gates react to inputs in certain ways. Symbol for AND gate INPUT.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
Transistors and Logic Circuits. Transistor control voltage in voltage out control high allows current to flow -- switch is closed (on) control low stops.
LOGIC GATES A logic gate is an elementary building block of a digital circuit.digital circuit Most logic gates have two inputs and one output terminals.
4. Electrons and electronics 4.5 Digital electronics.
Chapter 33 Basic Logic Gates. 2 Objectives –After completing this chapter, the student should be able to: Identify and explain the function of the basic.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Exclusive OR Gate. Logically, the exclusive OR (XOR) operation can be seen as either of the following operations:exclusive OR (XOR) 1. A AND NOT B OR.
Gates and Logic Dr John Cowell phones off (please)
Digital logic representation In digital logic system,events are described as either 0 or 1 Two logic states 1= logic High 0 = logic Low.
Digital electronics 4–1 Gates and Circuits SANJAYBHAI RAJGURU COLLEGE OF ENGG.
4–1. BSCS 5 th Semester Introduction Logic diagram: a graphical representation of a circuit –Each type of gate is represented by a specific graphical.
LOGIC CIRCUITLOGIC CIRCUIT. Goal To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations.
 A transistor is the basic building block of electronic components.  The average computer may have millions of them within its circuits.  Essentially,
PHYSICS – Digital electronics. LEARNING OBJECTIVES Core Supplement Explain and use the terms analogue and digital in terms of continuous variation and.
LOGIC GATES. INTRODUCTION TO LOGIC GATES Boolean functions may be practically implemented by using electronic gates. The following points are important.
Logic Gates Unit 16.
Logic gates.
Basics of Logic gates - Part 1
Logic Gates.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Transistors and Logic Circuits
Logic What is logic? Logic is the name given to an electronic component which will monitor a number of inputs and give an output depending on them Input.
Instructor:Po-Yu Kuo 教師:郭柏佑
Logic Gates.
Logic Gates.
Basic Digital Logic.
CSCI-100 Introduction to Computing
Exclusive OR Gate.
Digital electronics and logic gates
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Practice #Digital Logic Mr. Burleson
CS105 Introduction to Computer Concepts GATES and CIRCUITS
Computer Science 210 Computer Organization
Chapter 12 : Field – Effect Transistors
UNIVERSAL GATES.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
All very logical I think!
Waveforms & Timing Diagrams
JC Technology Logic Gates.
Instructor:Po-Yu Kuo 教師:郭柏佑
Logic Gates.
Logic Gates.
KS4 Electricity – Electronic systems
Gates Type AND denoted by X.Y OR denoted by X + Y NOR denoted by X + Y
EENG447 Digital IC Design Dr. Gürtaç Yemişcioğlu.
ELECTRONIC SYSTEMS Note: There is no compulsory question set on Section 25 of the syllabus. Questions set on topics within Section 25 are always set as.
Binary Logic.
Digital Logic Experiment
Monostable AIM: To understand the operation of a monostable and be able to choose component values to give a required time period PRIOR KNOWLEDGE: Resistor.
Logic Circuits Analysis
Truth tables Mrs. Palmer.
Department of Electronics
Digital Logic Design Basics Combinational Circuits Sequential Circuits.
SYEN 3330 Digital Systems Chapter 2 – Part 1 SYEN 3330 Digital Systems.
Presentation transcript:

Logic Gates AIM: To know the different types of logic gate To understand how truth tables describe the action of logic gates PRIOR KNOWLEDGE: That digital signals can be represented by 1 (on) and 0 (off) www.pfnicholls.com

Introduction Logic gates are the basic building block of combinational logic circuits. Combinational logic circuits are circuits where the output only depends on the inputs The output of a combinational logic circuit is usually labelled Q The inputs are usually labelled A, B, C etc Logic gates can have two or more inputs The output of the logic gate, for each combination of inputs, is shown in a truth table A very common series of logic Integrated Circuits is called the 4000 series. These chips are CMOS chips and work at any voltage between about 3V and 18V but they do not provide very much output current

The NOT gate (4069) A Q 1 The NOT gate is the most basic logic gate When A = 1 then Q = 0 When A = 0 then Q = 1 The output (Q) is NOT the same as the input (A) A Q 1

The AND gate (4081) The AND gate needs both inputs to be ON to make the output come ON A = 1 AND B = 1 then Q = 1 Otherwise, for all other combinations, Q = 0 A B Q 1

The OR gate (4071) The OR gate gives the output ON when any input is ON When A = 1 OR B = 1 OR both A & B = 1 together then Q = 1 When A & B are both 0, Q = 0 A B Q 1

The NAND gate (4011) The NAND gate is the opposite of an AND gate. It is NOT AND When A = 1 AND B = 1 then Q is NOT ON, Q = 0 Otherwise, Q = 1 A B Q 1

The NOR gate (4001) The NOR gate is the opposite of the OR gate. It is NOT OR When A =1 OR B = 1 OR both A & B are 1 then the output is NOT ON, Q = 0 Otherwise, when A = 0 as well as B = 0 then Q = 1 A B Q 1

Input Circuits for Logic Gates Logic circuits need an input that is definitely either ON (Logic 1) or OFF (Logic 0) An input that is left disconnected or floating will take any logic value and cause unexpected results. This is avoided by using a resistor to make sure the input is always connected to something Pressed = Logic 1 Not pressed = Logic 0 The pull up resistor keeps the input to the logic circuit at Logic 1 when the button is not pressed The pull down resistor keeps the input to the logic circuit at Logic 0 when the button is not pressed Pressed = Logic 0 Not pressed = Logic 1

Summary You just have to learn these symbols and truth tables

Questions Why is an AND gate called and AND gate? Why is an OR gate called an OR gate? Why is a NOT gate called a NOT gate? How do you make a NAND gate from AND and NOT gates? How do you make a NOR gate from OR and NOT gates?

Answers The output is ON when input A is ON AND input B is ON The output is ON when either input A is ON OR input B is ON OR inputs A and B are both ON The output is NOT ON (i.e. OFF) when the input is ON and vice versa so the output is NOT what the input is An AND gate followed by a NOT gate An OR gate followed by a NOT gate