James Tam Basic Logical Operations (Fascinating) In this section you will learn what are the basic logical operations and how to evaluate different expressions.

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 You will learn three common logical operations that will be applied in much of the course (spreadsheets, databases, web searches and both programming.
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.
Computer Processing CSCE 110 J. Michael Moore.
James Tam AND OR NOT NAND NOR XOR Basic logic operations (fascinating)
James Tam Basic Logical Operations (Fascinating) In this section you will learn some basic logical operations and how to evaluate expressions Image from.
J. Michael Moore Computer Processing CSCE 110. J. Michael Moore ProcessorInputOutput Memory Storage.
Generalized De Morgan’s Theorem Lecture L5.4 Section 5.1.
Erik Jonsson School of Engineering and Computer Science FEARLESS Engineeringwww.utdallas.edu/~pervin EE/CE 2310 – HON/002 Introduction to Digital Systems.
Boolean Logic Chapter 4 (Sections 4.1 and 4.2). The Roots: Logic 1848 George Boole The Calculus of Logic chocolate and  nuts and mint.
Logic You will learn three common logical operations that will be applied in much of the course (spreadsheets, databases, web searches and both programming.
22C:19 Discrete Math Boolean Algebra & Digital Logic Fall 2010 Sukumar Ghosh.
Computer Science 101 The Boolean System. George Boole British mathematician ( ) Boolean algebra –Logic –Set theory –Circuits –Conditions in if.
CS1Q Computer Systems Lecture 5 Simon Gay. Lecture 5CS1Q Computer Systems - Simon Gay2 Where we are Global computing: the Internet Networks and distributed.
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.
James Tam Number systems and logic What is the decimal based number system How does the binary number system work Converting between decimal and binary.
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.
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)
IB Computer Science – Logic
Chapter-3: BOOLEAN ALGEBRA & LOGIC GATES Analysis and logical design.
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.
CS 270 Lecture 1 In Class Problems. Q1: Logic Puzzle You arrive at the end of a long hallway. There are two knights guarding two doors. One knight always.
NAND, NOR, and EXOR (more primitive logical gates) CS Computer Architecture David Mayer.
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 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
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.
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
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
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.
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

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 Logical AND Truth table XYX AND Y False TrueFalse TrueFalse True Logic gate Truth table XYX AND Y

James Tam Logical AND: An Example TTFFTF ANDFTFTTF FTFFTF

James Tam Logical OR Truth table XYX OR Y False True FalseTrue Truth table XYX OR Y Logic gate

James Tam Logical OR: An Example TTFFTF ORFTFTTF TTFTTF

James Tam Logical NOT Truth table XNot X FalseTrue False Logic gate Truth table XNot X 01 10

James Tam Logical NOT: An Example TTFFTF NOTFFTTFT

James Tam Logical NAND Truth table XYX AND YX NAND Y False True FalseTrueFalseTrue False True False Logic gate Truth table XYX AND YX NAND Y

James Tam Logical NAND: An Example TTFFTF ANDFTFTTF FTFFTF NANDTFTTFT

James Tam Logical NOR Truth table XYX OR YX NOR Y False True FalseTrue False TrueFalseTrueFalse True False Truth table XYX OR YX NOR Y Logic gate

James Tam Logical NOR: An Example TTFFTF ORFTFTTF TTFTTF NORFFTFFT

James Tam Logical Exclusive OR (XOR) Truth table XYX XOR Y False True FalseTrue False Logic gate Truth table XYX XOR Y

James Tam Logical XOR: An Example TTFFTF XORFTFTTF TFFTFF

James Tam Why Bother With Logic (Gates And Computers)? Bill Gates, Chairman and Chief Software Architect of Microsoft™

James Tam Reasons For Learning About Logic Hardware perspective The computer is built using logic circuits Software perspective Logic is common-place in computer programs

James Tam Summary 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