Presentation is loading. Please wait.

Presentation is loading. Please wait.

Lecture 5. Topics Sec 1.4 Representing Information as Bit Patterns Representing Text Representing Text Representing Numeric Values Representing Numeric.

Similar presentations


Presentation on theme: "Lecture 5. Topics Sec 1.4 Representing Information as Bit Patterns Representing Text Representing Text Representing Numeric Values Representing Numeric."— Presentation transcript:

1 Lecture 5

2 Topics Sec 1.4 Representing Information as Bit Patterns Representing Text Representing Text Representing Numeric Values Representing Numeric Values Representing Images Representing Images Sec 1.6 Storing Integers Two’s Complement Notation Two’s Complement Notation Excess Notation Excess Notation

3 Representing Text Each character (letter, punctuation, etc.) is assigned a unique bit pattern. Each character (letter, punctuation, etc.) is assigned a unique bit pattern. ASCII: Uses patterns of 7-bits to represent most symbols used in written English text ASCII: Uses patterns of 7-bits to represent most symbols used in written English text Unicode: Uses patterns of 16-bits to represent the major symbols used in languages world side Unicode: Uses patterns of 16-bits to represent the major symbols used in languages world side ISO standard: Uses patterns of 32-bits to represent most symbols used in languages world wide ISO standard: Uses patterns of 32-bits to represent most symbols used in languages world wide

4

5 Figure 1.12 The message “Hello.” in ASCII

6 Representing Numeric Values Binary notation: Uses bits to represent a number in base two Binary notation: Uses bits to represent a number in base two Limitations of computer representations of numeric values Limitations of computer representations of numeric values Overflow – occurs when a value is too big to be represented Overflow – occurs when a value is too big to be represented Truncation – occurs when a value cannot be represented accurately Truncation – occurs when a value cannot be represented accurately

7 Representing Images Images are stored using a variety of formats and compression techniques Images are stored using a variety of formats and compression techniques The simplest representation is a bitmap The simplest representation is a bitmap Bitmaps partition an image into a grid of picture elements, called pixels, and then convert each pixel into a bit pattern Bitmaps partition an image into a grid of picture elements, called pixels, and then convert each pixel into a bit pattern Resolution refers to the sharpness or clarity of an image bitmaps that are divided into smaller pixels will yield higher resolution images the left image is stored using 96 pixels per square inch, and the right image is stored using 48 pixels per square inch  the left image appears sharp, but has twice the storage requirements

8 Storing Integers Integers are categorized as: Integers are categorized as: Signed Integers Signed Integers Unsigned Integers Unsigned Integers Signed are those that include positive as well as negative numbers Signed are those that include positive as well as negative numbers While Unsigned are those that only represent positive numbers While Unsigned are those that only represent positive numbers The range for Signed Numbers is reduced to half The range for Signed Numbers is reduced to half

9 Signed Integers There are two ways to represent Signed Integers: Two’s complement notation: The most popular means of representing integer values Two’s complement notation: The most popular means of representing integer values Excess notation: Another means of representing integer values Excess notation: Another means of representing integer values Both can suffer from overflow errors. Both can suffer from overflow errors.

10 Representing Negative Numbers Can use “+” and “-”, as usual. Can use “+” and “-”, as usual. But requires extra symbols. How can we use bits instead? But requires extra symbols. How can we use bits instead? DecimalBinary +17+10001 -17-10001

11 1-11 Figure 1.21 Two’s complement notation systems

12 Two’s complement Notation Invert all bits, then add 1. Invert all bits, then add 1. Decimal Binary 4-bit (1 bit sign + 3 bits magnitude) Decimal Binary 4-bit (1 bit sign + 3 bits magnitude) 000000 100011111 20010-21110 30011-31101 40100-41100 50101-51011 60110-61010 70111-71001 -81000

13 Two’s complement – it just works! 0011 (3 decimal) + 0010 (2 decimal) = (5 decimal ?) 1101 (-3 decimal) + 1110 (-2 decimal) = (-5 decimal ?) 0011 (3 decimal) + 1110 (-2 decimal) = (1 decimal ?) 0101 11011 10001

14 Problems with binary arithmetic Fixed number of bits  can go out of range. Fixed number of bits  can go out of range. 0011 (3 decimal) 0011 (3 decimal) + 0111 (7 decimal) = 1010 (-6 decimal???) Overflow: When result can’t be represented within range of bits. Overflow: When result can’t be represented within range of bits. Overflow occurs when the value that we compute cannot fit into the number of bits we have allocated for the result. Overflow occurs when the value that we compute cannot fit into the number of bits we have allocated for the result. In addition, if operands have same sign and sum doesn’t. In addition, if operands have same sign and sum doesn’t.

15 Excess Notation Excess 8 notation indicates that the value for zero is the bit pattern for 8, that is 1000 Excess 8 notation indicates that the value for zero is the bit pattern for 8, that is 1000 The bit patterns are 4 bits long The bit patterns are 4 bits long Positive numbers are above it in order and negative numbers are below it in order. Positive numbers are above it in order and negative numbers are below it in order.

16 Figure 1.24 An excess eight conversion table

17 Excess Notation (continue) That is the zero point for Excess 128 notation is 128; the zero point for excess 64 notation is 64; and so forth. That is the zero point for Excess 128 notation is 128; the zero point for excess 64 notation is 64; and so forth. For example, let's say we want to determine the pattern for 15 in Excess 128 notation. For example, let's say we want to determine the pattern for 15 in Excess 128 notation. The decimal number would be 128 + 15, or 143. Therefore, the bit pattern would be 10001111. The decimal number would be 128 + 15, or 143. Therefore, the bit pattern would be 10001111.

18 Storing Fractions In contrast to storage of Integers the storage of fractions requires not only the representation of the magnitude by the radix point as well In contrast to storage of Integers the storage of fractions requires not only the representation of the magnitude by the radix point as well A popular way of doing this is based on scientific notation called Floating-Point Notation A popular way of doing this is based on scientific notation called Floating-Point Notation

19 Binary Fractions (revisited) We use a radix point in the same role as the decimal point in decimal notation. That is, the digits to the left of the radix point represent the integer part of the value. The digits to the right represent the fractional part of the value. We use a radix point in the same role as the decimal point in decimal notation. That is, the digits to the left of the radix point represent the integer part of the value. The digits to the right represent the fractional part of the value. _ _ _. _ _ _ _ _ _. _ _ _ 2 2 2 1 2 0 2 -1 2 -2 2 -3 2 2 2 1 2 0 2 -1 2 -2 2 -3Example: 101.101 is 5 5/8 and 101.01011 is 5 11/32 101.101 is 5 5/8 and 101.01011 is 5 11/32 2 -1 = 1/2 2 -2 = 1/4 2 -3 = 1/8

20 Short Cut (Bin --- Decimal) Binary-to-decimal for the part after the point Binary-to-decimal for the part after the point 1. Convert binary digits as though there were no point. 2. Divide result by 2 #bits – e.g., if 7 bits converted, then divide by 2 7 = 128. E.g.,.1101 E.g.,.1101 – 1101 = 13 – So,.1101 = 13  2 4 = 13/16 =.8125

21 1-21 Figure 1.26 Floating-point notation components

22 Look at Scientific Notation Real5 digits and an exponentFloating point 12001.0012001 * 10 0 +.12001 * 10 5 -120.01-12001 * 10 -2 -.12001 * 10 3 0.1212000 * 10 -5 +.12000 * 10 0 15,555,55515555 * 10 3 +.15555 * 10 8 The last example shows us one of the problems with floating-point notation – truncation error. Part of the value being stored is lost because the mantissa field is not large enough. Let's look at some decimal numbers first, to get a feel for what needs to be done. First we need to know how many digits in the mantissa. Let's choose 5.

23 Floating Point Notation Now let's switch to binary. Although a common standard uses 64 bits for a floating-point number: 1 bit for the sign, 11 bits for the exponent, and 52 bits for the mantissa, we will use an abbreviated version. Let's use one byte: 1 bit for the sign, 3 bits for the exponent, and 4 bits for the mantissa. Now let's switch to binary. Although a common standard uses 64 bits for a floating-point number: 1 bit for the sign, 11 bits for the exponent, and 52 bits for the mantissa, we will use an abbreviated version. Let's use one byte: 1 bit for the sign, 3 bits for the exponent, and 4 bits for the mantissa.

24 The sign is easy enough 0 or 1. The sign is easy enough 0 or 1. The exponent has 3 bits and must be either + or -. We could use 2's complement, but excess notation is used instead! 3 bits means excess 4 notation. That leaves 4 bits for the mantissa. Why excess notation? It gives the best range of exponents and ease of wiring the circuitry. The exponent has 3 bits and must be either + or -. We could use 2's complement, but excess notation is used instead! 3 bits means excess 4 notation. That leaves 4 bits for the mantissa. Why excess notation? It gives the best range of exponents and ease of wiring the circuitry.

25 Excess 4 Notation 000 0 – 4 = -4 001 1 – 4 = -3 010 2 – 4 = -2 011 3 – 4 = -1 100 4 – 4 = 0 101 5 – 4 = 1 110 6 – 4 = 2 111 7 – 4 = 3 000 0 – 4 = -4 001 1 – 4 = -3 010 2 – 4 = -2 011 3 – 4 = -1 100 4 – 4 = 0 101 5 – 4 = 1 110 6 – 4 = 2 111 7 – 4 = 3

26 How to convert ?? Determine the sign bit Determine the sign bit Convert the whole number to binary Convert the whole number to binary Convert the fraction to binary Convert the fraction to binary Move the radix to the left of the most significant digit (left-most non-zero digit) Move the radix to the left of the most significant digit (left-most non-zero digit) Determine the exponent in excess 4 notation Determine the exponent in excess 4 notation

27 Example: To store 1 1/8 we express it in binary notation and obtain 1.001 To store 1 1/8 we express it in binary notation and obtain 1.001 Copy the bit patterns into the mantissa field from left to right. Copy the bit patterns into the mantissa field from left to right.

28 Example 1 Examples: Examples: +2 3/4 +2 3/4 This is positive so our sign bit is 0 This is positive so our sign bit is 0 2 is 10 2 is 10 3/4 is.11 3/4 is.11 This gives us 10.11 Move the radix two places to the left:.1011 This gives us 10.11 Move the radix two places to the left:.1011 So the exponent is +2: 110 in excess 4 So the exponent is +2: 110 in excess 4 Giving us: 0 110 1011 Giving us: 0 110 1011

29 Example 2 -1.1875 -1.1875 This is negative so our sign bit is 1 This is negative so our sign bit is 1 1 is 1 1 is 1.1875 is 3/16 giving us.0011.1875 is 3/16 giving us.0011 This gives us 1.0011: Because we have 4 bits we have to use 1.001: Move the radix one place to the left:.1001 This gives us 1.0011: Because we have 4 bits we have to use 1.001: Move the radix one place to the left:.1001 So the exponent is +1: 101 in excess 4 So the exponent is +1: 101 in excess 4 Giving us: 1 101 1001 Giving us: 1 101 1001

30 Example 3 What is 10111100 in decimal? What is 10111100 in decimal? Split it apart into its pieces: 1 011 1100 Split it apart into its pieces: 1 011 1100 The sign is 1 or negative The sign is 1 or negative The exponent is 011 or -1 The exponent is 011 or -1 The mantissa is 1100. Move the radix one place to the left:.01100 giving us 3/8 The mantissa is 1100. Move the radix one place to the left:.01100 giving us 3/8 Our number is -3/8 Our number is -3/8


Download ppt "Lecture 5. Topics Sec 1.4 Representing Information as Bit Patterns Representing Text Representing Text Representing Numeric Values Representing Numeric."

Similar presentations


Ads by Google