Binary numbers. 1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9 10 3 10 2 10 1 10 0 1000100101 5049 (5.

Slides:



Advertisements
Similar presentations
How to Convert Decimal Numbers to Binary EXAMPLES.
Advertisements

Base 10 Denary Decimal
Candidates should be able to:
Mathematics with Binary. Question  Below is a binary string  Which is the least significant bit (LSB)?  Which is the most significant bit (MSB)? 0.
Binary Conversion In today’s lesson we will link together the binary and algorithm topics by looking at how to get the computer to: convert binary to decimal.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
An introduction to Binary. Binary is the language used by computers. It uses 0 and 1 to represent different numbers.
Numbering Systems Decimal (Denary) base 10. Clumsy when dealing with computers. Other systems –Binary –Octal –Hexadecimal Convenient when dealing with.
Decimal Review ,00010,0001, Decimal ~ Base 10 number system 10 different numbers: 0, 1, 2, 3, 4, 5, 6, 7, 8,
Fixed point binary numbers. Objectives  Draw a distinction between integers and numbers with a fractional part in a computer context.  Describe how.
A-Level Computing Data representation. Objectives Know how data can be represented in a computer system Understand the need for various forms of representation.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Binary Arithmetic In today’s lesson we will look at: a reminder of how binary works adding binary numbers overflow complements negative numbers and subtraction.
Converting From decimal to Binary & Hexadecimal to Binary
Bits and Bytes. Decimal Numbers 6,357 has four digits -base-10 (6 * 1000) + (3 * 100) + (5 * 10) + (7 * 1) = = 6357 (6 * 10^3) + (3.
1 Press Ctrl-A ©G Dear 2010 – Not to be sold/Free to use Converting Bits and Bytes Stage 6 - Year 11 Applied Mathematic (Preliminary General 1)
Conversions Denary to Binary Method 1
Fractions in Binary.
Working with 8-bit bytes and hexadecimal
Hexadecimal Data Representation. Objectives  Know how the Hexadecimal counting system works  Be able to convert between denary, binary & hexadecimal.
Data Representation Hexadecimal  Although computers work in binary it is sometimes inconvenient for humans to read everything in Binary. For example in.
Number Bases and Representation. Denary Number System (Base 10) Our number system uses 10 digits (0-9) As you move from right to left each number is worth.
Addition and Substraction
Computer Programming 12 Mr. Jean February 5 th, 2014.
1 1 7-Dec-15 Binary Converting to and from decimal.
Candidates should be able to:
SCIENTIFIC NOTATION. Convert to scientific notation       Convert to standard notation  1.92 X 10 3 
Denary (our numbers) Binary
GCSE Computing#BristolMet Session Objectives#8 MUST add two 8-bit binary integers SHOULD explain overflow errors COULD provide solutions to limit overflow.
Arithmetic in Binary. Addition A “Rule of Addition” is a statement of the form: = 8 How many such rules are there in Decimal?
BINARY Toby Wilson. LEARNING OBJECTIVES  Be able to convert binary to denary  Be able to convert denary into binary  Be able to explain how computers.
09/03/20161 Information Representation Two’s Complement & Binary Arithmetic.
Introduction to Number Representation A451 GCSE Computing.
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
STARTER – CRACK THE CODE
Binary Numbers Practice.
Starter Using two’s Complement form convert the following from Denary to Binary using 8 bits. Answer on mini whiteboard Using two’s.
COMPUTER FUNDAMENTALS David Samuel bhatti
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
WHAT IS BINARY? Binary is a number system that only uses two digits: 1 and 0. Any information that processed by a computer it is put into sequence of.
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary and Logic Computers use electrical signals that are on or off, so they have to see everything as a series of binary numbers. This data is represented.
Binary, Denary, Hexadecimal Conversion Binary Addition
Unit 18: Computational Thinking
Binary numbers: Week 7 Lesson 1
Representation of data in computer systems
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Binary & Hexidecimal Numbers
Lesson objectives Understand how computers represent and manipulate numbers [unsigned integers, signed integers (sign and magnitude, Two’s complement)
Binary Lesson 1 Nybbles.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Representing Data How does a computer represent data?
Binary Lesson 1 Nybbles.
Binary Lesson 1 Nybbles.
Binary Lesson 2 Bytes.
Topic 1: Data Representation
Lesson 2: Binary to Denary Conversion.
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
Starter Using the fingers on only one hand, what is the highest number you can count to? Rules: You must start at 1 You must count sequentially (i.e.
Binary Lesson 3 Hexadecimal
Binary  Name: Class: .
The basics of any electronic device means either electricity is flowing or it is not i.e. a switch is either on or off Computers are electronic devices.
COUNTING IN BINARY Binary weightings 0 x x x x 8
Hexadecimal.
LO1 – Understand Computer Hardware
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Signed Integers.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.1 Binary.
Binary.
Two’s Complement & Binary Arithmetic
Presentation transcript:

Binary numbers

1 Humans count using decimal numbers (base 10) We use 10 units: 0, 1, 2, 3, 4, 5, 6, 7, 8 and (5 x 1000 = 5000) 5000 (0 x 100 = 0) + 0 (4 x 10 = 40) + 40 (9 x 1 = 9) + 9 =5049 Computers count using binary numbers (base 2) They use just 2 units: 0 and (1 x 8 = 8) 8 (1 x 4 = 4) + 4 (0 x 2 = 0) + 0 (1 x 1 = 1) + 1 =13

Binary numbers2 Binary to denary BinaryDenary

Binary numbers3 Denary to binary BinaryDenary

Binary numbers4 And with 8 bits (a byte) you can represent 256 different numbers: 0 to (1 x 128)(1 x 64)(1 x 32)(0 x 16)(1 x 8)(1 x 4)(0 x 2)(1 x 1) = 237

Binary numbers5 How to… convert from binary to denary Add up the column values for each ‘1’, e.g = = 14 convert from denary to binary Take away the largest power of two you can and put a 1 for each number you take away and a 0 for each numbers you don’t use, e.g. 29 = 29 – 16 = 13 – 8 = 5 – 4 = 1 – 1 =