Number Systems Base 2, 10, 16.

Slides:



Advertisements
Similar presentations
NUMBER SYSTEM. How to convert hexadecimal numbers to decimal numbers? 230 Working from right to left, MULTIPLY each position with 8 raised to the power.
Advertisements

James Tam Non decimal math: doing math with non-base 10 number systems Addition, subtraction and multiplication with binary, octal and hexadecimal.
Numbers. Number Conversion Convert – Binary number to decimal numbers – Octal numbers to decimal numbers – Hexadecimal to decimal numbers Convert – Decimal.
Decimal Addition What is going on? (carry) (subtract the base)
Multiplying Decimals. Multiplying Decimals Notes Multiply as usual, ignoring the decimal points. Count how many total digits are to the right of the decimal.
Degrees Minutes & Seconds 360 ° in a circle 1° = 1/360 of a circle 1’ = 1/60 of one degree 1” = 1/60 of one minute 1° = 60 minutes or 3600 seconds.
Number systems Converting numbers between binary, octal, decimal, hexadecimal (the easy way)
Binary and Hexadecimal Numbers
Number Systems.
Supplemental Chapter Number Bases
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
CONVERSION OF NUMBER SYSTEMS FAHEEM ANWAR MANAGER NETWORKS ACADEMY PTCL ACADEMY.
Intro to Chemistry. Scientific Notation Review your handout from before 10 = 1 x = 1 X 10 3 = 10 x 10 x 10.1 = = 1/10.01 = = 1/100.
Positional Number Systems
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Converting From decimal to Binary & Hexadecimal to Binary
Number Systems Binary to Decimal Octal to Decimal Hexadecimal to Decimal Binary to Octal Binary to Hexadecimal Two’s Complement.
Computing with Decimals. Adding and Subtracting Decimals.
Number System sneha.
Hexadecimal. Overview Hexadecimal (hex) ~ base 16 number system Use 0 through 9 and... A = 10 B = 11 C = 12 D = 13 E = 14 F = 15.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Significant Figures Part 2 Problem Solving Applications.
Chapter 7 Section 7.2 Addition & Subtraction in Different Bases.
DECIMALBINARY a) b) c) d) e) f) Revision Exercise DECIMALBINARY a) b) c)
Unit 7 Number Systems and Bases Presentation 1Binary and Base 10 Presentation 2Adding Binary Numbers Presentation 3Subtracting Binary Numbers Presentation.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Decimal Operations Jeopardy
ECE 362 Microprocessor Systems and Interfacing ©5-1 Lecture 1 Hexadecimal Computation Outline n Decimal n Binary n Octal n Hexadecimal.
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
digit x 1 digit 3 DIGIT BY 2 DIGIT Multiplying Decimals 4 digit by 3 digit
DECIMALS Chapter 2. Expressas a decimal. Expressas a decimal.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
Adding & Subtracting Decimals I will add and subtract decimals.
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.
Cis303a_chapt03_exam1_answer.ppt CIS303A: System Architecture Exam 1: Chapter 3 Answer List the characters (digits) for the following bases. 1) Decimal:
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.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Hexadecimal numbers. Announcements Meeting of the Mathematics and Computing Society, Thursday 12:30pm BSC 126 Help available in Math Lab Check homework.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Binary Numbers Practice.
Binary Values. Numbers Natural Numbers Zero and any number obtained by repeatedly adding one to it. Examples: 100, 0, 45645, 32 Negative Numbers.
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.
Decimal Numbers.
Octal to Decimal Decimal Octal Binary Hexadecimal.
Discrete Mathematics Numbering System.
SCIENTIFIC NOTATION.
Binary Positional Notation
Chapter 1 Number Systems & Conversions
Binary Quiz UIN: ____________________
2-Digit Subtraction.
Converting Repeating Decimals to Fractions
Data Hexadecimal.
Digital Logic Design (CSNB163)
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 4 Hexadecimal and Binary Practice
Chapter 2 Number Systems.
Binary Addition (1 of 2) Two 1-bit values A B A + B 1
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Exercise Use long division to find the quotient. 180 ÷ 15.
Converting between Percentages, Decimals and Fractions
Addition & Subtraction Addition & Subtraction
Binary, Hexadecimal, and Base 10.
+/- Numbers Year 2-3 – Addition and subtraction of two-digit numbers
Number systems Converting numbers between binary, octal, decimal, hexadecimal (the easy way)
Dividing whole number by a decimal
Chapter 2 Number Systems.
Presentation transcript:

Number Systems Base 2, 10, 16

Base 10 Decimal System has 10 digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 1,000,000 100,000 10,000 1000 100 10 1 106 105 104 103 102 101

Base 2 The Binary system has only 2 digits: 0 and 1 32 16 8 4 1 26 25 64 32   16  8 4  2  1 26 25 24 23 22 21 20  

Adding in Binary Adding in Binary is just like adding in decimal 1 16 +14 30 1 101 + 1 110

Subtracting in Binary 1 20 - 14 6 01 100 - 1 11 Subtracting in Binary is just like subtracting in decimal 1 20 - 14 6 01 100 - 1 11 1 1 1

Multiplying in Binary 26 x 14 104 260 364 1101 x 11 11010 100111 Multiplying in Binary is just like multiplying in decimal 26 x 14 104 260 364 1101 x 11 11010 100111

Base 16 The Hexadecimal system has 16 digits: 0-9, plus A, B, C, D, E, F 65,536 4096 256 16 1 164 163 162 161 160  

Converting between Base 2 and 16 Each hexadecimal digit converts directly to a four-digit binary number. Base 16 Base 10 Base 2 0000 8 1000 1 0001 9 1001 2 0010 A 10 1010 3 0011 B 11 1011 4 0100 C 12 1100 5 0101 D 13 1101 6 0110 E 14 1110 7 0111 F 15 1111

Converting between Base 2 and 16 Similarly, every four binary digits can be converted to one hexadecimal digit. 10001100 110101001 8 C 1 A 9