Combination of logic gates  Logic gates can be combined to produce more complex functions.  They can also be combined to substitute one type of gate.

Slides:



Advertisements
Similar presentations
Truth Tables and Logic Gates. What are Logic Gates? Logic gates are components used in making logic circuits. Each gate has one or more inputs and produces.
Advertisements

Logic Gates.
Computer Science 210 Computer Organization Introduction to Logic Circuits.
Basic Logic Gate Sayed Mahbub Hasan Amiri Dhaka Residential Model College.
Digital Circuits. Review – Getting the truth table The first step in designing a digital circuit usually is to get the truth table. That is, for every.
CDA 3100 Recitation Week 10.
Digital Circuits.
ENGIN112 L12: Circuit Analysis Procedure September 29, 2003 ENGIN 112 Intro to Electrical and Computer Engineering Lecture 12 Circuit Analysis Procedure.
AOI Logic Implementation © 2014 Project Lead The Way, Inc.Digital Electronics.
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.
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.
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.
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
LOGIC GATES.
Gates and Logic Dr John Cowell phones off (please)
Abdullah Said Alkalbani University of Buraimi
Thinking Mathematically
Steering Gates, Timing Diagrams & Combinational Logic Technician Series Steering 1.1 ©Paul Godin Created Jan 2014.
Basic Gates 2.1 Basic Digital Logic: Application of Digital Gates using AND / OR / NOT ©Paul Godin Created August 2007 Last Update Sept 2013 Basic Gates.
CEC 220 Digital Circuit Design Boolean Algebra I Wed, Sept 2 CEC 220 Digital Circuit Design Slide 1 of 13.
Designing Combinational Logic Circuits
THE K-MAP.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
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 Logic Design. Truth Table  Logic Circuit 1. Start with truth table 2. When your output is a 1, figure out the combination of inputs, ANDs, and.
© 2016 AQA. Created by Teachit for AQA Boolean logic Lesson 3.
Logic Gates Learning Objectives Learn that there is a one-to-one relationship between logic gates and Boolean expressions Learn how logic gates are combined.
Homework Reading Machine Projects Labs
Eng. Mai Z. Alyazji October, 2016
Chapter 3 Notes – Part II Review Questions
Logic Gates.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Computer Science 210 Computer Organization
Multiplexer.
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Chapter 2.3 Binary Logic.
Boolean Expressions Lecture No. 10.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Circuits & Boolean Expressions
Summary Half-Adder Basic rules of binary addition are performed by a half adder, which has two binary inputs (A and B) and two binary outputs (Carry out.
Computer Science 210 Computer Organization
Teaching Computing to GCSE
Agenda – 2/12/18 Questions? Readings: CSI 4, P
3.4 Computer systems Boolean logic Lesson 2.
AOI Design: Logic Analysis
JC Technology Logic Gates.
Logic Gates.
Princess Sumaya University
Design Example “Date of Birth Problem”
KS4 Electricity – Electronic systems
Gates Type AND denoted by X.Y OR denoted by X + Y NOR denoted by X + Y
De Morgan’s laws presentation
GCSE Computer Science – Logic Gates & Boolean Expressions
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
AOI Design: Logic Analysis
Combinational Circuits
Binary Logic.
Basic Digital Logic: AND, OR and NOT gates Technician Series
AOI Design: Logic Analysis
Logic Circuits Analysis
Truth tables Mrs. Palmer.
Evaluating Boolean expressions
Digital Circuits.
Principles & Applications
Half & Full Subtractor Half Subtractor Full Subtractor.
Half & Full Subtractor Half Subtractor Full Subtractor.
Circuits & Boolean Expressions
SYEN 3330 Digital Systems Chapter 2 – Part 1 SYEN 3330 Digital Systems.
Presentation transcript:

Combination of logic gates  Logic gates can be combined to produce more complex functions.  They can also be combined to substitute one type of gate for another.substitute

Example:  To produce an output Q which is true only when input A is true and input B is false  To do this we can combine a NOT gate and an AND gate like this: Can you draw the Truth Table??

Truth Table

Working out the function of a combination of gates  Truth tables can be used to work out the function of a combination of gates.

Example  The truth table shows the intermediate outputs D and E as well as the final output Q for the system shown below. D = NOT (A OR B) E = B AND C Q = D OR E = (NOT (A OR B)) OR (B AND C)

Exercise  Draw a logic circuit for (A + B)C.

2.  Draw a logic circuit for A + BC + D

3.  Draw a logic circuit for AB + AC.

4.  Draw a truth table for A(B+D).