Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Logic Gates.
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
Boolean rules for simplification Dr. Ahmed Telba.
Logic Design Fundamentals - 1 Lecture L1.1. Logic Design Fundamentals - 1 Basic Gates Basic Combinational Circuits Basic Sequential Circuits.
CS 151 Digital Systems Design Lecture 7 More Logic Functions: NAND, NOR, XOR.
Basic Logic Gates and De Morgan's Theorem Discussion D5.1 Appendix D.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd.
Boolean Algebra. Introduction 1854: Logical algebra was published by George Boole  known today as “Boolean Algebra” 1854: Logical algebra was published.

© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Fundamentals with PLD Programming.
UNIT-8 LOGIC GATES.
Logical Circuit Design Week 5: Combinational Logic Circuits Mentor Hamiti, MSc Office ,
XOR and XNOR Logic Gates. XOR Function Output Y is TRUE if input A OR input B are TRUE Exclusively, else it is FALSE. Logic Symbol  Description  Truth.
NOCTI Review Lesson 4 Objectives:
Company LOGO DKT 122/3 DIGITAL SYSTEM 1 WEEK #7 COMBINATIONAL LOGIC ANALYSIS.
LOGIC GATES & TRUTH TABLE – Digital Circuit 1 Choopan Rattanapoka.
Digital Logic Design Week 3
Basic Logic Operations and Standard Logic Gates (Lecture #1) ECE 331 – Digital System Design.
Logic Gates. Outline  Logic Gates  The Inverter  The AND Gate  The OR Gate  The NAND Gate  The NOR Gate  The XOR Gate  The XNOR Gate  Drawing.
Logic Gates Shashidhara H S Dept. of ISE MSRIT. Basic Logic Design and Boolean Algebra GATES = basic digital building blocks which correspond to and perform.
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.
LOGIC GATES AND CIRCUITS Digital systems are said to be constructed by using logic gates. These gates are the AND, OR, NOT, NAND, NOR, EXOR and EXNOR gates.
Basic logic gates  AND gate:The truth table is given by A.BBA
CH51 Chapter 5 Combinational Logic By Taweesak Reungpeerakul.
CS 1110 Digital Logic Design
CHAPTER 1 INTRODUCTION TO DIGITAL LOGIC
Digital Fundamentals Floyd Chapter 3 Tenth Edition
Combinational Logic Digital Design Department of Software Development Faculty of Information Technology Islamic University of Gaza Dr. Rebhi Baraka
Floyd, Digital Fundamentals, 10 th ed Digital Fundamentals Tenth Edition Floyd Chapter 5 © 2008 Pearson Education.
5 - Digital Logic with Boolean Algebra
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
Chapter-3: BOOLEAN ALGEBRA & LOGIC GATES Analysis and logical design.
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,
Basic Logic Operations and Standard Logic Gates [Lecture:1] Instructor: Sajib Roy Lecturer, ETE, ULAB ETE 204 – Digital Electronics.
CHAPTER 5 Combinational Logic Analysis
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Logic Design Dr. Oliver Faust.
The inverter performs the Boolean NOT operation. When the input is LOW, the output is HIGH; when the input is HIGH, the output is LOW. The Inverter AX.
Basic Logic Gates By : Ashima Wadhwa Assistant Professor (giBS)
ECE 2110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR and parity check Circuits.
Logic Gates Chapter 5 Subject: Digital System Year: 2009.
Combinational Logic Analysis. Basic Combinational Logic Circuits AND-OR logic AND-OR logic AND-OR logic produces an SOP expression. AND-OR logic produces.
Chapter 33 Basic Logic Gates. Objectives After completing this chapter, you will be able to: –Identify and explain the function of the basic logic gates.
Logic Gates and Boolean Algebra Introduction to Logic II.
DATA REPRESENTATION IN COMPUTER MEMORY.  Describe the coding system:  Sign and magnitude  1’s Complement and 2’s Complement  Binary Coded Decimal.
11/20/2016SKD1 Logic gates. 11/20/2016SKD2 Logic gates Prepared By: Rashidul Islam Instructor (Civil Construction) Deptt. Of S S C Vocational Alamdanga.
Author : Khairi LOGIC GATES Logic gate Input Output  Logic gates are electronic switches with one or more input but only one output ogic gates are commonly.
Eng. Mai Z. Alyazji October, 2016
ECE 331 – Digital System Design
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
EI205 Lecture 5 Dianguang Ma Fall 2008.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Logic Gates.
Boolean Algebra.
Logic Gates.
KS4 Electricity – Electronic systems
Gates Type AND denoted by X.Y OR denoted by X + Y NOR denoted by X + Y
Logic Gates.
Binary Logic.
XOR Function Logic Symbol  Description  Truth Table 
Department of Electronics
Basic Logic Operations
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

Logic Gates

The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output input output

Inverter Truth Table & Logic Expression InputOutput LOW (0)HIGH (1) LOW (0) A X = A

The AND Gate & Its Operation The AND gate is composed of two or more inputs and a single output. For a 2-input AND gate:  Output X is HIGH only when inputs A and B are HIGH  X is LOW when either A or B is LOW, or when both A and B are LOW. & A B X A B X

AND Gate Truth Table The total number of possible combinations of binary inputs to a gate is determined by: N = 2 n Therefore:  2 bits (n=2) = 4 combinations  3 bits = 8 combinations  4 bits = 16 combinations INPUTSOUTPUT ABX A B X

AND Gate – Logic Expressions Use either:  X = A · B,or  X = AB If there are more than 2 inputs, do as below: A B X X= ABC X= ABCD A B C A B C D

The OR Gate Like AND gate, an OR gate has two or more inputs and one output. For a 2-input OR gate:  output X is HIGH when either input A or input B is HIGH, or when both A and B are HIGH.  X is LOW only when both A and B are LOW. A B X ≥ 1 A B X

OR Gate Truth Table INPUTSOUTPUT ABX A B X

OR Gate – Logic Expressions Use the operator + for OR operation  X = A + B  If there are more than 2 inputs, do as below: X= A+B+C X= A+B+C+D A B C A B C D

The NAND Gate NAND = NOT-AND For a 2-input NAND gate:  Output X is LOW only when inputs A and B are HIGH  X is HIGH when either A or B is LOW, or when both A and B are LOW & A B X A B X A B X

NAND Gate Truth Table & Logic Expression INPUTSOUTPUT ABX A B X The Boolean expression for the output of a 2- input NAND gate is X = AB

Negative-OR Equivalent Op of a NAND For a 2-input NAND gate performing a negative-OR operation  Output X is HIGH when either input A or input B is LOW or when both A and B are LOW NAND Negative-OR

The NOR Gate NOR = NOT-OR For a 2-input NOR gate:  Output X is LOW when either input A or input B is HIGH, or when both A and B are HIGH  X is HIGH only when both A and B are LOW A B X A B X ≥ 1 A B X

NOR Gate Truth Table & Logic Expression INPUTSOUTPUT ABX A B X The Boolean expression for the output of a 2- input NOR gate is X = A+B

Negative-AND Equivalent Op of a NOR For a 2-input NOR gate performing a negative-AND operation  Output X is HIGH only when both inputs A and B are LOW NOR Negative-AND

The XOR and XNOR Gates Exclusive-OR and Exclusive-NOR gates are formed by a combination of other gates already discussed. Because of their fundamental importance in many applications, these gates are often treated as basic logic elements with their own unique symbols.

The XOR Gate For a 2-input exclusive-OR gate:  Output X is HIGH when input A is LOW and input B is HIGH, or when input A is HIGH and input B is LOW  X is LOW when A and B are both HIGH and both LOW = 1 A B X A B X

XOR Gate Truth Table & Logic Expression INPUTSOUTPUT ABX A B X The Boolean expression for the output of a 2- input XOR gate is X = A+B

The XNOR Gate For a 2-input exclusive-NOR gate:  Output X is LOW when input A is LOW and input B is HIGH, or when input A is HIGH and input B is LOW  X is HIGH when A and B are both HIGH and both LOW = 1 A B X A B X

XNOR Gate Truth Table & Logic Expression INPUTSOUTPUT ABX A B X The Boolean expression for the output of a 2- input XNOR gate is X = A+B