Binary Numbers So what are they and why are they important?

Slides:



Advertisements
Similar presentations
EMB1006 The Binary System There is no 2 Jonathan-Lee Jones.
Advertisements

Copyright (c) 2004 Professor Keith W. Noe Number Systems & Codes Part I.
Digital Circuit Why Digital Circuit? – Digital signals ( 0 and 1) are very easy to handle with electronic circuits only 2 states needed: Switch ON or OFF,
 A binary number is a number that includes only ones and zeroes.  The number could be of any length  The following are all examples of binary numbers.
Binary (Base 2, b) Octal (Oct, Base 8) Hexadecimal (Hex, Base 16, h, 0x) Decimal (Base 10, d) OR Counting for Aliens.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
 Binary Binary  Binary Number System Binary Number System  Binary to Decimal Binary to Decimal  Decimal to Binary Decimal to Binary  Octal and Hexadecimal.
© Copyright 2012 by Pearson Education, Inc. All Rights Reserved. 1 Number Systems 0, 1 0, 1, 2, 3, 4, 5, 6, 7 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 0, 1, 2, 3,
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Fractions and Decimals
1 Week 3: Data Representation: Negative Numbers READING: Chapter 3.
Place Value from Millions to Thousandths
Factional Values What is 0.75 in binary?. How could we represent fractions? In decimal: – As fractions : 1/5.
IT-101 Section 001 Lecture #3 Introduction to Information Technology.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
DECIMAL BASE Based on power of 10 In the number 2,468 – from right to left -- the 8 represents the ones, the 6 represents the tens, the 4 represents the.
Lesson 4-3 Example Compare and Step 1Line up the decimal points. Start at the left. Compare digit to digit until you find the place.
NUMBER SYSTEM Decimal System Binary System. We use two digits in this system (0,1) just like the existing system of computers.. And write the number in.
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
© 2010 Cisco Systems, Inc. All rights reserved. 1 Network Math.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Number Systems 0, 1 0, 1, 2,
Chapter 2 Data Representation.
Working with 8-bit bytes and hexadecimal
1 1 7-Dec-15 Binary Converting to and from decimal.
Computer Systems Nat 4/5 Computing Science Lesson 1: Binary.
The History of Programming Languages The ENIAC (Electronic Numerical Integrator and Calculator) completed in 1945, was one of the first computers that.
Arithmetic in Binary. Addition A “Rule of Addition” is a statement of the form: = 8 How many such rules are there in Decimal?
How to Determine when Zeros are Counted as Significant Figures.
HNC COMPUTING - COMPUTER PLATFORMS 1 Micro Teach Binary.
COMPUTER PROGRAMMING I Objective 1.02 Understand Numbering Systems.
ABFC... Home page Introduction Binary number system Hexadecimal number system Binary coded decimal Objectives Octal number system Click.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
The language of computers Before we start you need to know an important fact. Anything to the power 0 is worth 1. You will need to remember this for later!
© 2016 AQA. Created by Teachit for AQA Number bases and Units of information Lesson.
Binary Numbers Press any key to begin.. In order to understand the binary numbering system lets first look at our decimal system. The decimal numbering.
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
Binary Numbers. Decimal vs Binary = 1001 = 101 = 10 1 = on = 0 = off = On and off.
Nat 4/5 Computing Science Lesson 1: Binary
Programmable Logic Controller
Appendix F Number Systems binary 0, 1 0, 1, 2, 3, 4, 5, 6, 7
Do Now Write the following number in words
Data Representation Lesson 2 Binary KS3 COMPUTING KS3 Computing
The Art of Computational Thinking…Binary Code
Binary
Hexadecimal Conversion
Recap Add these numbers together in binary
What is a byte? What is it? How would you use it?
Digital Electronics INTRODUCTION ANALOG VS DIGITAL NUMBER SYSTEMS.
Binary Positional Notation
Copyright (c) 2004 Professor Keith W. Noe
Number Systems Lab session 1 Xuan Guo.
Do Now Write the following number in words
Lesson objectives Understand how computers represent and manipulate numbers [unsigned integers, signed integers (sign and magnitude, Two’s complement)
Binary Lesson 1 Nybbles.
Scientific Notation.
Binary Lesson 1 Nybbles.
Decimal System The radix or base of a number system determines
Binary Lesson 1 Nybbles.
Binary Numbers Press any key to begin..
Binary Lesson 3 Hexadecimal
Objective 1.02 Understand Numbering Systems
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.
Data Representation and Organization
The Binary System.
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.
Multiplying decimal number by 10,100,1000
The Understanding of Binary Math & Conversion
Lecture 36 – Unit 6 – Under the Hood Binary Encoding – Part 2
Section 6 Primitive Data Types
Presentation transcript:

Binary Numbers So what are they and why are they important?

Decimal System vs. Binary System The Decimal System is a Base 10 system. That simply means it uses 10 symbols. (0,1,2,3,4,5,6,7,8,9) The Binary System is a Base 2 system. It only uses 2 symbols. (0 and 1)

Binary in Computing Necessary for only 2 symbols because computers/ electronics recognize only: “ON” (represented by 1) or “OFF” (represented by 0) For computers, this 2 symbol system is crucial because it increases speed, memory and utilization These binary digits (“0” and “1”) are known as “bits”

Understanding Binary In the decimal system, let’s take the number: 150 for example: the “ones” column is represented by 0 The “tens” column is represented by 5 The “hundredths” column is represented by 1 As we go from right to left, the columns represent increasing powers of 10. Ones to tens, tens to hundredths, etc.

Understanding Binary However, the Binary Number System, from right to left increases in powers of 2. (128, 64, 32, 16, 8, 4, 2, 1) So, since we can easily figure out the value of each column: we can deduce what the number is judging by whether there is a “1” (yes to that value) or “0” (none of that value) in that column.

Binary numbers Let’s take the binary number: 10 The column on the far right is the 1 column and the 0 indicates no value present. The column on the left is the 2 column and the “1” means there is a value of 2 present. So 10 in binary (remember this reads as 1 and 0, not “ten”) = 2 in the decimal system.

Binary Numbers Now’s let’s watch a brief video to better understand how to convert the numbers from binary to decimal and vice versa. Binary Numbers in 60 seconds: &NR=1 &NR=1

Binary System Lesson Plan

References “Binary Numbers” image retrieved from Video retrieved on 9/18/2011 from: Website retrieved on 9/18/11 from: Website retrieved on 9/19 from: Website retrieved on 9/19 from: Website retrieved on 9/19 from: numbers.htm. numbers.htm Website retrieved on 9/19 from: