Number Systems and Binary Arithmetic. Quantitative Analysis II Professor Bob Orr

Similar documents
Introduction to Numbering Systems

LECTURE 1-2. Introduction and Number Systems

CHAPTER 2 (b) : AND CODES

Positional notation Ch Conversions between Decimal and Binary. /continued. Binary to Decimal

Chapter 03: Computer Arithmetic. Lesson 09: Arithmetic using floating point numbers

Number Systems. Both numbers are positive

CHW 261: Logic Design

IT 1204 Section 2.0. Data Representation and Arithmetic. 2009, University of Colombo School of Computing 1

Level ISA3: Information Representation

CHAPTER V NUMBER SYSTEMS AND ARITHMETIC

COMP Overview of Tutorial #2

MACHINE LEVEL REPRESENTATION OF DATA

Rui Wang, Assistant professor Dept. of Information and Communication Tongji University.

DLD VIDYA SAGAR P. potharajuvidyasagar.wordpress.com. Vignana Bharathi Institute of Technology UNIT 1 DLD P VIDYA SAGAR

Floating-point Arithmetic. where you sum up the integer to the left of the decimal point and the fraction to the right.

Digital Fundamentals

Lecture (01) Digital Systems and Binary Numbers By: Dr. Ahmed ElShafee

Chapter 2 Binary Values and Number Systems

Number Systems CHAPTER Positional Number Systems

CS & IT Conversions. Magnitude 10,000 1,

Digital Fundamentals. CHAPTER 2 Number Systems, Operations, and Codes

TOPICS. Other Number Systems. Other Number Systems 9/9/2017. Octal Hexadecimal Number conversion

Floating Point. The World is Not Just Integers. Programming languages support numbers with fraction

Divide: Paper & Pencil

CHAPTER 2 Number Systems

CS 265. Computer Architecture. Wei Lu, Ph.D., P.Eng.

Module 2: Computer Arithmetic

CMPE223/CMSE222 Digital Logic Design. Positional representation

Computer (Literacy) Skills. Number representations and memory. Lubomír Bulej KDSS MFF UK

2 Number Systems 2.1. Foundations of Computer Science Cengage Learning

COE 202- Digital Logic. Number Systems II. Dr. Abdulaziz Y. Barnawi COE Department KFUPM. January 23, Abdulaziz Barnawi. COE 202 Logic Design

1. NUMBER SYSTEMS USED IN COMPUTING: THE BINARY NUMBER SYSTEM

Chapter 3: Arithmetic for Computers

Number Systems. Binary Numbers. Appendix. Decimal notation represents numbers as powers of 10, for example

COMP2611: Computer Organization. Data Representation

Number System. Introduction. Decimal Numbers

Lecture (01) Introduction Number Systems and Conversion (1)

Chapter 2. Positional number systems. 2.1 Signed number representations Signed magnitude

BINARY SYSTEM. Binary system is used in digital systems because it is:

Floating Point Arithmetic

Objectives. Connecting with Computer Science 2

Octal & Hexadecimal Number Systems. Digital Electronics

in this web service Cambridge University Press

Number Systems. Decimal numbers. Binary numbers. Chapter 1 <1> 8's column. 1000's column. 2's column. 4's column

Introduction to Computers and Programming. Numeric Values

Number representations

CS 101: Computer Programming and Utilization

CMPSCI 145 MIDTERM #1 Solution Key. SPRING 2017 March 3, 2017 Professor William T. Verts

CS321. Introduction to Numerical Methods

Computer Sc. & IT. Digital Logic. Computer Sciencee & Information Technology. 20 Rank under AIR 100. Postal Correspondence

Number Systems Standard positional representation of numbers: An unsigned number with whole and fraction portions is represented as:

Data Representation 1

Number Systems & Encoding

unused unused unused unused unused unused

ECE232: Hardware Organization and Design

Octal and Hexadecimal Integers

Chapter 2. Data Representation in Computer Systems

D I G I T A L C I R C U I T S E E

UNIT 7A Data Representation: Numbers and Text. Digital Data

CO212 Lecture 10: Arithmetic & Logical Unit

CS 261 Fall Floating-Point Numbers. Mike Lam, Professor.

Signed Multiplication Multiply the positives Negate result if signs of operand are different

MC1601 Computer Organization

Floating-Point Data Representation and Manipulation 198:231 Introduction to Computer Organization Lecture 3

Digital Systems and Binary Numbers

Fundamentals of Programming (C)

1010 2?= ?= CS 64 Lecture 2 Data Representation. Decimal Numbers: Base 10. Reading: FLD Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

Computer Organisation CS303

CS 261 Fall Floating-Point Numbers. Mike Lam, Professor.

Final Labs and Tutors

COMP2121: Microprocessors and Interfacing. Number Systems

Chapter 4 Section 2 Operations on Decimals

Homework 1 graded and returned in class today. Solutions posted online. Request regrades by next class period. Question 10 treated as extra credit

Internal Data Representation

Numeral Systems. -Numeral System -Positional systems -Decimal -Binary -Octal. Subjects:

Electronic Data and Instructions

Decimal/Binary Conversion on the Soroban

Inf2C - Computer Systems Lecture 2 Data Representation

Organisasi Sistem Komputer

Exponential Numbers ID1050 Quantitative & Qualitative Reasoning

CS 31: Intro to Systems Binary Representation. Kevin Webb Swarthmore College January 27, 2015

Chapter 2 Bits, Data Types, and Operations

10.1. Unit 10. Signed Representation Systems Binary Arithmetic

15213 Recitation 2: Floating Point

Digital Computers and Machine Representation of Data

Numbers and Computers. Debdeep Mukhopadhyay Assistant Professor Dept of Computer Sc and Engg IIT Madras

CS321 Introduction To Numerical Methods

Chapter 2 Data Representations

Floating Point Numbers

Chapter 1 Emad Felemban

Digital Logic. The Binary System is a way of writing numbers using only the digits 0 and 1. This is the method used by the (digital) computer.

Chapter 1 Review of Number Systems

EEM 232 Digital System I

Data Representations & Arithmetic Operations

Data Representation COE 301. Computer Organization Prof. Muhamed Mudawar

Chapter 2 Bits, Data Types, and Operations

IEEE Standard for Floating-Point Arithmetic: 754

FLOATING POINT NUMBERS

Chapter 5: Computer Arithmetic. In this chapter you will learn about:

Question 4: a. We want to store a binary encoding of the 150 original Pokemon. How many bits do we need to use?

Transcription:

Number Systems and Binary Arithmetic Quantitative Analysis II Professor Bob Orr

Introduction to Numbering Systems We are all familiar with the decimal number system (Base 10). Some other number systems that we will work with are: Binary Base 2 Octal Base 8 Hexadecimal Base 16

Characteristics of Numbering Systems 1) The digits are consecutive. 2) The number of digits is equal to the size of the base. 3) Zero is always the first digit. 4) The base number is never a digit. 5) When 1 is added to the largest digit, a sum of zero and a carry of one results. 6) Numeric values determined by the have implicit positional values of the digits.

Significant Digits Binary: 11101101 Most significant digit Least significant digit Hexadecimal: 1D63A7A Most significant digit Least significant digit

Binary Number System Also called the Base 2 system The binary number system is used to model the series of electrical signals computers use to represent information 0 represents the no voltage or an off state 1 represents the presence of voltage or an on state

Binary Numbering Scale Base 2 Number Base 10 Equivalent Power Positional Value 000 0 2 0 1 001 1 2 1 2 010 2 2 2 4 011 3 2 3 8 100 4 2 4 16 101 5 2 5 32 110 6 2 6 64 111 7 2 7 128

Binary Addition Carry 4 Possible Binary Addition Combinations: (1) 0 (2) 0 +0 +1 00 Sum 01 (3) 1 (4) 1 +0 +1 01 10 Note that leading zeroes are frequently dropped.

Decimal to Binary Conversion The easiest way to convert a decimal number to its binary equivalent is to use the Division Algorithm This method repeatedly divides a decimal number by 2 and records the quotient and remainder The remainder digits (a sequence of zeros and ones) form the binary equivalent in least significant to most significant digit sequence

Division Algorithm Convert 67 to its binary equivalent: 67 10 = x 2 Step 1: 67 / 2 = 33 R 1 Step 2: 33 / 2 = 16 R 1 Step 3: 16 / 2 = 8 R 0 Step 4: 8 / 2 = 4 R 0 Step 5: 4 / 2 = 2 R 0 Step 6: 2 / 2 = 1 R 0 Divide 67 by 2. Record quotient in next row Again divide by 2; record quotient in next row Repeat again Repeat again Repeat again Repeat again Step 7: 1 / 2 = 0 R 1 STOP when quotient equals 0 1 0 0 0 0 1 1 2

Binary to Decimal Conversion The easiest method for converting a binary number to its decimal equivalent is to use the Multiplication Algorithm Multiply the binary digits by increasing powers of two, starting from the right Then, to find the decimal number equivalent, sum those products

Multiplication Algorithm Convert (10101101) 2 to its decimal equivalent: Binary 1 0 1 0 1 1 0 1 Positional Values x 2 7 x x x x x x x 2 6 2 5 2 4 2 3 2 2 2 1 2 0 Products 128 + 32 + 8 + 4 + 1 173 10

Octal Number System Also known as the Base 8 System Uses digits 0-7 Readily converts to binary Groups of three (binary) digits can be used to represent each octal digit Also uses multiplication and division algorithms for conversion to and from base 10

Decimal to Octal Conversion Convert 427 10 to its octal equivalent: 427 / 8 = 53 R3 Divide by 8; R is LSD 53 / 8 = 6 R5 Divide Q by 8; R is next digit 6 / 8 = 0 R6 Repeat until Q = 0 653 8

Octal to Decimal Conversion Convert 653 8 to its decimal equivalent: Octal Digits Positional Values Products 6 5 3 x x 8 2 8 1 8 0 384 + 40 + 3 x 427 10

Octal to Binary Conversion Each octal number converts to 3 binary digits To convert 653 8 to binary, just substitute code: 6 5 3 110 101 011

Hexadecimal Number System Base 16 system Uses digits 0-9 & letters A,B,C,D,E,F Groups of four bits represent each base 16 digit

Decimal to Hexadecimal Conversion Convert 830 10 to its hexadecimal equivalent: 830 / 16 = 51 R14 51 / 16 = 3 R3 3 / 16 = 0 R3 = E in Hex 33E 16

Hexadecimal to Decimal Conversion Convert 3B4F16 to its decimal equivalent: Hex Digits 3 B 4 F Positional Values Products x x x x 16 3 16 2 16 1 16 0 12288 +2816 + 64 +15 15,183 10

Binary to Hexadecimal Conversion The easiest method for converting binary to hexadecimal is to use a substitution code Each hex number converts to 4 binary digits

Substitution Code Convert 010101101010111001101010 2 to hex using the 4-bit substitution code : 5 6 A E 6 A 0101 0110 1010 1110 0110 1010 56AE6A 16

Substitution Code Substitution code can also be used to convert binary to octal by using 3-bit groupings: 2 5 5 2 7 1 5 2 010 101 101 010 111 001 101 010 25527152 8

Complementary Arithmetic 1 s complement Switch all 0 s to 1 s and 1 s to 0 s Binary # 10110011 1 s complement 01001100

Complementary Arithmetic 2 s complement Step 1: Find 1 s complement of the number Binary # 11000110 1 s complement 00111001 Step 2: Add 1 to the 1 s complement 00111001 + 00000001 00111010

Signed Magnitude Numbers 110010.. 00101110010101 Sign bit 31 bits for magnitude 0 = positive 1 = negative This is your basic Integer format

Floating Point Numbers Real numbers must be normalized using scientific notation: 0.1 2 n where n is an integer Note that the whole number part is always 0 and the most significant digit of the fraction is a 1 ALWAYS!

Floating Point Operations Before two floating point numbers can be added, the exponents for both numbers must be made equal hence the term floating point NIST Standard Format (32-bit word) ± 8-bit exponent 23-bit fraction field

Bias Notation The exponent field (8 bits) can be used to represent integers from 0-255 Because of the need for negative exponents to be represented as well, the range is offset or biased from 128 to + 127 In this way, both very large and very small numbers can be represented

Double Precision Double word format that increases both the length of the fraction (precision) but also the size of the bias (magnitude) NIST Standard format (64 bits) ± 10-bit exponent 53-bit fraction field

Error Considerations The Hole at Zero Problem Regardless of how large an exponent field is, there are still smaller positive and negative numbers about zero that cannot be represented In bias notation, +2-129 and - 2-129 are beyond the acceptable range The Hole at Zero defines the range of values near zero that cannot be stored

Computational Errors When converting base 10 fractions to binary, only those fractions whose values can be expressed as a sum of base 2 fractions will convert evenly All other base 10 fractions feature a least significant bit that is either rounded or truncated an approximation When two such numbers are multiplied, the rounding error is compounded