Number System Presentation

logo

number system and conversion

Number System and Conversion

Oct 30, 2014

8.5k likes | 17.85k Views

Number System and Conversion. 350151- Digital Circuit Choopan Rattanapoka. Introduction. Many number systems are in use in digital technology. The most common are : Decimal (Base 10) Binary (Base 2) Octal (Base 8) Hexadecimal (Base 16)

Share Presentation

  • decimal system

aiko-perez

Presentation Transcript

Number System and Conversion 350151- Digital Circuit ChoopanRattanapoka

Introduction • Many number systems are in use in digital technology. The most common are : • Decimal (Base 10) • Binary (Base 2) • Octal (Base 8) • Hexadecimal (Base 16) • The decimal system is the number system that we use everyday

Number System • Decimal system uses symbols (digits) for the ten values 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 • Binary System uses digits for the two values 0,and 1 • Octal System uses digits for the eight values 0, 1, 2, 3, 4, 5, 6, 7 • Hexadecimal System uses digits for the sixteen values 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F to represent any number, no matter how large or how small.

Decimal System • The decimal system is composed of 10 numerals or symbols. These 10 symbols are 0,1,2,3,4,5,6,7,8,9; using these symbols as digits of a number, we can express any quantity. • Example : 3501.51 digit Most Significant Digit Least Significant Digit decimal point

Binary System • The binary system is composed of 2 numerals or symbols 0 and 1; using these symbols as digits of a number, we can express any quantity. • Example : 1101.01 bit Most Significant Bit Least Significant Bit binary point

Decimal Number Quantity (positional number) • 3 5 0 1 (base-10) 1 X 100 = 1 0 X 101 = 0 5 X 102 = 500 3 X 103 = 3000 3000 + 500 + 0 + 1 = 3501

Binary-to-Decimal Conversion • 1 1 0 1 (base-2) 1 X 20 = 1 0 X 21 = 0 1 X 22 = 4 1 X 23 = 8 8 + 4 + 0 + 1 = 13 11012= 1310

Octal-to-Decimal Conversion • 5 2 1 7 (base-8) 7 X 80= 7x1 = 7 1 X 81= 1x8 = 8 2 X 82= 2x64 = 128 5 X 83= 5x512 = 2560 2560 + 128 + 8 + 7 = 2703 52178 = 270310

Hexadecimal-to-Decimal Conversion • 1 A C F (base-16) [ A = 10, B = 11, C = 12, D = 13, E = 14, F = 15 ] 15 X 160=15x1 = 15 12 X 161=12x16 = 192 10 X 162=10x256 = 2560 1 X 163= 5x4096 = 20480 20480 + 2560 +192 + 15 = 23247 1ACF16 = 2324710

Decimal Number Quantity (fractional number) • . 5 8 1 (base-10) 5 X 10-1 = 5x0.1 = 0.5 8 X 10-2 = 8x0.01 = 0.08 1 X 10-3= 1x0.001 = 0.001 0.5 + 0.08 + 0.001 = 0.581

Binary-to-Decimal Conversion • . 1 0 1 (base-2) 1 X 2-1 = 1x0.5 = 0.5 0 X 2-2 = 0x0.25 = 0 1 X 2-3= 1x0.125 = 0.125 0.5 + 0 + 0.125 = 0.625 0.1012 = 0.62510

Octal-to-Decimal Conversion • . 2 5 (base-8) 2 X 8-1 = 2x0.125 = 0.25 5 X 8-2 = 5x0.015625 = 0.017825 0.25 + 0.017825 = 0.267825 0.258 = 0.26782510

Hexadecimal-to-Decimal Conversion • . F 5 (base-16) 15 X16-1 = 15x0.0625 = 0.9375 5 X16-2 = 5x0.00390625 = 0.01953125 0.9375 + 0.01953125 = 0.95703125 0.F516 = 0.9570312510

Exercise 1 • Convert these binary system numbers to decimal system numbers • 100101101 • 11100.1001 • 111111 • 100000.0111

Decimal-to-Binary Conversion (positional number) • 2 5 0 25010 = 1 1 1 1 1 0 1 02 2 250 2 125 Remainder 0 2 62 Remainder 1 2 31 Remainder 0 2 15 Remainder 1 2 7 Remainder 1 2 3 Remainder 1 1 Remainder 1

Decimal-to-Octal Conversion • 2 5 0 8 250 8 31 Remainder 2 3 Remainder 7 25010 = 3728

Decimal-to-Hexadecimal Conversion • 2 5 0 16 250 15 Remainder 10 25010 = 15 1016 ? = FA16

Decimal-to-Binary Conversion (fractional number) • 0 . 4375 0.4375 x 2 = 0.8750 0.8750 x 2 = 1.75 0.75 x 2 = 1.5 0.5 x 2 = 1.0 0.437510 = 0.01112

Decimal-to-Octal Conversion • 0 . 4375 0.4375 x 8 = 3.5 0.5 x 8 = 4.0 0.437510 = 0.348

Decimal-to-Hexadecimal Conversion • 0 . 4375 0.4375 x 16 = 7.0 0.437510 = 0.716

Example :Decimal-to-Binary Conversion (Estimation) 110012  2-1 + 2-2+ 2-5  0.5 + 0.25 +0.03125  0.78125 • 0 . 7 8 2 0.782 x 2 = 1.564 0.564 x 2 = 1.128 0.128 x 2 = 0.256 0.256 x 2 = 0.512 0.512 x 2 = 1.024 0.024 x 2 = 0.048 0.048 x 2 = 0.096 0.192 x 2 = 0.384 0.384 x 2 = 0.768 0.768 x 2 = 1.536 11001000012  2-1 + 2-2+ 2-5 + 2-10  0.5 + 0.25 +0.03125 + 0.0009765625  0.7822265625

Exercise 2 • Convert these decimal system numbers to binary system numbers • 127 • 38 • 22.5 • 764.375

Base X – to – Base Y Conversion • We can convert base x number to base y number by following these steps : • Convert base x to base 10 (decimal system number) • Then, convert decimal number to base y

Example • Convert 372.348 to hexadecimal system number • Convert 372.348 to decimal system number • 372.348 = (3x82)+(7x81)+(2x80) . (3x8-1) + (4x8-2) = 192 + 56 + 2 . 0.375 + 0.0625 = 250 . 4375 • Convert 250.437510 to hexadecimal system number • 250.437510 Positional number Fractional number 250 / 16 = 15 remainder 10 250  FA16 0.4375 * 16 = 7.0 0.4375  0.716 372.348 = FA.716

Exercise 3 (TODO) • Convert these numbers to octal system number • 11100.10012 • 1111112 • 5A.B16 • Convert these numbers to binary system number • 5A.B16 • 75.28

  • More by User

Number System

Number System

Number System. Prepared By Dr. Anu Gokhale. Decimal, Binary, Octal, and Hex. Decimal is the number system that we use Binary is a number system that computers use

516 views • 17 slides

Number system

Number system

Number system. Rashedul Hasan. Commonly used Number System . Decimal Number System. The decimal numeral system has ten as its base. It is the most widely used numeral system, perhaps because humans have ten digits over both hands.

1.18k views • 56 slides

Number System

Number System. Number Systems. Important Number systems Decimal Binary Hexadecimal. Decimal system. Decimal Digits Units. Binary Number System. Binary Digits Units Bits Nibble Byte Word KB,MB,GB,TB Conversion Decimal to Binary Binary to Decimal . Hexadecimal.

811 views • 8 slides

Number System

Number System. Number Systems. Important Number systems Decimal Binary Hexadecimal. Decimal system. Decimal Digits Units. Binary Number System. Binary Digits Units Bits Nibble Byte Word KB,MB,GB,TB Conversion Decimal to Binary Binary to Decimal. Hexadecimal. Hexadecimal Digits

378 views • 7 slides

METRIC SYSTEM AND CONVERSION

METRIC SYSTEM AND CONVERSION

METRIC SYSTEM AND CONVERSION. Count Up to Six and Know Your Left From Your Right. The Metric System. What are Metric Conversions?. Sometimes we need to change from one measurement to another because: The unit that is used is either too big or too small for the type of measurement being done…

409 views • 12 slides

Number System

Number System. ITE102 – Computer Programming (C++). Topics. 1-1 Introduction to Binary 1-2 Understanding Number System 1-3 Conversion of Number System. Learning Objects. After completing this module that student will be able to : Distinguish the different number systems

2.64k views • 118 slides

NUMBER SYSTEM

NUMBER SYSTEM

NUMBER SYSTEM. How many zeros are there at the end of the product? 10*20*30*40*50*60*70*80*90*100 (a) 10 (b) 11 (c) 14 (d) None of these. (d)12. How many numbers of zeroes are there in 1076! (a) 265 (b) 266 (c) 267

1.4k views • 77 slides

Binary Number System And Conversion

Binary Number System And Conversion

Binary Number System And Conversion. Bridging the Digital Divide. Decimal-to-Binary Conversion. 010. 00100. 10101. 1101. 10010. 16. 16. 63. 00101101. 0101011. 010. 63. 23. 1101. 23. 1101. 010. 1101. 10010. 935. 935. 00100. 721. 721. 010. 00101. 534. 534. 00101101.

1.51k views • 26 slides

NUMBER SYSTEM AND CODES

NUMBER SYSTEM AND CODES

5. NUMBER SYSTEM AND CODES. LEACH, MALVINO & SAHA. Why binary numbers are used. Almost all digital computers and systems are based on binary (two-state) operation. For instance, the switch shown in figure can be open or closed; therefore, a switch is one example of a natural binary device.

388 views • 8 slides

Binary Number System And Conversion

Binary Number System And Conversion. Digital Electronics. Bridging the Digital Divide. Decimal-to-Binary Conversion. 010. 00100. 10101. 1101. 10010. 16. 16. 63. 00101101. 0101011. 010. 63. 23. 1101. 23. 1101. 010. 1101. 10010. 935. 935. 00100. 721. 721. 010. 00101.

608 views • 18 slides

Conversion of Number System

Conversion of Number System

Conversion of Number System. Conversion Among Bases. The possibilities:. Decimal. Octal. Binary. Hexadecimal. Binary to Decimal. Decimal. Octal. Binary. Hexadecimal. Binary to Decimal. Technique Multiply each bit by 2 n , where n is the “weight” of the bit

1.44k views • 54 slides

NUMBER SYSTEM

NUMBER SYSTEM. Compiled by : S. Agarwal, Lecturer & Systems Incharge St. Xavier’s Computer Centre, St. Xavier’s College Kolkata. March-2003. Introduction

1.15k views • 67 slides

Number System

A numeral system (or system of numeration) is a writing system for expressing numbers; that is, a mathematical notation for representing numbers of a given set, using digits or other symbols in a consistent manner.

240 views • 13 slides

Number System

Number System. Non-positional Number Systems. Positional Number Systems. Number System. Non-positional Number Systems.

4.85k views • 21 slides

Number System

Number System. What’s the most natural way to count?. Number System. What’s the most natural way to count? Use your hands. ( or maybe feet too! ). Number System. In ancient times, people use notches What’s the problem?. Number System.

319 views • 20 slides

NUMBER SYSTEM

NUMBER SYSTEM. By, T.Kalaiselvi, AP(SLG-I) / CSE. Chapter 2 : Number System. 2.1 Decimal, Binary, Octal and Hexadecimal Numbers 2.2 Relation between binary number system with other number system 2.3 Representation of integer, character and floating point numbers in binary

738 views • 61 slides

NUMBER SYSTEM

886 views • 67 slides

Number system

Number system. Writer:- Rashedul Hasan . Editor:- Jasim Uddin. Commonly used Number System. Decimal Number System. The decimal numeral system has ten as its base. It is the most widely used numeral system, perhaps because humans have ten digits over both hands.

729 views • 56 slides

Number system conversion

Number system conversion

Converting a binary number into decimal of both integral and fractional part, converting a decimal number into binary of both integral and fractional part

704 views • 24 slides

SlidePlayer

  • My presentations

Auth with social network:

Download presentation

We think you have liked this presentation. If you wish to download it, please recommend it to your friends in any social system. Share buttons are a little bit lower. Thank you!

Presentation is loading. Please wait.

Introduction To Number Systems

Published by 靠 贺 Modified over 5 years ago

Similar presentations

Presentation on theme: "Introduction To Number Systems"— Presentation transcript:

Introduction To Number Systems

Presented by: Tutorial Services The Math Center

presentation on number system

CMP 101 Fundamentals of Computer and programming in C Rohit Khokher.

presentation on number system

Chapter Chapter Goals Know the different types of numbers Describe positional notation.

presentation on number system

Fractions, Decimals, & Percent Conversions

presentation on number system

1 CSE-221 Digital Logic Design (DLD) Lecture-1: Digital Systems & Number Systems.

presentation on number system

DIGITAL SYSTEMS TCE1111 Representation and Arithmetic Operations with Signed Numbers Week 6 and 7 (Lecture 1 of 2)

presentation on number system

Fractions Chapter Two McGraw-Hill/Irwin

presentation on number system

Number Systems and Arithmetic

presentation on number system

© Copyright 2000 Indiana University Board of Trustees Proficiency Quiz Study Guide Note: The following slides are provided courtesy of Dr. Bob Orr (Computer.

presentation on number system

Binary Numbers.

presentation on number system

FIGURES FOR CHAPTER 1 INTRODUCTION NUMBER SYSTEMS AND CONVERSION

presentation on number system

division algorithm Before we study divisibility, we must remember the division algorithm. r dividend = (divisor ⋅ quotient) + remainder.

presentation on number system

© GCSE Computing Candidates should be able to:  convert positive denary whole numbers (0-255) into 8-bit binary numbers and vice versa  add two 8-bit.

presentation on number system

Solving Equations Medina1 With Decimal & Fractions.

presentation on number system

Lecture for Week Spring.  Numbers can be represented in many ways. We are familiar with the decimal system since it is most widely used in everyday.

presentation on number system

Data Representation – Binary Numbers

presentation on number system

#1 Lec # 2 Winter EECC341 - Shaaban Positional Number Systems A number system consists of an order set of symbols (digits) with relations.

presentation on number system

Aug. 12, 2013 Sixth Grade Math. The sum of two addends multiplied by a number equals the sum of the product of each addend and that number 4(3 + 7) =

presentation on number system

Integer Conversion Between Decimal and Binary Bases Conversion of decimal to binary more complicated Task accomplished by –Repeated division of decimal.

presentation on number system

Lecture 4 Last Lecture –Positional Numbering Systems –Converting Between Bases Today’s Topics –Signed Integer Representation Signed magnitude One’s complement.

About project

© 2024 SlidePlayer.com Inc. All rights reserved.

IMAGES

  1. PPT ON NUMBER SYSTEM

    presentation on number system

  2. Number System Presentation

    presentation on number system

  3. PPT

    presentation on number system

  4. PPT

    presentation on number system

  5. Number System

    presentation on number system

  6. PPT

    presentation on number system

VIDEO

  1. Lesson

  2. Numeration: Different Numeral Systems

  3. 6. Introduction to Number System

  4. number system class 9th objective questions

  5. lifewave presentation number 1

  6. Number system #ssc #ntpc #rrbntpc #gaganpratapmaths #shorts