Component 1 Logical operators.

Slides:



Advertisements
Similar presentations
DAT2343 Basic Logic Gates © Alan T. Pinck / Algonquin College; 2003.
Advertisements

GCSE Computing#BristolMet Session Objectives#5 MUST explain why data is represented in computer systems in binary SHOULD understand and produce simple.
Lesson Objectives Understand and produce simple logic diagrams using the operation NOT, AND and OR Produce a truth table from a given logic diagram.
Lecture 2: Systems Engineering
1 Boolean Algebra & Logic Design. 2 Developed by George Boole in the 1850s Mathematical theory of logic. Shannon was the first to use Boolean Algebra.
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.
3. DIGITAL ELECTRONICS..
Computer Science 1000 Digital Circuits. Digital Information computers store and process information using binary as we’ve seen, binary affords us similar.
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.
Binary Addition CSC 103 September 17, 2007.
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.
Activity 1 Revise / remember what the term ‘binary logic’ means. What do each of the following look like: NOT gate? AND gate? OR gate? 5 minutes.
CSC Intro. to Computing Lecture 5: Boolean Logic, Gates, & Circuits.
Week 6: Gates and Circuits: PART I READING: Chapter 4.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
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.
Teaching Computing to GCSE Level with Python Session 3.
Boolean and Sequential Logic Last week – Basic Gates AND OR NOT NOR XOR NAND.
S3 INNOVATION ELECTRONICS. LESSON TITLE: ELECTRONICS Learning Intention: To understand when to use different types of logic gates Activity: Building own.
Binary Logic Derrington KCL CPD/SKE Binary We’ve seen how data of all different sorts and kinds can be represented as binary bits… 0s and 1s 1 is.
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 Review. Logic Gates OR gate – 1 if either input is 1 – 0 if they both are 0.
GCSE Computing – Topic 2 Lesson 5a – Binary Logic CHALLENGE TO: identify the different types of logic diagrams. ASPIRE TO: Construct a truth table for.
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.
LAN, WAN, and Network Topologies
Primary and Secondary Storage
Input, Output, and Specialist Devices
Image and Sound Representation
IP and MAC Addresses, DNS Servers
Unit 1 Logical operators.
Computing Binary Logic.
GCSE OCR Computing A451 Binary logic Computing hardware 6.
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.
Creating logic gates with Minecraft
Basics of Logic gates - Part 1
Dr.Ahmed Bayoumi Dr.Shady Elmashad
Additional hardware components, and Embedded Systems
Logic Gates and Truth Tables
Lesson Objectives Aims You should be able to:
Data Types and Structures
The CPU, RISC and CISC Component 1.
Binary, Denary, Hexadecimal Conversion Binary Addition
Arithmetic Shifts and Character Representation
Logic Gates.
Questions Describe the following gates
CSIS-110 Introduction to Computer Science
Minecraft Logic Gates!.
CSCI-100 Introduction to Computing
Chapter 2.3 Binary Logic.
Component 1 – 2A, B, C Binary Logic
Teaching Computing to GCSE
Agenda – 2/12/18 Questions? Readings: CSI 4, P
Thursday, 22 November 2018 Logic Gates
3.4 Computer systems Boolean logic Lesson 2.
Teaching KS3 Computing Session 4 Theory: Boolean logic AND/OR/NOT
For OCR GCSE Computing Unit 1 - Theory
Computers in the real world Objectives
Boolean Logic Boolean Logic is considered to be the basic of digital electronics. We know that a computer’s most basic operation is based on digital electronics.
Logic Gates.
Adders.
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.
Binary Logic.
Objectives Construct truth tables for the following logic gates:
Truth tables Mrs. Palmer.
Component 1 – 2A, B, C Binary Logic
Introduction to Logic diagrams and truth tables
Further binary, Logic diagrams and truth tables
What are Logic Gates?.
Presentation transcript:

Component 1 Logical operators

Starter Pre-Reading Recap What is a logic gate? What is the difference between a not gate and an or gate? What does an XOR gate do? What does an AND gate do? Describe how an OR gate works How many Inputs can a logic gate have? What happens when you combine an AND and a NOT gate? If I have a 1 and a 0 pass through an AND gate what is the output? If I have a 1 and a 0 pass through a Not gate what is the output? If I have a 1 and a 0 pass through an OR gate what is the output?

Learning Intentions and Outcomes Learning Intention: To develop an understanding of the NOT, AND, OR, and XOR Logic gates Use AND, OR, NOT and XOR logical operators, combinations of these, and their application in appropriate truth tables to solve problems

Thinking Task What can you tell me about this?

Thinking Task What can you tell me about this? If there are CLOUDS and COLD there will be RAIN

Thinking Task What can you tell me about this? If A and B are TRUE then Q is TRUE

Thinking Task

Thinking Task Q=1 when A is not 1 Only 1 and 1 = 1 1 and 0 = 0 (or does not = 1)

Logical operators - Binary Why is binary so important? Fundamentally computers are electronic and can decide between two states – true or false, on or off, presence or absence of current and translate this into the binary representation of 1 or 0

Binary Logic As computers use transistors and capacitors to store binary data we can wire them together to make simple logical calculations These simple circuits are known as logic gates There are four fundamental gates you know need to know about: NOT gate AND gate OR gate XOR gate (Exclusive OR gate)

Boolean Algebra: P = NOT A Binary Logic – Not Gate If 0 is input it outputs 1 If 1 is input it outputs 0 INPUT A OUTPUT P Boolean Algebra: P = NOT A Logic Diagram

Boolean Algebra: P = A AND B Binary Logic – AND Gate If both inputs are 1 then the output is 1 Otherwise the output is 0 INPUT A B OUTPUT P Boolean Algebra: P = A AND B Logic Diagram

Boolean Algebra: P = A OR B Binary Logic – OR Gate If either input is 1 then the output is 1 Otherwise the output is 0 INPUT A B OUTPUT P Boolean Algebra: P = A OR B Logic Diagram

Boolean Algebra: P = A xOR B Binary Logic – XOR Gate If either input is 1 then the output is 1 UNLESS! Both are 1! Otherwise the output is 0 INPUT A B OUTPUT P Boolean Algebra: P = A xOR B Logic Diagram

Activity In your books draw the diagrams and truth tables for the following Logic Gates: Not AND OR XOR Make sure to label the inputs and outputs. It is always a good idea to put an example of your logic gate in use for your diagram.

Combining Logic Gates We can string logic gates together to make more complex circuits Boolean Algebra: P = NOT (A AND B)

Combining Logic Gates We can string logic gates together to make more complex circuits Boolean Algebra: P = NOT (A AND B)

Combining Logic Gates We can string logic gates together to make more complex circuits Boolean Algebra: P = NOT (A AND B)

Activity: Combined Logic Operators worksheet Complete the ‘combined logic operators’ worksheet This can be found in today’s lesson folder. 1

Graded Exercises You must complete the grade 4 exercises before you move on. You can use the pre-reading, PowerPoint, Internet, or the Help! Folder to help you complete the grade 4 exercises. When you have completed grade 4 you can move on to the grade 5-8 exam questions. (You will need to print these). Remember to be smart when using the Internet: Wikipedia is often complicated – sometimes even I don’t understand! BBC Bitesize, Teach ICT, and Revision World are better places to find your information!

Crib Sheet – What I must remember about ___ Starting Point: Read the learning outcomes from the exam board Record the key facts that you need to remember about Logical Operators! Think about what you have learnt today, what questions you have been asked, definitions of words, or anything else you think is important!

Homework Question Sheets: 7 Logic Gates Pre-reading notes: Pages 21-22