Number System.

Slides:



Advertisements
Similar presentations
Number Systems and Codes
Advertisements

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.
DATA REPRESENTATION CONVERSION.
Numbers. Number Conversion Convert – Binary number to decimal numbers – Octal numbers to decimal numbers – Hexadecimal to decimal numbers Convert – Decimal.
Chapter 1 Number Systems and Codes William Kleitz Digital Electronics with VHDL, Quartus® II Version Copyright ©2006 by Pearson Education, Inc. Upper Saddle.
Number Systems & Logic Gates Day 2. Octal Number System Base (Radix)8 Digits0, 1, 2, 3, 4, 5, 6, 7 e.g = =648 1 =88 0 =1 The digit.
Number Systems and Arithmetic
© Copyright 2000 Indiana University Board of Trustees Proficiency Quiz Study Guide Note: The following slides are provided courtesy of Dr. Bob Orr (Computer.
Chapter 1 1 Number Systems. 2 Objectives  Understand why computers use binary (Base-2) numbering.  Understand how to convert Base-2 numbers to Base-
NUMBER SYSTEM AND CONVERSION Digital Circuit Choopan Rattanapoka.
Number Systems.
EKT 121 / 4 ELEKTRONIK DIGIT 1 CHAPTER 1 : INTRODUCTION.
1 Number SystemsLecture 8. 2 BINARY (BASE 2) numbers.
Conversion of Number System Conversion Among Bases The possibilities: Hexadecimal DecimalOctal Binary
NUMBER SYSTEM.
NUMBER SYSTEMS Prepared By K.Anitha Associate Professor Dept of ECE PVPSIT.
ENGINEERS FUTURE To optimize things When we type some letters or words, the computer translates them in numbers as computers can understand only numbers.
CCE-EDUSAT SESSION FOR COMPUTER FUNDAMENTALS Date: Session III Topic: Number Systems Faculty: Anita Kanavalli Department of CSE M S Ramaiah.
Number systems, Operations, and Codes
Number Systems and Codes
The Hexadecimal Number System and Memory Addressing ISAT 121.
Number Systems Prepared by Department of Preparatory year.
AP Computer Science A – Healdsburg High School 1 Unit 1 - Binary Numbers - Hexadecimal Numbers.
Number System sneha.
Octal to Decimal Hexadecimal DecimalOctal Binary.
How Computer Represent Data
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
Data Representation (in computer system). Data Representation How do computers represent data? b The computers are digital Recognize.
Discrete Mathematics Numbering System.
NUMBER SYSTEM. Number System Number Base B => B symbols – Base 16(Hexa):0, 1,……9, A,…, E, F – Base 10 (Decimal): 0, 1, 2,……, 7, 8, 9 – Base 8(Octal):
Computer Number System
© 2010 Pearson Prentice Hall. All rights reserved. CHAPTER 4 Number Representation and Calculation.
Arithmetic Chapter 4 Subject: Digital System Year: 2009.
1. Number Systems. Common Number Systems SystemBaseSymbols Used by humans? Used in computers? Decimal100, 1, … 9YesNo Binary20, 1NoYes Octal80, 1, … 7No.
Number Systems. Topics  The Decimal Number System  The Binary Number System  Converting from Binary to Decimal  Converting from Decimal to Binary.
Computer Studies Today Chapter 19 1 Chapter 19. Computer Studies Today Chapter 19 2 »Information stored in a computer is in two states: –ON –OFF.
CMSC 1041 Binary / Hex Binary and Hex The number systems of Computer Science.
Number Systems and Binary Arithmetic Quantitative Analysis II Professor Bob Orr.
Number Systems. ASCII – American Standard Code for Information Interchange – Standard encoding scheme used to represent characters in binary format on.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Coding Part 2. Weight of the Digit 3672 Thousands (10 3 )Hundreds (10 2 )Tens (10 1 )Units (1) = Weights Decimal Example (3672) 10 Binary.
Digital Design Chapter One Digital Systems and Binary Numbers
Numbering Systems.
Number Systems and Codes
Different Numeral Systems
Octal to Decimal Decimal Octal Binary Hexadecimal.
Discrete Mathematics Numbering System.
NUMBER SYSTEM Prepared by: Engr Zakria.
Number Systems and Binary Arithmetic
By: Jonathan O. Cabriana
What is a byte? What is it? How would you use it?
Digital Electronics INTRODUCTION ANALOG VS DIGITAL NUMBER SYSTEMS.
CHAPTER 1 : INTRODUCTION
Tools of Web Development 1: Module A: Numbering Systems
Number System conversions
Chapter 1 Number Systems & Conversions
Binary Quiz UIN: ____________________
Number Systems and Binary Arithmetic
Binary Numbers? Foley SED 514 Section /2/2019.
There are 10 types of people of people in this world…
Data Representation and Organization
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Chapter 2 Number Systems.
Remember the 10 types of people of people in this world…
Chapter 2 Number System.
Chapter 2 Number Systems.
1. Number Systems Chapt. 2.
Presentation transcript:

Number System

Number System The technique to represent and work with numbers is called number system. Decimal number system is the most common number system. Other popular number systems include binary number system, octal number system, hexadecimal number system, etc. The technique to represent and work with numbers is called number system. Decimal number system is the most common number system. Other popular number systems include binary number system, octal number system, hexadecimal number system, etc.

Types Of Number System Binary Number System : The easiest way to vary instructions through electric signals is two-state system – on and off. On is represented as 1 and off as 0, though 0 is not actually no signal but signal at a lower voltage. The number system having just these two digits – 0 and 1 – is called binary number system. Octal Number System : Octal number system has eight digits – 0, 1, 2, 3, 4, 5, 6 and 7. Octal number system is also a positional value system with where each digit has its value expressed in powers of 8. Decimal Number System : Decimal number system is a base 10 number system having 10 digits from 0 to 9. This means that any numerical quantity can be represented using these 10 digits. Decimal number system is also a positional value system.  Hexadecimal Number System : Octal number system has 16 symbols – 0 to 9 and A to F where A is equal to 10, B is equal to 11 and so on till F. Hexadecimal number system is also a positional value system with where each digit has its value expressed in powers of 16.

Binary Number System Characteristics of the binary number system are as follows − Uses two digits, 0 and 1. Also called as base 2 number system. Each position in a binary number represents a 0 power of the base (2). Example 20 Last position in a binary number represents a x power of the base (2). Example 2x where x represents the last position - 1.

Octal number system Characteristics of the octal number system are as follows − Uses eight digits, 0,1,2,3,4,5,6,7. Also called as base 8 number system. Each position in an octal number represents a 0 power of the base (8). Example 80 Last position in an octal number represents a x power of the base (8). Example 8x where x represents the last position – 1.

Decimal Number system Characteristics of the decimal number system are as follows − Uses ten digits, 0,1,2,3,4,5,6,7,8,9. Also called as base 10 number system. Each position in a decimal number represents a 0 power of the base (10). Example 100 Last position in a decimal number represents a x power of the base (10). Example 8x where x represents the last position - 1.

Hexa-Decimal Number System Characteristics of hexadecimal number system are as follows − Uses 10 digits and 6 letters, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. Letters represent the numbers starting from 10. A = 10. B = 11, C = 12, D = 13, E = 14, F = 15. Also called as base 16 number system. Each position in a hexadecimal number represents a 0 power of the base (16). Example, 160 Last position in a hexadecimal number represents a x power of the base (16). Example 16x where x represents the last position - 1

Conversion : Binary → decimal Binary Number: 101012 Calculating Decimal Equivalent − Step Binary Number Decimal Number Step 1 101012 ((1 x 24) + (0 x 23) + (1 x 22) + (0 x 21) + (1 x 20))10 Step 2 (16 + 0 + 4 + 0 + 1)10 Step 3 2110

Conversion : Octal→ decimal Octal Number: 125708 Calculating Decimal Equivalent − Step Octal Number Decimal Number Step 1 125708 ((1 x 84) + (2 x 83) + (5 x 82) + (7 x 81) + (0 x 80))10 Step 2 (4096 + 1024 + 320 + 56 + 0)10 Step 3 549610

Conversion : Hexa-decimal→Decimal Hexadecimal Number: 19FDE16 Calculating Decimal Equivalent − Step Binary Number Decimal Number Step 1 19FDE16 ((1 x 164) + (9 x 163) + (F x 162) + (D x 161) + (E x 160))10 Step 2 ((1 x 164) + (9 x 163) + (15 x 162) + (13 x 161) + (14 x 160))10 Step 3 (65536+ 36864 + 3840 + 208 + 14)10 Step 4 10646210

Thank You! Tanmay Mudgal