2.1 Positional Number Systems ReturnNext Why do we discuss the number systems?  Digital systems only have two states. So digital circuits process binary.

Slides:



Advertisements
Similar presentations
Number Systems and Codes
Advertisements

DATA REPRESENTATION CONVERSION.
EE1A2 Microprocessor Systems & Digital Logic Part I Digital Electronic System Design Dr. T. Collins.
2.2 General Positional-Number-System Conversion
Binary & Decimal numbers = 3* * *10 + 5*1 = 3* * * *10 0 Decimal system: Ten digits: 0,1,2,3,…,9 Example:
2.3 Binary Codes for Decimal Numbers ReturnNext Code: A set of n-bit strings in which different bit strings represent different numbers or other things.
CS 151 Digital Systems Design Lecture 3 More Number Systems.
Lesson 2 – LAYING THE FOUNDATION. Numbering systems (decimal, binary, hexadecimal, octal) Bandwidth terminology Basic Networking terms OVERVIEW.
ENGIN112 L3: More Number Systems September 8, 2003 ENGIN 112 Intro to Electrical and Computer Engineering Lecture 3 More Number Systems.
1 Number Systems. 2 Numbers Each number system is associated with a base or radix – The decimal number system is said to be of base or radix 10 A number.
The Binary Number System
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 and Arithmetic
COE 202: Digital Logic Design Number Systems Part 1
Number Systems and Codes In PLC
Hexadecimal Dk Izzati Pg Haji Ahmad.
NUMBER SYSTEM AND CONVERSION Digital Circuit Choopan Rattanapoka.
Binary and Hexadecimal Numbers
Number Systems.
Numbering systems.
Data Representation in Computer Systems. 2 Objectives Understand the fundamentals of numerical data representation and manipulation in digital computers.
The Wonders of Conversion. A number system is a system in which a number is represented. There are potential infinite number systems that can exist (there.
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
Number Representation. Representing numbers n Numbers are represented as successive powers of a base, or radix.
Digital Logic Lecture 2 Number Systems
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Lecture 2 Binary Values and Number Systems. The number 943 is an example of a number written in positional notation. The relative positions of the digits.
Number System sneha.
Octal to Decimal Hexadecimal DecimalOctal Binary.
Data Representation in Computer Systems. 2 Signed Integer Representation The conversions we have so far presented have involved only positive numbers.
Binary01.ppt Decimal Decimal: Base 10 means 10 Unique numerical digits ,00010,000 Weight Positions 3,
WEEK #2 NUMBER SYSTEMS, OPERATION & CODES (PART 1)
ECE 3110: Introduction to Digital Systems Number Systems.
Chapter 1 Number Systems Digital Electronics. Topics discussed in last lecture Digital systems Advantages of using digital signals over analog. Disadvantages.
1 Digital Logic Design Lecture 2 More Number Systems/Complements.
Cis303a_chapt03_exam1_answer.ppt CIS303A: System Architecture Exam 1: Chapter 3 Answer List the characters (digits) for the following bases. 1) Decimal:
2.4 Gray Code ReturnNext In a Gray code only one bit changes between each pair of successive code words. Gray code is a reflected code. It can be defined.
Chapter 5 NUMBER REPRESENTATION AND ARITHMETIC CIRCUITS.
Significant Figures Box and Dot Method. Step 1  Draw a box around all nonzero digits, beginning with the leftmost nonzero digit and ending with the rightmost.
1 Digital Logic Design (41-135) Chapter 5 Number Representation & Arithmetic Circuits Younglok Kim Dept. of Electrical Engineering Sogang University Spring.
Dr. Clincy Slide 1 CS Chapter 2 (Part 1 of 3) Dr. Clincy Professor of CS Ch 2 Appendix pages will not be on the exam – already covered this.
Chapter 1 Introduction Digital Systems Digital systems: computation, data processing, control, communication, measurement - Reliable, Integration.
Binary & Decimal numbers
Decimal Numbers.
Number Systems and Codes
Significant Figures Box and Dot Method.
Octal to Decimal Decimal Octal Binary Hexadecimal.
Discrete Mathematics Numbering System.
CHAPTER 1 : INTRODUCTION
Number Systems.
Base ‘b’ number for i = 0 to n – 1 for an n digit quantity
Number System conversions
IT 0213: INTRODUCTION TO COMPUTER ARCHITECTURE
Binary Quiz UIN: ____________________
Introduction to IT By: Muhammed s. anwar.
Number Systems and Codes
Dr. Clincy Professor of CS
Numbering System TODAY AND TOMORROW 11th Edition
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Binary Lesson 3 Hexadecimal
Number Systems Rayat Shikshan Sanstha’s
Numeral systems (radix)
Binary Lesson 4 Hexadecimal and Binary Practice
Number Systems Rayat Shikshan Sanstha’s
1. Number Systems Chapt. 2.
Presentation transcript:

2.1 Positional Number Systems ReturnNext Why do we discuss the number systems?  Digital systems only have two states. So digital circuits process binary digits. But very few real-life problems are based on binary numbers.  A digital system designer must know how familiar numeric quantities can be represented and manipulated in a digital system, and how nonnumeric data, events, and conditions are also can be represented.

d -n is the rightmost nonzero digit, called low-order digit or least significant.  Example for a decimal =5 · · · · · · Where there are p digits, to left of the point and n digits to the right of the point. d p-1 is the leftmost nonzero digit, called high-order digit or most significant. NextBackReturn 2.1 Positional Number Systems

 For arbitrary number systems Weighted Sum S Radix r  2 Coefficient of Position i c i Why is it called position number system? Weight r i NextBackReturn 2.1 Positional Number Systems

NextBackReturn  Binary number system General number systems b p-1 is the leftmost nonzero digit, called high-order digit or most significant bit(MSB). b -n is the rightmost nonzero digit, called low-order digit or least significant bit(LSB). b i is the i th digit of a binary number, called bit. Binary number system only has two didits –– 0 and Positional Number Systems

NextBackReturn  Octal number system Octal number system has eight digits –– 0 ~ 7.  Hexadecimal number system Hexadecimal number system has sixteen digits –– decimal digits 0 ~ 9 and letters A~F. 2.1 Positional Number Systems

 Example What are the octal values of the four 8-bit bytes in the 32-bit number ?  bit, byte, word, and nibble bit –– one binary digit is called bit. byte –– 8 binary digits is called byte. word –– n-bit word means one word has n binary digits. nibble –– 4- bit or half - byte is called nibble. BackReturn 2.1 Positional Number Systems Answer