© 2010 Cisco Systems, Inc. All rights reserved. 1 Network Math.

Slides:



Advertisements
Similar presentations
Base 10 Denary Decimal
Advertisements

Understanding Binary Basics
CIS 020 Assembly Programming Chapter 02 - Numbering Systems & Data Representation © John Urrutia 2012, All Rights Reserved.5/27/20121.
Agenda Shortcuts converting among numbering systems –Binary to Hex / Hex to Binary –Binary to Octal / Octal to Binary Signed and unsigned binary numbers.
 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.
Fractions Chapter Two McGraw-Hill/Irwin
The Binary Number System
Binary Numbers.
How to Round Whole Numbers
Agenda Data Representation Purpose Numbering Systems Binary, Octal, Hexadecimal (Hex) Numbering System Conversions Binary to Octal, Octal to Binary Binary.
Revision Introductory Lesson
Place value to thousands
Number Systems Binary and Hexadecimal. Base 2 a.k.a. Binary  Binary works off of base of 2 instead of a base 10 like what we are taught in school 
Pharmacology I Math Review.
Place Value and Multiplication
Copyright © 2010 Pearson Education, Inc. All rights reserved. R.1 – Slide 1.
Decimals and Expanded Form
CONVERSION OF NUMBER SYSTEMS FAHEEM ANWAR MANAGER NETWORKS ACADEMY PTCL ACADEMY.
SCIENTIFIC NOTATION What is it? And How it works?.
Place Value.
How to Multiply: Distributive x 62 x 60 x = 2790 Step 1: Multiply 45 by the expanded form of 62 (60+2). Step 2: Add together.
Phys 4330 Digital ElectronicsBinary System Digital circuits process signals that contain just two voltage levels or states, labeled logic "0" and logic.
To divide by 10 (to make something ten times smaller).
$100 $200 $300 $400 $100 $200 $300 $400 $300 $200 $100 Multiply by 1 digit numbers Multiply & estimate results Multiply by 2 digit numbers Multiply.
Adding and Subtracting Decimals Textbook page 102.
Numbering Systems and Conversion Understand How Computing Devices Work 1.
SIGNIFICANT digits (a.k.a. Sig Figs). What are sig figs?  It is important to be honest when reporting a measurement, so that it does not appear to be.
Number Systems & Binary How to count. How do we represent numbers? Early systems: – Actual count : ||||| = 5 – Roman numers : XI = 11 Hard to do math:
Place Value.
× ÷ by 10, 100 & 100 Read through the PowerPoints and answer any questions before clicking to the answer.
© 2003, Cisco Systems, Inc. All rights reserved.
Basic Math Skills Workshop
Numeric Data Representation
Discrete Mathematics Numbering System.
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
Binary Positional Notation
Multiplying 2 and 3 Digit Do you remember….?.
Adding, Subtracting, and Multiplying Decimals 3-1/3-2
Multiplying 2 Digit Factors
? 1 ten 1 ten = 10 ones How many ten?
ADDITION and SUBTRACTION
Multiply By Two Digits Created by M. Guy.
Convert Binary Number to Octal
Number Systems & Binary
2 Digit by 2 Digit Multiplication
Binary Lesson 1 Nybbles.
Tools of Web Development 1: Module A: Numbering Systems
How to Multiply By Two Digits
BILLION HUNDRED MILLION TEN MILLION MILLION HUNDRED THOUSAND TEN THOUSAND THOUSANDHUNDREDSTENSONES
Is it worth 5 or 50?.
Binary Lesson 1 Nybbles.
Is it worth 5 or 50?.
Doubles and Halves Lets learn all about it.
Number Systems Base 2, 10, 16.
Binary Lesson 1 Nybbles.
4,135,652 Place Value Hundred Thousands Ten Thousands Hundreds
Binary Math Basic operations.
Binary “There are 10 types of people in the world: Those who understand binary, and those who don't.”
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.
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Scientific Notation.
Multiplying decimal number by 10,100,1000
Binary to Decimal Conversion
Binary: Counting with 1s and 0s
Chapter 2 Number Systems.
The Understanding of Binary Math & Conversion
Converting from Base-n to Base-10
To be able to multiply a number by 10, 100 and 1000
Chapter 2 Number Systems.
Presentation transcript:

© 2010 Cisco Systems, Inc. All rights reserved. 1 Network Math

2 © 2010 Cisco Systems, Inc. All rights reserved. Decimal Numbers AKA BASE 10 Numbers

3 © 2010 Cisco Systems, Inc. All rights reserved. Decimal numbers are based on 10 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 Decimal Number Format Ten Millions Hundred thousands Ten thousandsThousandsHundredsTensOnes 10,000,0001,000,000100,00010,0001,

4 © 2010 Cisco Systems, Inc. All rights reserved. Example: 7, = 7469 Decimal Number Format ThousandsHundredsTensOnes 7469 X 1000X 100X 10X

5 © 2010 Cisco Systems, Inc. All rights reserved. Place holders for each digit are based on a power of 10 Decimal Number Format Ten Millions Hundred thousands Ten thousandsThousandsHundredsTensOnes 10,000,0001,000,000100,00010,0001,

6 © 2010 Cisco Systems, Inc. All rights reserved. Example: 7,469 TOTAL  7469 Decimal Number Format is a Base 10 Format ThousandsHundredsTensOnes 7469 X 10 3 X 10 2 X 10 1 X

7 © 2010 Cisco Systems, Inc. All rights reserved. Binary Numbers AKA Base 2 Numbers

8 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 Place holders for each digit are based on a power of 2 Binary (BASE 2) Number Format

9 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 0 = 1 Binary (BASE 2) Number Format

10 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 1 = 2 Binary (BASE 2) Number Format

11 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 2 = 4 Binary (BASE 2) Number Format

12 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 3 = 8 Binary (BASE 2) Number Format

13 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 4 = 16 Binary (BASE 2) Number Format

14 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 5 = 32 Binary (BASE 2) Number Format

15 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 6 = 64 Binary (BASE 2) Number Format

© 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 7 = 128 Binary (BASE 2) Number Format

17 © 2010 Cisco Systems, Inc. All rights reserved. Binary numbers are based on 2 digits: 0 & 1 The decimal value of each place in a binary number can be calculated by raising 2 to the appropriate power: 2 7 = 128 Binary (BASE 2) Number Format

18 © 2010 Cisco Systems, Inc. All rights reserved. 8-BIT BINARY NUMBERS What do 8-bit binary numbers look like?  They will use the digits 0 and 1  They will be 8 bits long

19 © 2010 Cisco Systems, Inc. All rights reserved. 8-BIT BINARY NUMBERS Here are some examples of 8-bit binary numbers.    

20 © 2010 Cisco Systems, Inc. All rights reserved. 8-BIT BINARY NUMBERS There are 256 combinations of 8-bit binary numbers:  Smallest:  Largest:

21 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of the smallest 8-bit binary number? Since zero is a factor when multiplying each place value, there are 8 zeros to add together: = 0 converted to Base 10 8-BIT BINARY NUMBERS x128=00x64=00x32=00x16=00x8=00x4=00x2=00x1=

22 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of the largest 8-bit binary number? Since each place value is multiplied by 1, the 8 place values are added together: =255 converted to Base 10 8-BIT BINARY NUMBERS x128=1281x64=641x32=321x16=161x8=81x4=41x2=21x1=

23 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of this 8-bit binary number? Each zero factor will result in a zero value when multiplying the place value, but the factors of 1 will be added together: = 5 converted to Base 10 8-BIT BINARY NUMBERS x128=00x64=00x32=00x16=00x8=01x4=00x2=01x1=

24 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of this 8-bit binary number? Each zero factor will result in a zero value when multiplying the place value, but the factors of 1 will be added together: = 170 converted to Base 10 8-BIT BINARY NUMBERS x128=1280x64=01x32=320x16=01x8=80x4=01x2=20x1=

25 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of this 8-bit binary number? Each zero factor will result in a zero value when multiplying the place value, but the factors of 1 will be added together: = converted to Base 10 8-BIT BINARY NUMBERS

26 © 2010 Cisco Systems, Inc. All rights reserved. What is the decimal value of this 8-bit binary number? Each zero factor will result in a zero value when multiplying the place value, but the factors of 1 will be added together: = converted to Base 10 8-BIT BINARY NUMBERS

27 © 2010 Cisco Systems, Inc. All rights reserved. CONVERSIONS Binary to Decimal Decimal to Binary

28 © 2010 Cisco Systems, Inc. All rights reserved. Remember the decimal values for each placeholder in an 8-bit binary number: Converting from Binary to Decimal and Converting from Decimal to Binary utilize this These conversions will be necessary numerous times! IMPORTANT TO REMEMBER!

29 © 2010 Cisco Systems, Inc. All rights reserved.

30 © 2010 Cisco Systems, Inc. All rights reserved.