OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic.

Slides:



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

Computer Science 210 Computer Organization Introduction to Logic Circuits.
Intro to Digital Logic. What does Digital mean? A method of storing, processing and transmitting information through the use of distinct electronic or.
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.
Cosc 2150: Computer Organization Chapter 3: Boolean Algebra and Digital Logic.
Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates Invitation to Computer Science, Java Version, Third Edition.
08/07/041 CSE-221 Digital Logic Design (DLD) Lecture-8:
Chapter 4 Logic Gates and Boolean Algebra. Introduction Logic gates are the actual physical implementations of the logical operators. These gates form.
Chapter 4: The Building Blocks: Binary Numbers, Boolean Logic, and Gates Invitation to Computer Science, C++ Version, Fourth Edition.
Gates CS105. Electrical Signals Transmission of data Any electrical signal has a level of voltage – Interpretation of 1s and 0s Generally speaking: –
Part 2: DESIGN CIRCUIT. LOGIC CIRCUIT DESIGN x y z F F = x + y’z x y z F Truth Table Boolean Function.
Binary Logic and Gates COE 202 Digital Logic Design Dr. Aiman El-Maleh
3. DIGITAL ELECTRONICS..
Quiz # 2 Chapters 4, 5, & 6.
Test #1 rescheduled to next Tuesday, 09/20/05 The contents will cover chapter 1, 2, and part of Chapter 4. The contents will cover chapter 1, 2, and part.
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.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
CSCI-235 Micro-Computers in Science Hardware Design Part I.
Logic Gates How Boolean logic is implemented. Transistors used as switches to implement Boolean logic: ANDOR Logic with Transistors.
Chapter 2: Binary logic OCR Computing for GCSE © Hodder Education 2011.
Boolean Algebra By Lindsey Curtis & Tomas Filip. Boolean Algebra An abstract mathematical system used to describe relationships between sets Mainly used.
Digital Components and Combinational Circuits Sachin Kharady.
 In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.
CSCI-100 Introduction to Computing Hardware Design Part I.
LOGIC GATES. Electronic digital circuits are also called logic circuits because with the proper input, they establish logical manipulation paths. Each.
A-Level Computing#BristolMet Session Objectives#6 MUST understand and produce simple logic diagrams using the operations NOT, AND and OR SHOULD explain.
1.8 Binary Storage and Registers
ITEC 352 Lecture 3 Low level components(2). Low-level components Review Electricity Transistors Gates Really simple circuit.
Boolean Algebra and Logic Gates CSE-1108 Ahsanullah University of Science and Technology (AUST)
Chapter 4 Fundamentals of Computer Logic 1 Chapter 4: Fundamental of Computer Logic - IE337.
1 GCSE Computing Binary Logic. GCSE Computing 2 Candidates should be able to understand and produce simple logic diagrams using the operations NOT, AND,
Boolean Algebra. LO:  Understand why Boolean algebra is used  Understand basic Boolean algebra notation  Understand why Boolean algebra is used  Understand.
LOGIC CIRCUITLOGIC CIRCUIT. Goal To understand how digital a computer can work, at the lowest level. To understand what is possible and the limitations.
 A transistor is the basic building block of electronic components.  The average computer may have millions of them within its circuits.  Essentially,
Circuit Synthesis A logic function can be represented in several different forms:  Truth table representation  Boolean equation  Circuit schematic 
Lecture 1 Gunjeet kaur Dronacharya group of institutions.
Logic Gates Unit 16.
Logic gates.
Invitation to Computer Science, C++ Version, Fourth Edition
Unit 1 Logical operators.
GCSE OCR Computing A451 Binary logic Computing hardware 6.
Creating logic gates with Minecraft
Morgan Kaufmann Publishers
Component 1 Logical operators.
Computer Code.
Logic Gates and Boolean Algebra
Computer Science 210 Computer Organization
Lab02 :Logic Gate Fundamentals:
CSCI-100 Introduction to Computing
Chapter 2.3 Binary Logic.
CS140 Lecture 03: The Machinery of Computation: Combinational Logic
Invitation to Computer Science, Java Version, Third Edition
System Architecture 1 Chapter 2.
Aberdeen Grammar School
How Boolean logic is implemented
CS105 Introduction to Computer Concepts GATES and CIRCUITS
Computer Science 210 Computer Organization
For OCR GCSE Computing Unit 1 - Theory
JC Technology Logic Gates.
Week 7: Gates and Circuits: PART II
Computer Science 210 Computer Organization
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.
GCSE Computer Science – Logic Gates & Boolean Expressions
Combinational Circuits
Binary Logic.
XOR Function Logic Symbol  Description  Truth Table 
Truth tables Mrs. Palmer.
Binary Logic and Gates COE 202 Digital Logic Design Dr. Aiman El-Maleh
SYEN 3330 Digital Systems Chapter 2 – Part 1 SYEN 3330 Digital Systems.
Presentation transcript:

OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Chapter 2: Binary Logic

OCR GCSE Computing © Hodder Education 2013 Slide 2 Chapter 2: Binary Logic In 1945 John von Neumann published a document that identified the principles behind the modern computer: Both data and programs are stored in the same place in the computer’s memory Both data and instructions are stored in binary Binary is a number system using only 0 and 1 to represent all numbers. Computers use binary because 1 and 0 can be represented very easily using simple electronic components set into the ON or OFF state (a switch).

OCR GCSE Computing © Hodder Education 2013 Slide 3 Chapter 2: Binary Logic The digital computer uses an arrangement of tiny electronic switches (transistors) called logic gates connected together. These logic gates are used to manipulate the signals within the processor. The arrangement of the switches in the logic gate determines what it does to the input signal. The logic gates are all connected to allow the processor to receive and pass on electronic signals

OCR GCSE Computing © Hodder Education 2013 Slide 4 Chapter 2: Binary Logic The circuit to store a single bit of data is made from a transistor and a capacitor. A capacitor can store electrons, and it can be in one of two states: ‘charged’, full of electrons; ‘discharged’, empty. A transistor is a switch that allows the control circuit to: check if there is a charge stored in the capacitor or not; change the state of the capacitor.

OCR GCSE Computing © Hodder Education 2013 Slide 5 Chapter 2: Binary Logic There are three main logic gates. NOT: – If 0 is input then it outputs 1; – If 1 is input then it outputs 0. INPUT OUTPUT

OCR GCSE Computing © Hodder Education 2013 Slide 6 Chapter 2: Binary Logic AND: – The AND gate outputs 1 only if both inputs are 1. INPUT A OUTPUT INPUT B

OCR GCSE Computing © Hodder Education 2013 Slide 7 Chapter 2: Binary Logic OR: – The OR gate outputs 1 if either of the inputs is 1. INPUT A OUTPUT INPUT B

OCR GCSE Computing © Hodder Education 2013 Slide 8 Chapter 2: Binary Logic These logic circuits can be combined to make more complex ones: for example, AND and NOT. INPUT A INPUT B OUTPUT Output used as next INPUT

OCR GCSE Computing © Hodder Education 2013 Slide 9 Chapter 2: Binary Logic This circuit contains a AND gate and a NOT gate: The inputs A and B are processed first by the AND gate. That output is then processed by the NOT gate. We write this combination as NOT(A AND B). INPUT A INPUT B OUTPUT

OCR GCSE Computing © Hodder Education 2013 Slide 10 Chapter 2: Binary Logic George Boole, an English mathematician, developed this way of writing down logical expressions (Boolean algebra). The expression NOT(A OR B) refers to this diagram: INPUT A INPUT B OUTPUT

OCR GCSE Computing © Hodder Education 2013 Slide 11 Chapter 2: Binary Logic We use a table showing all the possible inputs and the resulting outputs to describe what the logic circuit does. This is called a truth table. For the expression P = NOT(A OR B) the truth table can be derived: