Convert Decimal to Binary

Slides:



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

DATA REPRESENTATION CONVERSION.
Number Systems. 2 The total number of allowable symbols in a number system is called the radix or base of the system. Decimal Numbers: radix = 10 (symbols:
Converting Binary to Octal
Quarter 2 Test 3 Review XXI. Intro to Fractions & Equivalent Fractions
Decimal to Binary Conversion Press any key to continue…
Number Systems and Arithmetic
 Binary Binary  Binary Number System Binary Number System  Binary to Decimal Binary to Decimal  Decimal to Binary Decimal to Binary  Octal and Hexadecimal.
Binary Numbers.
Number systems Converting numbers between binary, octal, decimal, hexadecimal (the easy way)
Operations with Scientific Notation
Chapter 16 Binary and Hexadecimal Numbers. §16.2 thru 16.3 – Addition and Subtraction of Binary Numbers Binary = Base 2 Addition and subtraction are similar.
Binary and Hexadecimal Numbers
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 
Quarter 2 Test 3 Review XXVII.Comparing & Ordering Fractions XXVIII. Decimals and Fractions XXIX. Addition and Subtraction w/Fractions & Mixed Numbers.
Numbering Systems CS208.
Math 409/409G History of Mathematics Babylonian Numbering System.
Number Systems Ron Christensen CIS 121.
Writing a Fraction as a Decimal EXAMPLE 1 Lighthouses At one time, 31 out of the 50 states in the United States had lighthouses. This can be written as.
Chapter 4: Representation of data in computer systems: Number OCR Computing for GCSE © Hodder Education 2011.
Binary Boot Camp = ________ decimal ??? = = 45.
Number systems, Operations, and Codes
CMSC 104, Lecture 051 Binary / Hex Binary and Hex The number systems of Computer Science.
Number Base Conversions
Digital Electronics Octal & Hexadecimal Number Systems.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Chapter 2 Number Systems Consists of a set of symbols called digits and a set of relations such as +, -, x, /.
Dividing Decimals Module 5 Lesson 4 GET READY TO WRITE NOTES.
Octal & Hexadecimal Number Systems
Introduction To Number Systems Binary System M. AL-Towaileb1.
Dividing Review SWBAT use division to find quotients; use divisibility rules to predict remainders; estimate quotients; divide whole numbers in thousand.
DIVISION. Standards G4.1M.C2.PO4A. Use multiple strategies to divide whole numbers using 4-digit dividends and divisors from 1 to 12 with remainders.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
Converting Decimals to Fractions Goal: use place values to make fractions.
SCIENTIFIC NOTATION RULES. Rules for converting to Scientific Notation One non-zero number before the decimal One digit after the decimal If you are making.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Hexadecimal (base 16) BY MAT D. What is hexadecimal  Hexadecimal is a number system like binary or denary that has 16 characters, the numbers 0-9 and.
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.
Number Systems and Binary Arithmetic Quantitative Analysis II Professor Bob Orr.
Conversions 1)Binary to Denary Method 1 Work out the position values of the binary bits and add those values together So above would be
ECE 2110: Introduction to Digital Systems Number Systems: conversions.
3-8 to 3-10 Mixed Numbers and Improper Fractions What You’ll Learn To write a mixed number as an improper fraction To write a mixed number as an improper.
Some basic concepts underlying computer archi­tecture
10.7 Operations with Scientific Notation
Dividing larger Numbers
Digital Design Chapter One Digital Systems and Binary Numbers
Binary Positional Notation
2.0 COMPUTER SYSTEM 2.2 Number System and Representation
Number System conversions
Number Systems and Binary Arithmetic
Unit 2.6 Data Representation Lesson 1 ‒ Numbers
Applying Exponent Rules: Scientific Notation
Divide a Decimal by a Whole Number
Dividing Decimals.
Digital Electronics and Microprocessors
Numeral systems (radix)
Decimal A number that is written in a system based on multiples of 10. Examples: ,
Binary to Decimal Conversion
Dividing a whole number to get decimal
Dividing a decimal by a whole number
Decimal / Binary Conversions
Hexadecimal.
Exercise Use long division to find the quotient. 180 ÷ 15.
Converting to Base-n from Base-10
Quotient: is the answer to dividing
Number systems Converting numbers between binary, octal, decimal, hexadecimal (the easy way)
Introduction To Number Systems
COE 202: Digital Logic Design Number Systems Part 2
Long Division.
Presentation transcript:

Convert Decimal to Binary

How do you convert the following decimal number to binary? 25

Technique 1 Ladder Technique

Step 1: Divide the number by 2. Store the remainder. This remainder is the first digit of your new binary number.

Step 2: Divide the quotient from previous division by 2. Store the remainder. This remainder is the second digit of your new binary number.

Step 3: Repeat this process until quotient equals 0.

Step 3: Repeat this process until quotient equals 0.

Step 3: Repeat this process until quotient equals 0.

Step 4: Answer reads down. Therefore the decimal 25 is equal to 11001 in binary.

This technique works when you want to convert from decimal to any other base. You simply divide by the base you are converting to. Example: convert decimal 25 to hex. 16 1 1 16 25 9 decimal 25 = 19 in hex (can be written as 2510 = 1916 )

Technique 2 Positional Notation

How do you convert the following decimal number to binary using positional notation? 25

Step 1: Create a positional chart for binary. 64 32 16 8 4 2 1 26 25 24 23 22 21 20

16 + 8 + 1 = 25 Step 2: Select place values that when added together equal 25. 64 32 16 8 4 2 1 26 25 24 23 22 21 20 16 + 8 + 1 = 25

Step 3: Write a binary digit 1 for all selected place values. Write a 0 for all place values not selected. 64 32 16 8 4 2 1 26 25 24 23 22 21 20 2510 = 110012

32 + 16 + 4 + 1 = 53 5310 = 1101012 Another Example: 5310 = _______ 2 64 32 16 8 4 2 1 26 25 24 23 22 21 20 32 + 16 + 4 + 1 = 53 5310 = 1101012