Basic Logical Operations (Fascinating)

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Logic Gates.
CT455: Computer Organization Logic gate
Computer Science 210 Computer Organization Introduction to Logic Circuits.
Programmable Logic Controllers.
Computer Systems – Logic Gates Introduce the basic logic gates Introduce truth tables Introduce Boolean algebra (dont panic!) Examples of combining gates.
Basic Logical Operations (fascinating)
Universal Gates Sum of Products Products of Sum
Basic Logical Operations (Fascinating)
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
James Tam Basic Logical Operations (Fascinating) In this section you will learn some basic logical operations and how to evaluate expressions Image from.
James Tam Basic Logical Operations (Fascinating) In this section you will learn what are the basic logical operations and how to evaluate different logical.
James Tam AND OR NOT NAND NOR XOR Basic logic operations (fascinating)
James Tam Basic Logical Operations (Fascinating) In this section you will learn what are the basic logical operations and how to evaluate different expressions.
James Tam Basic Logical Operations (Fascinating) In this section you will learn some basic logical operations and how to evaluate expressions Image from.
Lab 1 Structure of a PLD Module M1.4 Experiment 1 (p. 40)
Chapter 4 Logic Gates and Boolean Algebra. Introduction Logic gates are the actual physical implementations of the logical operators. These gates form.
Generalized De Morgan’s Theorem Lecture L5.4 Section 5.1.
22C:19 Discrete Math Boolean Algebra & Digital Logic Fall 2010 Sukumar Ghosh.
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 Shashidhara H S Dept. of ISE MSRIT. Basic Logic Design and Boolean Algebra GATES = basic digital building blocks which correspond to and perform.
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)
IB Computer Science – Logic
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
COMPUTER ARCHITECTURE TRUTH TABLES AND LOGIC GATES.
Logic Gates. AND gate Produces an output only if both inputs are on Input AInput BOutput (Q) Q=
CHAPTER 5 Combinational Logic Analysis
COMPUTER ARCHITECTURE & OPERATIONS I Instructor: Yaohang Li.
NAND, NOR, and EXOR (more primitive logical gates) CS Computer Architecture David Mayer.
Logic Gates and Boolean Algebra Introduction to Logic II.
CS 111 – Aug. 27 Section 1.1 –Binary data and operations –Logic gates –Flip-flop –A binary shorthand: hexadecimal Commitment for next day: –Please read.
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.
Digital Logic. December 0s and 1s As we have already considered, a computer operates on 0’s and 1’s Why? Because the power on a line.
Computer Architecture & Operations I
Computer Architecture & Operations I
CPS120 Introduction to Computer Science
Dr. Ameria Eldosoky Discrete mathematics
Morgan Kaufmann Publishers
Eng. Mai Z. Alyazji October, 2016
Logic Gates and Boolean Algebra
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Exclusive OR Gate.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Conditional Statements
Computer Science 210 Computer Organization
Waveforms & Timing Diagrams
Logic Gates.
Logic Gates.
Digital Logic.
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
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.
Logic Gates Logic Gates Gateway To Technology
Truth tables Mrs. Palmer.
Topics discussed in this section:
Digital Logic Design Basics Combinational Circuits Sequential Circuits.
Eng. Ahmed M Bader El-Din October, 2018
What are Logic Gates?.
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

Basic Logical Operations (Fascinating) In this section you will learn what are the basic logical operations and how to evaluate different logical expressions Image from Star Trek © Paramount

Logical AND Logic gate Truth table X Y X AND Y False True Truth table 1 Logic gate

Logical AND: An Example T F AND

Logical OR Logic gate Truth table X Y X OR Y False True Truth table X 1 Logic gate

Logical OR: An Example T F OR

Logical NOT Logic gate Truth table X Not X False True Truth table X 1 Logic gate

Logical NOT: An Example F NOT

Logical NAND Logic gate Truth table X Y X AND Y X NAND Y False True 1 Logic gate

Logical NAND: An Example T F AND NAND

Logical NOR Logic gate Truth table X Y X OR Y X NOR Y False True 1 Logic gate

Logical NOR: An Example T F OR NOR

Logical Exclusive OR (XOR) Truth table X Y X XOR Y False True Truth table X Y X XOR Y 1 Logic gate

Logical XOR: An Example T F XOR

Reasons For Learning About Logic Hardware perspective The computer is built using logic circuits

Reasons For Learning About Logic (2) Software perspective Logic is common-place in computer programs

You Should Now Know The different types of logical operations that a computer may perform AND OR NOT NAND NOR XOR How logic gates form an important part of computers