TODAY YOU ARE LEARNING....... 1. to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Logic Gates.
CT455: Computer Organization Logic gate
Computer Science 210 Computer Organization Introduction to Logic Circuits.
Computer Systems – Logic Gates Introduce the basic logic gates Introduce truth tables Introduce Boolean algebra (dont panic!) Examples of combining gates.
Logic Gates Some Most All Learning Objective
Logic Gates & Circuits. AND Gate Input AInput BOutput X AND Logic Gate AND Truth Table X = A. B AND Boolean Expression.
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
ECE 2373 Modern Digital System Design Exam 2. ECE 2372 Exam 2 Thursday March 5 You may use two 8 ½” x 11” pages of information, front and back, write.
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
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.
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.
NOCTI Review Lesson 4 Objectives:
Daily Sprint 1)A water tank is filled with 2000 gallons of water. Each day, 4% of the water evaporates. No water is added to the tank. To the nearest gallon,
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.
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.
Basic logic gates  AND gate:The truth table is given by A.BBA
Gates and Logic Dr John Cowell phones off (please)
LOGIC GATES “ Logic, like whiskey, loses its beneficial effect when taken in too large quantities “
A-Level Computing#BristolMet Session Objectives#6 MUST understand and produce simple logic diagrams using the operations NOT, AND and OR SHOULD explain.
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.
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
Dept. of Electrical and Computer Eng., NCTU 1 Lab 2. NAND and XOR Presenter: Chun-Hsien Ko Contributors: Chung-Ting Jiang and Lin-Kai Chiu.
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.
How does a Computer Add ? Logic Gates within chips: AND Gate A B Output OR Gate A B Output A B A B
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.
LOGIC CIRCUITLOGIC CIRCUIT. Goal To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations.
Logic Gates Digital Logic Design. What is a logic gate? A switch with an output that will only turn on when inputs are in particular positions.
DATA REPRESENTATION IN COMPUTER MEMORY.  Describe the coding system:  Sign and magnitude  1’s Complement and 2’s Complement  Binary Coded Decimal.
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.
Activity 1 5 minutes Grab a whiteboard and pen, come to the front and work out the Truth Table for the following circuit: R A B C Q.
Dr.Ahmed Bayoumi Dr.Shady Elmashad
Eng. Mai Z. Alyazji October, 2016
Logic Gates.
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Exclusive OR Gate.
Basic Logical Operations (Fascinating)
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Computer Science 210 Computer Organization
Agenda – 2/12/18 Questions? Readings: CSI 4, P
3.4 Computer systems Boolean logic Lesson 2.
Universal gates.
Waveforms & Timing Diagrams
Logic Gates.
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
GCSE Computer Science – Logic Gates & Boolean Expressions
DIGITAL ELECTRONICS B.SC FY
Today You are Learning simple logic diagrams using the operations AND, OR and NOT truth tables combining Boolean operators using AND, OR and NOT.
Logic Gates.
Binary Logic.
Chapter 4 Gates and Circuits.
Digital Logic Experiment
Department of Electronics
Eng. Ahmed M Bader El-Din October, 2018
Introduction to Logic diagrams and truth tables
Further binary, Logic diagrams and truth tables
Introduction to Logic diagrams and truth tables
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams using the operations NOT, AND and OR 3. to produce a truth table from a given logic diagram.

LOGIC GATES

SOLVE THESE LOGIC PROBLEMS   Starter - puzzles.org/game.php?u2=259141ce8e168b457b53b6b9d9a8bceehttp:// puzzles.org/game.php?u2=259141ce8e168b457b53b6b9d9a8bcee  Starter puzzles.org/game.php?u2=a4d4c77ef9e37009fb233bf8f170a395http:// puzzles.org/game.php?u2=a4d4c77ef9e37009fb233bf8f170a395  Further Reading logic/gatesfunc/index.html#orgatehttp:// logic/gatesfunc/index.html#orgate

AND GATE Input AInput BOutput (Q) Produces an output only if both inputs are on

CAN YOU DRAW A CIRCUIT THAT WOULD ACT LIKE AN AND GATE?

OR GATE Produces an output when one or the other input are active…. Input AInput BOutput (Q)

CAN YOU DRAW A CIRCUIT THAT WOULD ACT LIKE AN OR GATE?

NOT GATE A NOT gate inverts its input Input (A)Output (Q) 0 1

CAN YOU DRAW A CIRCUIT THAT WOULD ACT LIKE AN NOT GATE?

SOME EXTRAS TO FRY YOUR BRAIN

NAND IS AN “INVERTED AND GATE”

NOT AND = NAND Input AInput B A.B Output (Q)=A.B

CAN YOU DRAW A CIRCUIT THAT WOULD ACT LIKE AN NAND GATE?

A NOR gate is simply an inverted OR gate. Output is high when neither input A nor input B is high:

NOT OR =NOR Input AInput B A+B Output (Q) A+B

CAN YOU DRAW A CIRCUIT THAT WOULD ACT LIKE AN NOR GATE?

An XOR gate is constructed similarly to an OR gate, except with an additional NAND gate inserted such that if both inputs are high, the inputs to the final NAND gate will also be high, and the output will be low.

XOR – EXCLUSIVE OR Input AInput BOutput (Q)

CAN YOU DRAW A TRUTH TABLE?

NOT GATE

AND GATE