The Binary Number System 6 th grade math. What is binary? The number system we use is decimal, based on the number 10 The binary system is instead based.

Slides:



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

Binary Addition Rules Adding Binary Numbers = = 1
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
Representing Information as Bit Patterns Lecture 4 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Binary Expression Numbers & Text CS 105 Binary Representation At the fundamental hardware level, a modern computer can only distinguish between two values,
Chapter Chapter Goals Know the different types of numbers Describe positional notation.
Chapter 02 Binary Values and Number Systems Nell Dale & John Lewis.
Review Binary Basic Conversion Binary Decimal
Computer Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
Number Bonds of Ten Lesson 1.1.
Computer Systems 1 Fundamentals of Computing
Decimal to Binary Conversion Press any key to continue…
CS1800 Summer 2014 Binary Numbers. Decimal Integers  What does a decimal number like "87294" really mean?  More generally.
Converting binary to decimal decimal to binary
Memory A+ Chapter 5 Memory.
Computer Systems Chapter 1 Pages Hardware-physical pieces Key hardware components in a computer system: The physical parts. – Central processing.
EX_01.1/46 Numeric Systems. EX_01.2/46 Overview Numeric systems – general, Binary numbers, Octal numbers, Hexadecimal system, Data units, ASCII code,
Decimals Review. Decimals Decimals are a type of fractional number The denominator is always a power of 10 A decimal point is used to show that it is.
Math Review Do you remember, from math class, how exponentiation operations are typically represented? anan is known as the "base" a is known as the "base"
Number Systems What is the Standard Base we
Chapter 2 Binary Values and Number Systems. 2 2 Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645,
Binary! Why do computers use binary? Easy to detect the state of a switch – they’re either on or off! Using another base makes.
Number Representation. Representing numbers n Numbers are represented as successive powers of a base, or radix.
The Hexadecimal Number System and Memory Addressing ISAT 121.
Binary Values and Number Systems
Positional Notation 642 in base 10 positional notation is:
Computer Science Binary. Binary Code Remember the power supply that is inside your computer and how it sends electricity to all of the components? That.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Phys 4330 Digital ElectronicsBinary System Digital circuits process signals that contain just two voltage levels or states, labeled logic "0" and logic.
IP Addressing Dotted Decimal and Binary explanation.
Exploring Computer Science – Lesson 2-5. Click to add text.
Lecture 6 Excess Notation. Excess 8 notation indicates that the value for zero is the bit pattern for 8, that is 1000 Excess 8 notation indicates that.
Georgia Institute of Technology Introduction to Programming Part 3 Barb Ericson Georgia Institute of Technology May 2006.
Decimal to Binary Conversion Press any key to continue…
Binary 101 Gads Hill School. Aim To strengthen understanding of how computers use the binary number system to store information.
Mr. Gifford’s 5 th Grade Math Lesson #8 Looking for Patterns.
Number Representation 1 Lecture 2. Outcomes By the end of the session you should: – Understand what bits/bytes/words are. – Understanding conversion between.
TOPICS:  Introduction  Place Value  Binary  Decimal conversion  Decimal  Binary conversion  Related terms  Quiz.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
Adding and Subtracting with proper precision m m 12.0 m m m m m m m Keep in your answer everything.
Calculation strategies Maths is Fun!. Step 1 *Children will begin to record simple number sentences e.g = 5. *They will move on to using a number.
Scientific Notation. Can be also called standard form or exponential notation Can be also called standard form or exponential notation Used to write numbers.
Computer Systems Salihu Ibrahim Dasuki (PhD) CSC102 INTRODUCTION TO COMPUTER SCIENCE.
Binary Values. Numbers Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645, 32 Negative Numbers.
The Binary Number System Part 5 - Division. General Information To divide, we use the same algorithm as we do with decimal numbers. The nice thing is.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Programmable Logic Controller
Binary & Decimal numbers
Binary and Hard Disk PEOPLE Program
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
Consider this number: , Ones (7 ones) Tens (no tens)
Information Technology Introduction to Number System
Representation of data in computer systems
Introduction to Programming Part 3
Binary & Hexidecimal Numbers
MATH VOCABULARY & GUIDED QUESTIONS DAY 13.
Number Systems.
Saturday, 10 November 2018 Binary
Binary / Hex Binary and Hex The number systems of Computer Science.
Everything that goes on under the hood of a computer is done in binary -- the language of 0s and 1s. If we have only two numbers, it's very easy to represent.
Introduction to Binary
Topic 1: Data Representation
How is 0.41  10 related to 0.41  100?.
How Computers Store Data
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.
Binary to Decimal Conversion
Electronic Memory.
1.6) Storing Integer: 1.7) storing fraction:
Presentation transcript:

The Binary Number System 6 th grade math

What is binary? The number system we use is decimal, based on the number 10 The binary system is instead based on the number 2 So, if the decimal system is based on 10 and we use the numbers 0-9, what numbers do you think we can use in the binary system that is based on 2?

Terminology Bit – one digit in the binary number system Nibble – 4 digits (or significant digits) in the binary system – Example: 0101 Byte – 8 digits (or significant digits) in the binary system – Example:

Why use binary? Electronics, especially computers, only really know on and off (represented by 1 and 0) So for these, everything stored is actually stored in a set 0’s and 1’s Although we do not write computer programs in binary, what we write is turned into the 0’s and 1’s the computer (or other electronic device) needs to understand

So how does it work? So if we only have 0 and 1 to work with, how do we represent other numbers? In decimal, the place value is in powers of 10 and as you move left in a number, the place value is a higher power of 10: – Example: 5,321 = Binary works in the same way, but with powers of 2: – Example: =

Videos to watch The following help to explain how this works (watch all): – This first video introduces the concepts of different number systems: CMHkU&feature=pyv CMHkU&feature=pyv – This second video introduces the concept of binary and how it works – This third video focuses on binary counting: – This last video talks more on how to translate decimal numbers into binary:

Binary Decimal The first thing to master is the ability to translate numbers from binary into decimal and from decimal to binary. To go from decimal to binary: – There are 2 methods: Continually dividing by 2 Compare with powers of 2 and subtract – This website explains both with great pictures and examples:

Practice translating from decimal to binary Start by counting from 0 to 50 in binary on a piece of paper. – Note patterns that you see Now see if you can translate these into binary:

Binary Decimal To go from binary to decimal, we basically can reverse either of the methods we used to get into binary: Continually doubling Positional notation This website explains both with great pictures and examples: – to-Decimal to-Decimal

Practice translating from binary to decimal Using which ever method you prefer, see if you can translate the following binary numbers into decimal:

Some online games to practice Try your hand at some of these to make sure you can translate back and forth between decimal and binary Both translations are tested here: – ge.htm ge.htm – Binary to decimal: ssons/BinaryToDecimal/ ssons/BinaryToDecimal/ Decimal to binary: ssons/DecimalToBinary/ ssons/DecimalToBinary/

Work to do to complete this unit Page 8 – decimal to binary translations Page 10 – binary to decimal translations Play at least 2 online games on translating and fill in the following: – I played___________ game at this website_____________________________

In my own words Explain how you know how to translate from decimal to binary (use an example): Explain how you know how to translate from binary to decimal (use an example):

Things to notice If the right most bit is 0, the number is_______ and if it is 1, the number is ______. The largest 4 bit number that can be represented in binary is ________. The largest 8 bit number that can be represented in binary is ________. Name one other thing you notice about binary numbers______________________________ _____________________________________.