For OCR GCSE Computing Unit 1 - Theory

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

Lesson Objectives Understand and produce simple logic diagrams using the operation NOT, AND and OR Produce a truth table from a given logic diagram.
3.1 Logic Signals and Gates Logic Signals ReturnNext  Logic Value: Many physical quantities can be represented two possible numbers or logic values —
Number Systems & Logic Gates Day 2. Octal Number System Base (Radix)8 Digits0, 1, 2, 3, 4, 5, 6, 7 e.g = =648 1 =88 0 =1 The digit.
3. DIGITAL ELECTRONICS..
Lecture 3. Boolean Algebra, Logic Gates Prof. Sin-Min Lee Department of Computer Science 2x.
1 Survey of Computer Science CSCI 110, Spring 2011 Lecture 16 Digital Circuits, binary Numbers.
Boolean math is the cornerstone of digital communications, whether you are talking computers, PLC, or Cisco Routers on the Internet. ©Emil Decker, 2009.
Think about the following expression If the number entered is greater than 15 but less than 25 or the number is 100 and the letter chosen is after p but.
Binary Numbers.
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.
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.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
Fundamentals of IT UNIT-I OnlyforIPMCA. DIGITAL SIGNALS & LOGIC GATES Signals and data are classified as analog or digital. Analog refers to something.
Chapter 2: Binary logic OCR Computing for GCSE © Hodder Education 2011.
1 DIGITAL ELECTRONICS. 2 OVERVIEW –electronic circuits capable of carrying out logical (boolean) and arithmetic operations on information stored as binary.
Digital Logic Design Week 3
Course contents Chapter 1 - section 1.6 Chapter 2 - all sections Chapter – 4.7, and 4.12 Chapter , Chapter 6 - all sections.
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.
Digital Logic. 2 Abstractions in CS (gates) Basic Gate: Inverter IO IO GNDI O Vcc Resister (limits conductivity) Truth Table.
Logic Gates. The Inverter The inverter (NOT circuit) performs the operation called inversion or complementation. Standard logic symbols: 1 1 input output.
1 EG 32 Digital Electronics Thought for the day You learn from your mistakes..... So make as many as you can and you will eventually know everything.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
Teaching Computing to GCSE Level with Python Session 3.
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
1 GCSE Computing Binary Logic. GCSE Computing 2 Candidates should be able to understand and produce simple logic diagrams using the operations NOT, AND,
Logic Design CS221 1 st Term combinational circuits Cairo University Faculty of Computers and Information.
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.
Basic Electricity and Electronics Module Two Basic Electronics Copyright © Texas Education Agency, All rights reserved.
L OGIC G ATES Computer Organization – week 3. W HAT ’ S ALU? 1. ALU stands for: Arithmetic Logic Unit 2. ALU is a digital circuit that performs Arithmetic.
LOGIC GATES. INTRODUCTION TO LOGIC GATES Boolean functions may be practically implemented by using electronic gates. The following points are important.
Unit 1 Logical operators.
GCSE OCR Computing A451 Binary logic Computing hardware 6.
Basics of Logic gates - Part 1
Dr.Ahmed Bayoumi Dr.Shady Elmashad
Morgan Kaufmann Publishers
Logic Gates.
Boolean Algebra & De Morgan's Theorems
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
CSCI-100 Introduction to Computing
Chapter 2.3 Binary Logic.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Fundamentals & Ethics of Information Systems IS 201
Number Systems Decimal (base 10) { }
Logic Gates.
JC Technology Logic Gates.
Boolean Algebra.
Logic Gates.
Digital Logic.
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.
Data Binary Conversion.
KS4 Electricity – Electronic systems
Binary Numbers.
GCSE Computer Science – Logic Gates & Boolean Expressions
Digital Logic.
DIGITAL ELECTRONICS B.SC FY
AWIM Series Lawndale High School Experiment 6 Dec, 2017
Logic Gates.
Binary Logic.
Logic Gates Logic Gates Gateway To Technology
Department of Electronics
Introduction to Logic diagrams and truth tables
What are Logic Gates?.
Presentation transcript:

For OCR GCSE Computing Unit 1 - Theory Logic Gates and Binary For OCR GCSE Computing Unit 1 - Theory

Symbols and truth tables Logic Gates AND, OR and NOT Symbols and truth tables

Logic Gates Why logic gates? They are used to manipulate the signals in the processor. Logic gates are simple circuits which perform Boolean functions. In other words, a circuit which produces an output based on the input. Both the input and the output must be 1’s and 0’s and therefore these gates are the basis of all logic circuits. The 1’s and 0’s are actually where a small voltage is a 1 and a very small voltage is a 0

Logic Gates - NOT The NOT gate is sometimes known as an INVERTER as it will output the opposite or inverse of the input. We can show this in a truth table. Input Output 1

Logic Gates - AND The AND gate takes two inputs and gives an output only if both inputs are true. We can show this in a truth table. This time we have two inputs A and B. Input A Input B Output 1

Logic Gates - OR The OR gate takes two inputs and gives an output if either one input or the other input or both inputs are true. We can show this in a truth table. Again we have two inputs A and B. Input A Input B Output 1

Combining Logic Gates - NOT & AND - NAND We can also combine two or more gates and create a composite truth table. Input A Input B A AND B NOT (A AND B) 1

Combining Logic Gates - NOT & OR - NOR We can also combine two or more gates and create a composite truth table. Input A Input B A OR B NOT (A OR B) 1

Logic Gates - Worksheet Complete the logic gates worksheet. You can use http://www.neuroproductions.be/logic-lab/ to test your predictions.

Counting in binary - binary to denary. Binary addition.

Binary and Denary Binary is a number system written in Base 2. Denary is a number system written in Base 10 - this is the decimal system we use in everyday life. Later we will also meet Hexadecimal - which is in Base 16. Lets compare counting in denary to counting in binary.....

Complete the binary / denary conversions worksheet

We can also perform addition in Binary 1 0 0 0 + 0 1 0 1 _______

We can also perform addition in Binary 1 0 0 1 + 0 1 0 1 _______ Don't forget the carry bits!

In exams you often get asked to add two eight bit numbers 0 1 1 0 0 1 1 1 + 0 1 0 1 0 1 0 0 _____________ Don't forget the carry bits!

We call this an overflow error. In exams you often get asked to add two eight bit numbers - and explain this error... 1 0 1 1 0 1 0 1 + 0 1 0 1 0 1 0 1 _____________ What has happened here? We call this an overflow error.

Now complete the binary addition worksheet