The Understanding of Binary Math & Conversion

Slides:



Advertisements
Similar presentations
Base 10 Denary Decimal
Advertisements

CS 151 Digital Systems Design Lecture 3 More Number Systems.
ENGIN112 L3: More Number Systems September 8, 2003 ENGIN 112 Intro to Electrical and Computer Engineering Lecture 3 More Number Systems.
1 Number Systems. 2 Numbers Each number system is associated with a base or radix – The decimal number system is said to be of base or radix 10 A number.
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.
1 12/08/03SW Abingdon and Witney College Binary Converting to and from decimal.
Review Binary Basic Conversion Binary Decimal
Computer Number Systems This presentation will show conversions between binary, decimal, and hexadecimal numbers.
CS1800 Summer 2014 Binary Numbers. Decimal Integers  What does a decimal number like "87294" really mean?  More generally.
Numbering Systems Decimal (Denary) base 10. Clumsy when dealing with computers. Other systems –Binary –Octal –Hexadecimal Convenient when dealing with.
Hexadecimal and ASCII Lesson Objective: Understand the purpose of ASCII and how to use it. Lesson Outcome: Convert between Hexadecimal and ASCII Convert.
Convert Decimal to Floating point number [IEEE 754]
Number Systems.
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.

1 Pertemuan 2 Network Math. Discussion Topics Binary presentation of data Bits and bytes Base 10 number system Base 2 number system Converting decimal.
Number Systems What is the Standard Base we
Number Representation. Representing numbers n Numbers are represented as successive powers of a base, or radix.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
CPS120: Introduction to Computer Science Computer Math: Converting to Decimal.
Positional Notation 642 in base 10 positional notation is:
© 2010 Cisco Systems, Inc. All rights reserved. 1 Network Math.
Lecture 2 Binary Values and Number Systems. The number 943 is an example of a number written in positional notation. The relative positions of the digits.
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)
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.
THE BINARY NUMBER SYSTEM “There are only 10 types of people in this world: Those who understand BINARY and those who do not.”
Binary A double zero educational presentation. Binary Basics Binary is the language computers use Only 1’s and 0’s can be found in Binary Very large numbers.
1 1 7-Dec-15 Binary Converting to and from decimal.
Springfield Technical Community College Center for Business and Technology.
IP Addressing Dotted Decimal and Binary explanation.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
TOPICS:  Introduction  Place Value  Binary  Decimal conversion  Decimal  Binary conversion  Related terms  Quiz.
The Hexadecimal System is base 16. It is a shorthand method for representing the 8-bit bytes that are stored in the computer system. This system was chosen.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
Multiplying Decimals 12/7/2015. To Multiply: You do not align the decimals. Instead, place the number with more digits on top. Multiply Count the number.
STARTER – CRACK THE CODE
Number Systems Decimal Can you write 12,045 in expanded form? Base? Allowable digits for each place?
COMPUTER ORGANIZATION 4 TH LECTURE. ASCII Code  ASCII ( American Standard Code for Information Interchange).  Input and output devices that communicate.
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.
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.
Multiplying Decimals.
Consider this number: , Ones (7 ones) Tens (no tens)
Discrete Mathematics Numbering System.
Hexadecimal Conversion
Binary Positional Notation
BINARY CODE.
Number Systems.
Representing Data How does a computer represent data?
Multiplying Decimals.
Hexadecimal Conversions
Binary Lesson 3 Hexadecimal
Binary Lesson 2 Bytes.
Binary Lesson 3 Hexadecimal
Data Binary Conversion.
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.
Binary Lesson 3 Hexadecimal
How to Represent Numbers on a Computer
Quiz Name Here Click to start.
Binary Lesson 4 Hexadecimal and Binary Practice
Numeral systems (radix)
Binary Lesson 4 Hexadecimal and Binary Practice
Binary to Decimal Conversion
MATH (CALCULATOR) PRACTICE TEST
MATH (NO CALCULATOR) PRACTICE TEST
Binary.
1 1. Binary Basics Year 8 Unit 1 Bitmap Graphics.
Presentation transcript:

The Understanding of Binary Math & Conversion By: David Paehlke

Base 10 Numbers Compared to Base 2 Numbers Base 10 numbers are 0 through 9 which are Decimal Numbers Base 2 numbers are 0 and 1 which are Binary Numbers 0 means off 1 means on

Names for Groups of Binary Digits One binary digit equals a bit Four binary digits equals a nibble Eight binary digits equals a byte

Converting Binary to Decimal For Our Understanding We use the number line: 128 64 32 16 8 4 2 1 Check Out This Site: A tutorial on binary numbers

Question #1: What are the digits for Binary? 0 through 9 0 and 1 0 through 9 and A through F

So Sorry! Time for Review

CONGRATULATIONS!

The structure of Binary Digits Typically we work with 8 bits, a byte when dealing with binary numbers with computers and networking. The biggest number we can have is when all 8 bits are 1’s. Like this: 11111111 = 255 Which is: 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1= 255

Let’s Practice Converting Decimal to Binary Take the decimal number 128 and convert it to Binary using our number line. Place a 0 for off and a 1 for on to equal 128. 64 32 16 8 4 2 1 1 0 0 0 0 0 0 0 So 10000000 in binary = 128 in decimal

Let’s try another one Let’s take the decimal number 149. 128 64 32 16 8 4 2 1 1 0 0 1 0 1 0 1 Just add the numbers together that have a 1 128 + 16 + 4 + 1 = 149

Here is one more Convert decimal number 231 to binary 128 64 32 16 8 4 2 1 1 1 1 0 0 1 1 1 128 + 64 + 32 + 4 + 2 + 1 = 231

Quiz Time! What is the decimal number 179 in binary? A. 10110011

OOPS!!

YOU ARE ABSOLUTELY CORRECT!

Now That You Can Convert From Decimal To Binary, Let’s Try Converting From Binary To Decimal As long as you can remember the number line you learned earlier, you should have no issues with this conversion. 128 64 32 16 8 4 2 1

Let’s Try One Let’s take the binary number 10101010 and convert it to decimal 128 64 32 16 8 4 2 1 1 0 1 0 1 0 1 0 We have: 128 + 32 + 8 + 2 = 170

Here is Another One The Binary number is 11110001 Our number line is: 64 32 16 8 4 2 1 1 1 1 1 0 0 0 1 128 + 64 + 32 + 16 + 1 = 241

Here is a website for more information on converting Binary to Decimal http://www.newton.dep.anl.gov/newton/askasci/1995/math/MATH065.HTM

Let’s try another example Let’s take 01101110 and convert it to decimal 64 32 16 8 4 2 1 0 1 1 0 1 1 1 0 We have 64 + 32 + 8 + 4 + 2 = 110

I Believe it is Time for a Quiz Question Convert 11000111 to Binary A. 201 B. 176 C. 199 D. 198

I am so Sorry, but that is incorrect

BRAVO! You Are Good

CONGRATULATIONS!! You Have Completed the First Step in Learning Binary Math and Conversion with Binary and Decimal