1 / 45

Binary Fractions

Binary Fractions. Fractions. A radix separates the integer part from the fraction part of a number. 101.101 Columns to the right of the radix have negative powers of 2. Fractions. Fractions. Fractions. Fractions. Fractions. Fractions. Another way to assess the fraction:

rviolet
Télécharger la présentation

Binary Fractions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Binary Fractions

  2. Fractions • A radix separates the integer part from the fraction part of a number. 101.101 • Columns to the right of the radix have negative powers of 2.

  3. Fractions

  4. Fractions

  5. Fractions

  6. Fractions

  7. Fractions

  8. Fractions Another way to assess the fraction: 4 2 1 . ½ ¼⅛ 1 0 1 . 1 0 1 Just as this is 5

  9. Fractions Another way to assess the fraction: 4 2 1 . ½ ¼ ⅛ 1 0 1 . 1 0 1 Just as this is 5 so is this!

  10. Fractions Another way to assess the fraction: 4 2 1 . ½ ¼ ⅛ 1 0 1 . 1 0 1 Just as this is 5so is this Except it’s not 5 ones. It’s 5 eighths.

  11. Fractions Another way to assess the fraction: 4 2 1 . ½ ¼ ⅛ 1 0 1 . 1 0 1 Just as this is 5so is this Except it’s not 5 ones. It’s 5 eighths.

  12. Fractions But there’s no dot (.) in Binary! We need to explore a method for storing fractions without inventing another symbol.

  13. Scientific Notation Very large and very small numbers are often represented such that their orders of magnitude can be compared. The basic concept is an exponential notation using powers of 10. a × 10b Where b is an integer, and a is a real number such that: 1 ≤ |a| < 10

  14. Scientific Notation - examples An electron's mass is about 0.00000000000000000000000000000091093826 kg. In scientific notation, this is written: 9.1093826×10−31 kg.

  15. Scientific Notation - examples An electron's mass is about 0.00000000000000000000000000000091093826 kg. In scientific notation, this is written: 9.1093826×10−31 kg.

  16. Scientific Notation - examples The Earth's mass is about 5,973,600,000,000,000,000,000,000 kg. In scientific notation, this is written: 5.9736×1024 kg.

  17. Scientific Notation - examples The Earth's mass is about 5,973,600,000,000,000,000,000,000 kg. In scientific notation, this is written: 5.9736×1024 kg.

  18. E Notation To allow values like this to be expressed on calculators and early terminals ‘× 10b’ was replaced by ‘Eb’ So 9.1093826×10−31 becomes 9.1093826E−31 And 5.9736×1024 becomes 5.9736E+24

  19. E Notation The ‘a’ part of the number is called the mantissa or significand. The ‘Eb’ part is called the exponent. Since exponents could also be negative, they would typically have a sign as well.

  20. Floating Point Storage In floating point notation the bit pattern is divided into 3 components: Sign – 1 bit (0 for +, 1 for -) Exponent – stored in Excess notation Mantissa – must begin with 1

  21. Floating Point Storage In floating point notation the bit pattern is divided into 3 components: Sign– 1 bit (0 for +, 1 for -) Exponent – stored in Excess notation Mantissa – must begin with 1

  22. Floating Point Storage In floating point notation the bit pattern is divided into 3 components: Sign– 1 bit (0 for +, 1 for -) Exponent– stored in Excess notation Mantissa – must begin with 1

  23. Floating Point Storage In floating point notation the bit pattern is divided into 3 components: Sign– 1 bit (0 for +, 1 for -) Exponent– stored in Excess notation Mantissa– must begin with 1

  24. Mantissa Assumes a radix point immediately left of the first digit. The exponent will determine how far, and in which direction to move the radix.

  25. An example in 8 bits If the following pattern stores a floating point value, what is it? 01101001

  26. An example in 8 bits If the following pattern stores a floating point value, what is it? 01101001 Separate it into its components:

  27. An example in 8 bits If the following pattern stores a floating point value, what is it? 01101001 Separate it into its components:signexponentmantissa

  28. An example in 8 bits If the following pattern stores a floating point value, what is it? 01101001 Separate it into its components:signexponentmantissa

  29. An example in 8 bits 01101001 A sign bit of 0 means the number is…?

  30. An example in 8 bits 01101001 A sign bit of 0 means the number is positive. 110 in Excess Notation converts to …?

  31. An example in 8 bits 01101001 A sign bit of 0 means the number is positive. 110 in Excess Notation converts to +2. Place the radix in the mantissa …

  32. An example in 8 bits 01101001 A sign bit of 0 means the number is positive. 110 in Excess Notation converts to +2. Place the radix in the mantissa .1001 Put it all together …

  33. An example in 8 bits 01101001 A sign bit of 0 means the number is positive. 110 in Excess Notation converts to +2. Place the radix in the mantissa .1001 Put it all together … +.1001 * 22

  34. An example in 8 bits As we’ve seen: + .1001 * 22 the mantissa can be understood as 9,in the sixteenths column. Of course, 22 is 4, so we need to solve 9/16 * 4.

  35. Alternatively +.1001 * 22 Multiplying a binary number by 2 shifts the bits left (moves the radix to the right) one position. So the exponent+2 tells us to shift the radix 2 positions right. +10.01 = 2¼

  36. Normal Form • The rule of Normal Form guarantees a unique mapping of patterns onto values.

  37. Normal Form • Consider the following 8-bit pattern in Normal Form:

  38. Normal Form • The exponent represents 0 so the radix is moved 0 positions.

  39. Normal Form • The exponent represents 0 so the radix is moved 0 positions.

  40. Normal Form • Now consider this pattern, which is NOT in Normal Form.

  41. Normal Form • The exponent represents +1sothe radix is moved 1 position to the right.

  42. Normal Form • The exponent represents +1 so the radix is moved 1 position to the right.

  43. Normal Form • But this is the same result as the first example!

  44. Normal Form • In fact there are MANY possible ways to represent the same value:

  45. Normal Form • The first bit of the mantissa must be 1 to prevent multiple representations of the same value.

More Related