Signed Binary Arithmetic
|
|
- Beverly Wiggins
- 1 years ago
- Views:
Transcription
1 Signed Binary Arithmetic In the real world of mathematics, computers must represent both positive and negative binary numbers. For example, even when dealing with positive arguments, mathematical operations may produce a negative result: Example: = 113. Thus needs to be a consistent method of representing negative numbers in binary computer arithmetic operations. There are various approaches, but they all involve using one of the digits of the binary number to represent the sign of the number. Two methods are the sign/magnitude representation and the one s complement method of representation. 1
2 2 The University of Texas at Dallas Binary Sign Representations Sign-magnitude: The left bit is the sign (0 for + numbers and 1 for numbers). All bits to right are the number magnitude Left bit is the sign bit Advantages to sign-magnitude: Simple to implement. Useful for floating point representation. (Big) Disadvantage of sign-magnitude: Sign bit independent of magnitude; can be both + 0 and 0! (Makes math hard to do). One s complement: The negative number of the same magnitude as any given positive number is its one s complement. If m = , then m complement (or m) = The most significant bit is the sign, and is 0 for + binary numbers and for negative numbers. Note the problem: If m = , then m = ; there are two zeros in this method as well.
3 Two s Complement Negative Binary Numbers Due to the problems with sign/magnitude and 1 s complement, another approach has become the standard for representing the sign of a fixed-point binary number in computer circuits. Consider the following definition: The two s complement of a binary integer is the 1 s complement of the number plus 1. Thus if m is the 2 s complement of n, then: m = n + 1 Examples: n = , then m = = n = , then m = = n = , then m = = n = , then m = = Note that to properly represent 2 s complement binary numbers, the full group of numbers showing the range of representation must be retained, because the left-most bit is the sign (0 = +, 1 = ). 3
4 Two s Complement Negative Binary Numbers (2) For integer 2 s complement representation addition and subtraction of both + and numbers always work out correctly (within the range of representation), and there is only one 0. As noted on the previous slide, the left-most bit is always 1 for a negative number, always 0 for a positive number. This means that an n-bit binary number in two s complement can represent a magnitude range of ± 2 n 1 1. In an n-bit representation, there are no extra bits! If adding 2 n-bit numbers results in n+1 bits, the left most bit is discarded! Thus: Let n = Then m = n + 1, or m = = (1) = The 1 is discarded, since in a computer, there are no extra columns. There are only 8-bits, so the (9th-column) 1 is thrown away. Therefore, the 2 s complement of 0 is 0. 4
5 Finding Two s Complements: Examples 5 In the following, remember that for any n-bit computing system, there are no extra bit positions. To convert a negative decimal number to 2 s complement binary: Convert the decimal number to a positive binary number. Take the 1 s complement of that binary number and add 1. Converting negative numbers (still using a single 8-bit byte length): 50: 50 = ; 1 s C. = ; 2 s C. = : 127 = ; 1 s C. = ; 2 s C. = : 1 = ; 1 s C. = ; 2 s C. = But: Positive decimal numbers are converted simply to positive binary numbers as before (no 2 s complement). Example: +67 (using method of successive div.)
6 Two s Complement Binary to Decimal Converting the other direction (2 s complement to decimal) is also simple. Simply do the following: Check the sign bit (left-most bit). If the sign bit is 0 (positive number), simply convert the number directly to a positive decimal number as we learned previously. If the sign bit is 1, the number is a 2 s complement negative number. To convert this number to decimal: Take the 2 s complement of the negative binary number. Convert the resulting + number to decimal and add a negative sign. 6
7 Two s Complement Binary to Decimal (2) Binary 2 s complement-to-decimal examples, negative numbers: = = 1; = = 93; = = 113; = = 126; 126. But for a positive binary number: Not a negative number Not a negative number Not a negative number Not a negative number
8 Decimal 2 s Complement Binary Yes Convert Decimal # To Binary Is the # > 0? Complete No Take Absolute Value of # and Convert to Binary Take 2 s Complement 8
9 2 s Complement Binary Decimal No Convert Binary # To Decimal Is the Binary # Sign Bit 1? Complete Yes Take 2 s Complement of Binary Number Convert Binary # to Decimal & Add Minus Sign 9
10 Exercise 1 Convert the following:
11 Two s Complement Binary Math If we represent binary numbers in 2 s complement form, simple addition and subtraction is easy. To subtract binary number b from a, simply take the 2 s complement of b, and add to a. That is: a b = a + (2 s comp. of b) = a + (b + 1) = a + b + 1 Adding numbers is the same as decimal addition. To add a positive and negative number, simply perform the addition and the minus sign (i.e., the left-most bit in the number) will take care of itself (assuming the result is within the range of representation). 11
12 Two s Complement Math 12 Subtract from : The 2 s complement of is = Adding: Check: 124 Thrown away (1) Add : Note that the 2 s complement of is , so the first number is equivalent to 63 decimal. Adding: Check: 63 Thrown away (1)
13 Two s Complement Binary Math (2) Subtract from (note we are subtracting a negative number): Adding: Check: ( 35) s complement of Add : Adding: Check: ( 127) Check! Check: 2 s C of = = 13, so the number =
14 Outside the Range of Representation 14 A number is outside the range of representation, when it cannot be represented by the bits available. For 8-bit, 2 s complement numbers (since left-most bit is the sign bit): Biggest + number to be represented = (+127). Biggest negative number possible is (= 127, 2 s C of ). Numbers outside the range of representation of n bits may only be represented by adding more bits. Examples: = 78!!! = + 112!!!
15 Summary: 2 s Complement Binary Math For integral mathematics in all modern computers, 2 s complement arithmetic is the customary approach. No ambiguous values crop up in CPU operations. A binary adder can subtract with minor modifications. The 2 s complement binary math unit is simple. For 2 s complement subtraction, the algorithm is very simple: Take the 2 s complement of the number being subtracted. Add the two numbers together. Note that the sign takes care of itself ( assuming the answer is within the range of representation ). 15
16 Exercise 2 Two 2 s comp. problems:
17 Binary Codes Computers also use binary numbers to represent nonnumeric information, such as text or graphics. Binary representations of text, (letters, textual numbers, punctuation symbols, etc.) are called codes. In a binary code, the binary number is a symbol and does not represent an actual number. A code normally cannot be operated on in the usual fashion mathematical, logical, etc. That is, one cannot usually add up, for example, two binary codes. It would be like attempting to add A and G! 17
18 18 The University of Texas at Dallas The ASCII Alphanumeric Code ASCII code represents alphanumeric data in most computers ( American Standard Code for Information Interchange ). Data on this transparency is coded in ASCII. ASCII codes are used for virtually all printers today. In the basic ASCII code that we will study, a single byte is used for each character. The least significant 7 bits represent the character. The eighth bit (the most significant bit, or MSB) may be used for error checking. Super ASCII codes can use all 8 bits (or more) for even more elaborate codes, such as other alphabets and character sets (Greek, Katakana, etc.).
19 ASCII Code (2) There are 128 basic ASCII characters, , or 0-7f 16 ( to binary). Each ASCII code is unique, for example: M = = 7710 = 4D16. m = = = 6D 16. Note that the small letters are exactly 3210 (20 hex) larger in numerical value than the capital letters. ASCII characters are stored as bytes in the computer. ASCII characters are normally represented as pairs of hex numbers (since 1 byte = 2 nibbles = 2 hex numbers). 19
20 Another Binary Code: EBCDIC EBCDIC (Extended Binary Coded Decimal Information Code) is an eight-bit character set developed by International Business Machines (IBM) and used on most IBM computers through the 1970 s. It was a precursor code to ASCII. IBM PC s have used ASCII code from the first models. Most other computer makers have also used the ASCII system since it was developed in the 1960s. EBCDIC is still used in some IBM computer equipment, mainly in systems with legacy code (very old software developed years ago) that was written in the days of EBCDIC. EBCDIC is an 8-bit code like ASCII, but the assignment of characters is very different. A few examples on the next slide. 20
21 EBCDIC and ASCII Hex Codes Character EBCDIC ASCII A C1 41 B C2 42 a b F F B 2E, 6B 2C 7F 22 21
22 22 The University of Texas at Dallas Summary Binary numbers are the numbers of computing. In EE 2310, students must master binary numbers. Since we live in a decimal world, it is also crucial to understand binary/decimal conversions. Hexadecimal numbers are also important, since many computer systems use hex readouts to ease the problem of interpreting 32- and 64- bit binary numbers. Binary codes are numbers that have a different meaning than their simple numerical value. ASCII is the default text code in most computer systems. The basic ASCII code set is shown at the end of these notes. Remember: There are only 10 types of people in the world those that understand binary and those that don t!
23 Exercise 3 Decode the following ASCII message: 47-6f-2c f-6d All numbers are ASCII characters in hex. Hint: We might say this if we had a football team. 23
24 Homework As was discussed last lecture, a good idea is to write down the two or three important things you learned today. Add these to the list you made last time (you did make a list last time, right?). Write down two or three things you did not clearly understand, as was mentioned before also. After finishing the assigned reading, if you still have questions, see me during office hours. 24
25 ASCII Codes 25
1 Basic Computing Concepts (4) Data Representations
1 Basic Computing Concepts (4) Data Representations The Binary System 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. The
EE 3170 Microcontroller Applications
EE 37 Microcontroller Applications Lecture 3 : Digital Computer Fundamentals - Number Representation (.) Based on slides for ECE37 by Profs. Sloan, Davis, Kieckhafer, Tan, and Cischke Number Representation
By the end of the lecture, you should be able to:
Extra Lecture: Number Systems Objectives - To understand: Base of number systems: decimal, binary, octal and hexadecimal Textual information stored as ASCII Binary addition/subtraction, multiplication
Chapter No.5 DATA REPRESENTATION
Chapter No.5 DATA REPRESENTATION Q.5.01 Complete the following statements. i) Data is a collection of ii) Data becomes information when properly. iii) Octal equivalent of binary number 1100010 is iv) 2
Decimal-to-Binary Conversion. Computer & Microprocessor Architecture HCA103. Repeated Division-by-2 Method. Repeated Multiplication-by-2 Method
Decimal-to-Binary Conversion Computer & Microprocessor Architecture HCA103 Computer Arithmetic Algorithm 1 Step 1: Break the number in two parts: Whole number and fraction part. Step 2: Repeated Division-by-2
EEE130 Digital Electronics I Lecture #2
EEE130 Digital Electronics I Lecture #2 -Number Systems, Operations and Codes- By Dr. Shahrel A. Suandi Topics to be discussed 2-1 Decimal Numbers 2-2 Binary Numbers 2-3 Decimal-to-Binary Conversion 2-4
Number Representation
Number Representation Number System :: The Basics We are accustomed to using the so-called decimal number system Ten digits ::,,,3,4,5,6,7,8,9 Every digit position has a weight which is a power of Base
Number Representation
Number Representation CS10001: Programming & Data Structures Pallab Dasgupta Professor, Dept. of Computer Sc. & Engg., Indian Institute of Technology Kharagpur Topics to be Discussed How are numeric data
الدكتور المھندس عادل مانع داخل
الدكتور المھندس عادل مانع داخل / میسان جامعة / كلیة الھندسة قسم الھندسة الكھرباي یة Chapter 1: Digital Systems Discrete Data Examples: 26 letters of the alphabet (A, B etc) 10 decimal digits (0, 1, 2 etc)
Encoding Systems: Combining Bits to form Bytes
Encoding Systems: Combining Bits to form Bytes Alphanumeric characters are represented in computer storage by combining strings of bits to form unique bit configuration for each character, also called
Today. Binary addition Representing negative numbers. Andrew H. Fagg: Embedded Real- Time Systems: Binary Arithmetic
Today Binary addition Representing negative numbers 2 Binary Addition Consider the following binary numbers: 0 0 1 0 0 1 1 0 0 0 1 0 1 0 1 1 How do we add these numbers? 3 Binary Addition 0 0 1 0 0 1 1
Binary Representation and Computer Arithmetic
Binary Representation and Computer Arithmetic The decimal system of counting and keeping track of items was first created by Hindu mathematicians in India in A.D. 4. Since it involved the use of fingers
Lecture 2. Binary and Hexadecimal Numbers
Lecture 2 Binary and Hexadecimal Numbers Purpose: Review binary and hexadecimal number representations Convert directly from one base to another base Review addition and subtraction in binary representations
The largest has a 0 in the sign position and 0's in all other positions:
10.2 Sign Magnitude Representation Sign Magnitude is straight-forward method for representing both positive and negative integers. It uses the most significant digit of the digit string to indicate the
Logic Design. Dr. Yosry A. Azzam
Logic Design Dr. Yosry A. Azzam Binary systems Chapter 1 Agenda Binary Systems : Binary Numbers, Binary Codes, Binary Logic ASCII Code (American Standard Code for Information Interchange) Boolean Algebra
Here 4 is the least significant digit (LSD) and 2 is the most significant digit (MSD).
Number System Introduction Number systems provide the basis for all operations in information processing systems. In a number system the information is divided into a group of symbols; for example, 26
Chapter 3 DATA REPRESENTATION. 3.1 Character Representation
Chapter 3 DATA REPRESENTATION Binary codes are used to represent both characters and numbers inside computers. Moreover, the binary codes used to represent numbers must be consistent with the arithmetic
Data Representation. Representing Data
Data Representation COMP 1002/1402 Representing Data A computer s basic unit of information is: a bit (Binary digit) An addressable memory cell is a byte (8 bits) Capable of storing one character 10101010
CHAPTER 3 Number System and Codes
CHAPTER 3 Number System and Codes 3.1 Introduction On hearing the word number, we immediately think of familiar decimal number system with its 10 digits; 0,1, 2,3,4,5,6, 7, 8 and 9. these numbers are called
Binary Numbers. Binary Octal Hexadecimal
Binary Numbers Binary Octal Hexadecimal Binary Numbers COUNTING SYSTEMS UNLIMITED... Since you have been using the 10 different digits 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 all your life, you may wonder how
Solution for Homework 2
Solution for Homework 2 Problem 1 a. What is the minimum number of bits that are required to uniquely represent the characters of English alphabet? (Consider upper case characters alone) The number of
Binary Representation. Number Systems. Positional Notation
Binary Representation The basis of all digital data is binary representation. Binary - means two 1, 0 True, False Hot, Cold On, Off We must be able to handle more than just values for real world problems
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.
Digital Logic 1 Data Representations 1.1 The Binary System 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. The system we
CPE 323 Data Types and Number Representations
CPE 323 Data Types and Number Representations Aleksandar Milenkovic Numeral Systems: Decimal, binary, hexadecimal, and octal We ordinarily represent numbers using decimal numeral system that has 10 as
Binary Representation. Number Systems. Base 10, Base 2, Base 16. Positional Notation. Conversion of Any Base to Decimal.
Binary Representation The basis of all digital data is binary representation. Binary - means two 1, 0 True, False Hot, Cold On, Off We must be able to handle more than just values for real world problems
Number Representation
Number Representation COMP375 Computer Organization and darchitecture t How do we represent data in a computer? At the lowest level, a computer is an electronic machine. works by controlling the flow of
Two s Complement Arithmetic
Two s Complement Arithmetic We now address the issue of representing integers as binary strings in a computer. There are four formats that have been used in the past; only one is of interest to us. The
EE 261 Introduction to Logic Circuits. Module #2 Number Systems
EE 261 Introduction to Logic Circuits Module #2 Number Systems Topics A. Number System Formation B. Base Conversions C. Binary Arithmetic D. Signed Numbers E. Signed Arithmetic F. Binary Codes Textbook
Number Systems and. Data Representation
Number Systems and Data Representation 1 Lecture Outline Number Systems Binary, Octal, Hexadecimal Representation of characters using codes Representation of Numbers Integer, Floating Point, Binary Coded
Digital Fundamentals
Digital Fundamentals with PLD Programming Floyd Chapter 2 29 Pearson Education Decimal Numbers The position of each digit in a weighted number system is assigned a weight based on the base or radix of
Review of Number Systems The study of number systems is important from the viewpoint of understanding how data are represented before they can be processed by any digital system including a computer. Different
Chapter II Binary Data Representation
Chapter II Binary Data Representation The atomic unit of data in computer systems is the bit, which is actually an acronym that stands for BInary digit. It can hold only 2 values or states: 0 or 1, true
CMPS 10 Winter Homework Assignment 5
CMPS 10 Winter 2011- Homework Assignment 5 Problems: Chapter 4 (p.184): 1abc, 3abcd, 4ab, 5abc, 6, 7, 9abcd, 15abcd, 17, 18, 19, 20 1. Given our discussion of positional numbering systems in Section 4.2.1,
2. Number Systems - Positional Number Systems (1) - 2. Number Systems - Binary Numbers - 2. Number Systems - Positional Number Systems (2) -
Sistemas Digitais I LESI - 2º ano Lesson 2 - Number Systems Prof. João Miguel Fernandes (miguel@di.uminho.pt) Dept. Informática - Positional Number Systems (1) - We use daily a positional number system.
As we have discussed, digital circuits use binary signals but are required to handle
Chapter 2 CODES AND THEIR CONVERSIONS 2.1 INTRODUCTION As we have discussed, digital circuits use binary signals but are required to handle data which may be alphabetic, numeric, or special characters.
Fixed-point Representation of Numbers
Fixed-point Representation of Numbers Fixed Point Representation of Numbers Sign-and-magnitude representation Two s complement representation Two s complement binary arithmetic Excess code representation
Number Representation and Arithmetic in Various Numeral Systems
1 Number Representation and Arithmetic in Various Numeral Systems Computer Organization and Assembly Language Programming 203.8002 Adapted by Yousef Shajrawi, licensed by Huong Nguyen under the Creative
Presented By: Ms. Poonam Anand
Presented By: Ms. Poonam Anand Know the different types of numbers Describe positional notation Convert numbers in other bases to base 10 Convert base 10 numbers into numbers of other bases Describe the
Bits, Data Types, and Operations. University of Texas at Austin CS310H - Computer Organization Spring 2010 Don Fussell
Bits, Data Types, and Operations University of Texas at Austin CS3H - Computer Organization Spring 2 Don Fussell How do we represent data in a computer? At the lowest level, a computer is an electronic
CHAPTER 2 Data Representation in Computer Systems
CHAPTER 2 Data Representation in Computer Systems 2.1 Introduction 47 2.2 Positional Numbering Systems 48 2.3 Converting Between Bases 48 2.3.1 Converting Unsigned Whole Numbers 49 2.3.2 Converting Fractions
MT1 Number Systems. In general, the number a 3 a 2 a 1 a 0 in a base b number system represents the following number:
MT1 Number Systems MT1.1 Introduction A number system is a well defined structured way of representing or expressing numbers as a combination of the elements of a finite set of mathematical symbols (i.e.,
P A R T DIGITAL TECHNOLOGY
P A R T A DIGITAL TECHNOLOGY 1 CHAPTER NUMBERING SYSTEMS 1.0 INTRODUCTION This chapter discusses several important concepts including the binary, octal and hexadecimal numbering systems, binary data organization
Integer Numbers. The Number Bases of Integers Textbook Chapter 3
Integer Numbers The Number Bases of Integers Textbook Chapter 3 Number Systems Unary, or marks: /////// = 7 /////// + ////// = ///////////// Grouping lead to Roman Numerals: VII + V = VVII = XII Better:
2011, The McGraw-Hill Companies, Inc. Chapter 3
Chapter 3 3.1 Decimal System The radix or base of a number system determines the total number of different symbols or digits used by that system. The decimal system has a base of 10 with the digits 0 through
COMP2121: Microprocessors and Interfacing
Interfacing Lecture 3: Number Systems (I) http://www.cse.unsw.edu.au/~cs2121 Lecturer: Hui Wu Session 2, 2005 Overview Positional notation Decimal, hexadecimal and binary One complement Two s complement
Computer Science 281 Binary and Hexadecimal Review
Computer Science 281 Binary and Hexadecimal Review 1 The Binary Number System Computers store everything, both instructions and data, by using many, many transistors, each of which can be in one of two
Chapter 4: Computer Codes
Slide 1/30 Learning Objectives In this chapter you will learn about: Computer data Computer codes: representation of data in binary Most commonly used computer codes Collating sequence 36 Slide 2/30 Data
The string of digits 101101 in the binary number system represents the quantity
Data Representation Section 3.1 Data Types Registers contain either data or control information Control information is a bit or group of bits used to specify the sequence of command signals needed for
1.3 Data Representation
8628-28 r4 vs.fm Page 9 Thursday, January 2, 2 2:4 PM.3 Data Representation 9 appears at Level 3, uses short mnemonics such as ADD, SUB, and MOV, which are easily translated to the ISA level. Assembly
Lecture 2 - POGIL Activity
15213 - Lecture 2 - POGIL Activity Introduction In this activity you will learn about binary numbers. This activity was based on material developed by Professor Saturnino Garcia of the University of San
Theory of Logic Circuits. Laboratory manual. Exercise 6
Zakład Mikroinformatyki i Teorii Automatów Cyfrowych Theory of Logic Circuits Laboratory manual Exercise 6 Selected arithmetic switching circuits 2008 Tomasz Podeszwa, Piotr Czekalski (edt.) 1. Number
CHAPTER TWO. 2.1 Unsigned Binary Counting. Numbering Systems
CHAPTER TWO Numbering Systems Chapter one discussed how computers remember numbers using transistors, tiny devices that act like switches with only two positions, on or off. A single transistor, therefore,
Data types. lecture 4
Data types lecture 4 Information in digital computers is represented using binary number system. The base, i.e. radix, of the binary system is 2. Other common number systems: octal (base 8), decimal (base
NUMBERING SYSTEMS C HAPTER 1.0 INTRODUCTION 1.1 A REVIEW OF THE DECIMAL SYSTEM 1.2 BINARY NUMBERING SYSTEM
12 Digital Principles Switching Theory C HAPTER 1 NUMBERING SYSTEMS 1.0 INTRODUCTION Inside today s computers, data is represented as 1 s and 0 s. These 1 s and 0 s might be stored magnetically on a disk,
LSN 2 Number Systems. ECT 224 Digital Computer Fundamentals. Department of Engineering Technology
LSN 2 Number Systems Department of Engineering Technology LSN 2 Decimal Number System Decimal number system has 10 digits (0-9) Base 10 weighting system... 10 5 10 4 10 3 10 2 10 1 10 0. 10-1 10-2 10-3
Binary Numbers Again. Binary Arithmetic, Subtraction. Binary, Decimal addition
Binary Numbers Again Recall than N binary digits (N bits) can represent unsigned integers from 0 to 2 N -1. 4 bits = 0 to 15 8 bits = 0 to 255 16 bits = 0 to 65535 Besides simply representation, we would
Lecture 2: Number System
Lecture 2: Number System Today s Topics Review binary and hexadecimal number representation Convert directly from one base to another base Review addition and subtraction in binary representation Determine
BINARY-CODED DECIMAL (BCD)
BINARY-CODED DECIMAL (BCD) Definition The binary-coded decimal (BCD) is an encoding for decimal numbers in which each digit is represented by its own binary sequence. Basics In computing and electronic
Chap 3 Data Representation
Chap 3 Data Representation 3-11 Data Types How to representation and conversion between these data types? 3-11 Data Types : Number System Radix : Decimal : radix 10 Binary : radix 2 3-11 Data Types : Number
CSC 1103: Digital Logic. Lecture Six: Data Representation
CSC 1103: Digital Logic Lecture Six: Data Representation Martin Ngobye mngobye@must.ac.ug Mbarara University of Science and Technology MAN (MUST) CSC 1103 1 / 32 Outline 1 Digital Computers 2 Number Systems
Number Systems and Base Conversions
Number Systems and Base Conversions As you know, the number system that we commonly use is the decimal or base- 10 number system. That system has 10 digits, 0 through 9. While it's very convenient for
Digital System Design Prof. D Roychoudhry Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur
Digital System Design Prof. D Roychoudhry Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 04 Digital Logic II May, I before starting the today s lecture
Chapter 2: Number Systems
Chapter 2: Number Systems Logic circuits are used to generate and transmit 1s and 0s to compute and convey information. This two-valued number system is called binary. As presented earlier, there are many
Part 1 Theory Fundamentals
Part 1 Theory Fundamentals 2 Chapter 1 Information Representation Learning objectives By the end of this chapter you should be able to: show understanding of the basis of different number systems show
CSc 28 Data representation. CSc 28 Fall
CSc 28 Data representation 1 Binary numbers Binary number is simply a number comprised of only 0's and 1's. Computers use binary numbers because it's easy for them to communicate using electrical current
1 / 40. Data Representation. January 9 14, 2013
1 / 40 Data Representation January 9 14, 2013 Quick logistical notes In class exercises Bring paper and pencil (or laptop) to each lecture! Goals: break up lectures, keep you engaged chance to work through
The representation of data within the computer
The representation of data within the computer Digital and Analog System of Coding Digital codes. Codes that represent data or physical quantities in discrete values (numbers) Analog codes. Codes that
Computer is a binary digital system. Data. Unsigned Integers (cont.) Unsigned Integers. Binary (base two) system: Has two states: 0 and 1
Computer Programming Programming Language Is telling the computer how to do something Wikipedia Definition: Applies specific programming languages to solve specific computational problems with solutions
Binary math. Resources and methods for learning about these subjects (list a few here, in preparation for your research):
Binary math This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,
Decimal and Binary Numbers By Dwight Watt, EdD Copyright 2000, 2014
Copyright 2000, 2014 As you work with the Internet and computers you will work with several number systems. Number systems give us a way to express numbers. There are an infinite number of number systems
ORG ; ZERO. Introduction To Computing
Dec 0 Hex 0 Bin 00000000 ORG ; ZERO Introduction To Computing OBJECTIVES this chapter enables the student to: Convert any number from base 2, base 10, or base 16 to any of the other two bases. Add and
Binary Representation
Binary Representation The basis of all digital data is binary representation. Binary - means two 1, 0 True, False Hot, Cold On, Off We must tbe able to handle more than just values for real world problems
The Mathematics Driving License for Computer Science- CS10410
The Mathematics Driving License for Computer Science- CS10410 Approximating Numbers, Number Systems and 2 s Complement by Nitin Naik Approximating Numbers There are two kinds of numbers: Exact Number and
A B C
Data Representation Module 2 CS 272 Sam Houston State University Dr. Tim McGuire Copyright 2001 by Timothy J. McGuire, Ph.D. 1 Positional Number Systems Decimal (base 10) is an example e.g., 435 means
Introduction Number Systems and Conversion
UNIT 1 Introduction Number Systems and Conversion Objectives 1. Introduction The first part of this unit introduces the material to be studied later. In addition to getting an overview of the material
2.1 Binary Numbers. 2.3 Number System Conversion. From Binary to Decimal. From Decimal to Binary. Section 2 Binary Number System Page 1 of 8
Section Binary Number System Page 1 of 8.1 Binary Numbers The number system we use is a positional number system meaning that the position of each digit has an associated weight. The value of a given number
Data Representation. Data Representation, Storage, and Retrieval. Data Representation. Data Representation. Data Representation. Data Representation
, Storage, and Retrieval ULM/HHIM Summer Program Project 3, Day 3, Part 3 Digital computers convert the data they process into a digital value. Text Audio Images/Graphics Video Digitizing 00000000... 6/8/20
Number Systems Richard E. Haskell
NUMBER SYSTEMS D Number Systems Richard E. Haskell Data inside a computer are represented by binary digits or bits. The logical values of these binary digits are denoted by and, while the corresponding
TECH. Arithmetic & Logic Unit. CH09 Computer Arithmetic. Number Systems. ALU Inputs and Outputs. Binary Number System
CH09 Computer Arithmetic CPU combines of ALU and Control Unit, this chapter discusses ALU The Arithmetic and Logic Unit (ALU) Number Systems Integer Representation Integer Arithmetic Floating-Point Representation
Binary Adders: Half Adders and Full Adders
Binary Adders: Half Adders and Full Adders In this set of slides, we present the two basic types of adders: 1. Half adders, and 2. Full adders. Each type of adder functions to add two binary bits. In order
Switching Circuits & Logic Design
Switching Circuits & Logic Design Jie-Hong Roland Jiang 江介宏 Department of Electrical Engineering National Taiwan University Fall 2013 1 1 Number Systems and Conversion Babylonian number system (3100 B.C.)
Computer Number Systems
Computer Number Systems Thorne, Edition 2 : Section 1.3, Appendix I (Irvine, Edition VI : Section 1.3) SYSC3006 1 Starting from What We Already Know Decimal Numbers Based Number Systems : 1. Base defines
Developing a Program in SPIM
Developing a Program in SPIM By now, if you have been doing all the homework and class examples, you have begun to feel a lot more at home with the programming process in SPIM. However, the primary focus
Binary Numbers The Computer Number System
Binary Numbers The Computer Number System Number systems are simply ways to count things. Ours is the base-0 or radix-0 system. Note that there is no symbol for 0 or for the base of any system. We count,2,3,4,5,6,7,8,9,
Numbering Systems. InThisAppendix...
G InThisAppendix... Introduction Binary Numbering System Hexadecimal Numbering System Octal Numbering System Binary Coded Decimal (BCD) Numbering System Real (Floating Point) Numbering System BCD/Binary/Decimal/Hex/Octal
CHAPTER THREE. 3.1 Binary Addition. Binary Math and Signed Representations
CHAPTER THREE Binary Math and Signed Representations Representing numbers with bits is one thing. Doing something with them is an entirely different matter. This chapter discusses some of the basic mathematical
Unit 2: Number Systems, Codes and Logic Functions
Unit 2: Number Systems, Codes and Logic Functions Introduction A digital computer manipulates discrete elements of data and that these elements are represented in the binary forms. Operands used for calculations
CSCI 230 Class Notes Binary Number Representations and Arithmetic
CSCI 230 Class otes Binary umber Representations and Arithmetic Mihran Tuceryan with some modifications by Snehasis Mukhopadhyay Jan 22, 1999 1 Decimal otation What does it mean when we write 495? How
Integer and Real Numbers Representation in Microprocessor Techniques
Brno University of Technology Integer and Real Numbers Representation in Microprocessor Techniques Microprocessor Techniques and Embedded Systems Lecture 1 Dr. Tomas Fryza 30-Sep-2011 Contents Numerical
Numeral System and Its Importance ROOM: B405
Numeral System and Its Importance HONG@IS.NAIST.JP ROOM: B405 Contents Number System Introduction Number systems used by human Number systems used by computer Number System Conversion Signed Number Representation
Oct: 50 8 = 6 (r = 2) 6 8 = 0 (r = 6) Writing the remainders in reverse order we get: (50) 10 = (62) 8
ECE Department Summer LECTURE #5: Number Systems EEL : Digital Logic and Computer Systems Based on lecture notes by Dr. Eric M. Schwartz Decimal Number System: -Our standard number system is base, also
Codes and number systems
Coding Codes and number systems Assume that you want to communicate with your friend with a flashlight in a night, what will you do? Introduction to Computer Yung-Yu Chuang light painting? What s the problem?
CHAPTER V NUMBER SYSTEMS AND ARITHMETIC
CHAPTER V-1 CHAPTER V CHAPTER V NUMBER SYSTEMS AND ARITHMETIC CHAPTER V-2 NUMBER SYSTEMS RADIX-R REPRESENTATION Decimal number expansion 73625 10 = ( 7 10 4 ) + ( 3 10 3 ) + ( 6 10 2 ) + ( 2 10 1 ) +(
Part IA Engineering. Contents of Handout 2. Digital Circuits & Information Processing. Handout 2. Sequential Logic
Part IA Engineering Contents of Handout 2 Digital Circuits & Information Processing Handout 2 Sequential Logic ichard Prager Tim Flack anuary 29 Section A Section B Section C Section D Section E Binary
Radix Number Systems. Number Systems. Number Systems 4/26/2010. basic idea of a radix number system how do we count:
Number Systems binary, octal, and hexadecimal numbers why used conversions, including to/from decimal negative binary numbers floating point numbers character codes basic idea of a radix number system
1- Introduction. Bit: The most basic unit of information in a digital computer (On/Off ; 0/1 state)
Objectives: Chapter 2 : Introduction 1- Introduction 2- Positional Numbering System 3- Decimal to binary conversion 4- Signed integer representation 5- Floating-point representation 1- Introduction Bit:
CDA 3200 Digital Systems. Instructor: Dr. Janusz Zalewski Developed by: Dr. Dahai Guo Spring 2012
CDA 3200 Digital Systems Instructor: Dr. Janusz Zalewski Developed by: Dr. Dahai Guo Spring 2012 Outline Data Representation Binary Codes Why 6-3-1-1 and Excess-3? Data Representation (1/2) Each numbering
Digital Electronics. 1.0 Introduction to Number Systems. Module
Module 1 www.learnabout-electronics.org Digital Electronics 1.0 Introduction to What you ll learn in Module 1 Section 1.0. Recognise different number systems and their uses. Section 1.1 in Electronics.
D r = d p-1 d p-2.. d 1 d 0.d -1 d -2. D -n. EECC341 - Shaaban
Positional Number Systems A number system consists of an order set of symbols (digits) with relations defined for +,-,*, / The radix (or base) of the number system is the total number of digits allowed
Systems I: Computer Organization and Architecture
Systems I: Computer Organization and Architecture Lecture 2: Number Systems and Arithmetic Number Systems - Base The number system that we use is base : 734 = + 7 + 3 + 4 = x + 7x + 3x + 4x = x 3 + 7x