SlideShare a Scribd company logo
1.16
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers



 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                                             Goal

       To be able to represent real numbers in IEEE standard
                               form.




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Real Numbers are stored by a totally different method
                         from integers.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Real Numbers are stored by a totally different method
                         from integers.
      Although many schemes are possible, we will explore a
       scheme that is widely used and accepted by the IEEE
        (Institute for Electrical and Electronic Engineering).




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                         Real numbers are stored as
              32 bits (usually referred to as the type ‘float’) or
              64 bits (usually referred to as the type ‘double’).




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                         Real numbers are stored as
              32 bits (usually referred to as the type ‘float’) or
              64 bits (usually referred to as the type ‘double’).

                            For our discussions, we’ll use 32 bits




                                          35.0
                                to represent a real number.




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers


                         The 32 bits are divided into 3 sections.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers


                         The 32 bits are divided into 3 sections.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
  sign
   bit




                         The 32 bits are divided into 3 sections.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
  sign          e xponent
   bit             8 bits




                         The 32 bits are divided into 3 sections.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
  sign          e xponent                                                           number
   bit             8 bits                                                            23 bits




                         The 32 bits are divided into 3 sections.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
  sign          e xponent                                                           number
   bit             8 bits                                                            23 bits




                         The 32 bits are divided into 3 sections.
                              This is the 1-8-23 pattern.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
  sign
   bit      sign bit : 0 for a positive number, 1 for negative



                         The 32 bits are divided into 3 sections.
                              This is the 1-8-23 pattern.




 MATH1003
                                          35.0
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form
      1. calculate the binary form of the number




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form
      1. calculate the binary form of the number
      2. calculate the normalized binary form




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form
      1. calculate the binary form of the number
      2. calculate the normalized binary form
      3. set the sign bit




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form
      1. calculate the binary form of the number
      2. calculate the normalized binary form
      3. set the sign bit
      4. store the exponent (+127, store as an 8-bit binary)




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Steps to represent a number in IEEE standard form
      1. calculate the binary form of the number
      2. calculate the normalized binary form
      3. set the sign bit
      4. store the exponent (+127, store as an 8-bit binary)
      5. store the normalized binary form without the first 1




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02
        2. normalize 11001.02




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02
        2. normalize 11001.02                                    1.1001 x               2 4




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers                                                         this is similar to
                                                                                                          scientific notation
                                                                                                         except that we use
      Represent 25.010 in IEEE standard                                                                     powers of 2

        1. 25.010 = 11001.02
        2. normalize 11001.02                                    1.1001 x               2 4




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                                                                        we moved the
                                                                      point 4 positions to
                                                                        the left, so our
      Represent 25.010 in IEEE                                    standard
                                                                        exponent is 4
        1. 25.010 = 11001.02
        2. normalize 11001.02                                    1.1001 x               2 4




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02
        2. normalize 11001.02                                    1.1001 x               2 4
        3. set the sign bit



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                     25.010
                                                                                        is a positive number
                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                     25.010
                                                                                        is a positive number
                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit
        4. store 4 in the exponent section


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.010 in store standard
                we want to IEEE
        1. 25.010 = 11001.02negative and
                        both                                                                      1.1001 x 24
                       positive exponents
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit
        4. store 4 in the exponent section


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.0store itIEEE standard
                we’ll 10 in so that
                       it corresponds to the
        1. 25.010 = 11001.02                                                                      1.1001 x 24
                           following table
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit00000000 -127
        4. store 4 in the exponent section
                           00000001 -126
                                     00000010          -125
                                        …                …
                                     01111111            0        Steps to represent a number in IEEE standard form
                                     10000000            1        1. calculate the binary form of the number
                                     10000001            2        2. calculate the normalized binary form
                                     10000010            3        3. set the sign bit
                                     10000011            4        4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1
                                        …                …
                                     11111111           128
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.0store itIEEE standard
                we’ll 10 in so that
                       it corresponds to the
        1. 25.010 = 11001.02                                                                      1.1001 x 24
                           following table
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit00000000 -127
        4. store 4 in the exponent section
                           00000001 -126
                                     00000010          -125
                                        …                …
                                     01111111            0        Steps to represent a number in IEEE standard form
                                     10000000            1        1. calculate the binary form of the number
                                     10000001            2        2. calculate the normalized binary form
                                     10000010            3        3. set the sign bit
                                     10000011            4        4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1
                                        …                …
                                     11111111           128
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.010 in IEEE standard
                to correspond to
        1. 25.010 = 11001.02 we’ll add 127
                     the table,                                                                   1.1001 x 24
        2. normalize 11001.02exponent x 24
                        to the = 1.1001
        3. set the sign bit00000000 -127
        4. store 4 in the exponent section
                           00000001 -126
                                     00000010          -125
                                        …                …
                                     01111111            0        Steps to represent a number in IEEE standard form
                                     10000000            1        1. calculate the binary form of the number
                                     10000001            2        2. calculate the normalized binary form
                                     10000010            3        3. set the sign bit
                                     10000011            4        4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1
                                        …                …
                                     11111111           128
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0
      Represent 25.010 in IEEE standard
                to correspond to
        1. 25.010 = 11001.02 we’ll add 127
                     the table,                                                                   1.1001 x 24
        2. normalize 11001.02exponent x 24
                        to the = 1.1001
        3. set the sign bit00000000 -127                                                    4 + 127 = 131
        4. store 4 in the exponent section
                           00000001 -126
                                     00000010          -125                                131 = 100000112
                                        …                …
                                     01111111            0        Steps to represent a number in IEEE standard form
                                     10000000            1        1. calculate the binary form of the number
                                     10000001            2        2. calculate the normalized binary form
                                     10000010            3        3. set the sign bit
                                     10000011            4        4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1
                                        …                …
                                     11111111           128
 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 1 1
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                 4 + 127 = 131
        4. store 4 in the exponent section
                                                                                           131 = 100000112
                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 1 1
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit
        4. store 4 in the exponent section
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 1 1
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                             1.1001
        4. store 4 in the exponent section
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                                  the normalized form
      0 1 0 0 0 0 0 1 1 will always have a 1 to the left
                            of the point, so let’s ignore the 1
      Represent 25.010 when we use this number in a
                           (but
                                in IEEE standard
       1. 25.010 = 11001.02 calculation, we’ll put it “back”)   1.1001 x 24
       2. normalize 11001.02 = 1.1001 x 24
       3. set the sign bit                                        1.1001
       4. store 4 in the exponent section
       5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                                  the normalized form
      0 1 0 0 0 0 0 1 1 will always have a 1 to the left
                            of the point, so let’s ignore the 1
      Represent 25.010 when we use this number in a
                           (but
                                in IEEE standard
       1. 25.010 = 11001.02 calculation, we’ll put it “back”)   1.1001 x 24
       2. normalize 11001.02 = 1.1001 x 24
       3. set the sign bit                                        1.1001
       4. store 4 in the exponent section
       5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 1 1 1 0 0 1
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                             1.1001
        4. store 4 in the exponent section
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                                                                        we’ll
                                                                  fill in the rest
                                                                      with 0s
      0 1 0 0 0 0 0 1 1 1 0 0 1
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                             1.1001
        4. store 4 in the exponent section
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
                                                                        we’ll
                                                                  fill in the rest
                                                                      with 0s
      0 1 0 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Represent 25.010 in IEEE standard
        1. 25.010 = 11001.02                                                                      1.1001 x 24
        2. normalize 11001.02 = 1.1001 x 24
        3. set the sign bit                                                                             1.1001
        4. store 4 in the exponent section
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2
                                                       .2 x 2 = 0.4
                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112 3410 = 1000102
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2
                                                       .2 x 2 = 0.4
                                                               Steps to represent a number in IEEE standard form
                                                       34.210 = 100010.00112
                                                               1. calculate the binary form of the number
                                                               2. calculate the normalized binary form
                                                               3. set the sign bit
                                                               4. store the exponent (+127, store as an 8-bit binary)
                                                               5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112
        2. normalized as 1.000100011 x 25




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112
        2. normalized as 1.000100011 x 25




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      1 1
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      1 1
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      1 1 0 0 0 0 1 0 0 0
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      1 1 0 0 0 0 1 0 0 0
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001



                                                                                            we’ll fill in the

                                      Real Numbers                                     rest with the repeating
                                                                                              pattern

      1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001



                                                                                            we’ll fill in the

                                      Real Numbers                                     rest with the repeating
                                                                                              pattern

      1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
      Represent -34.210 in IEEE standard
        1. 34.210 = 100010.00112                                                           1.000100011 x 25
        2. normalized as 1.000100011 x 25
        3. set the sign bit
        4. store 5 in the exponent section as (5 + 127 = 132) 100001002
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2
                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2
                                                       .2 x 2 = 0.4
                                                               Steps to represent a number in IEEE standard form
                                                               1. calculate the binary form of the number
                                                               2. calculate the normalized binary form
                                                               3. set the sign bit
                                                               4. store the exponent (+127, store as an 8-bit binary)
                                                               5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                        .025 x 2 = 0.05
                                                       .05 x 2 = 0.1
                                                       .1 x 2 = 0.2
                                                       .2 x 2 = 0.4
                                                       .4 x 2 = 0.8
                                                       .8 x 2 = 1.6
                                                       .6 x 2 = 1.2
                                                       .2 x 2 = 0.4
                                                               Steps to represent a number in IEEE standard form
                                                               1. calculate the binary form of the number
                                                       0.02510 = 0.00000112
                                                               2. calculate the normalized binary form
                                                               3. set the sign bit
                                                               4. store the exponent (+127, store as an 8-bit binary)
                                                               5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
       1. 0.02510 = 0.00000112         0.000001100110011




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
       1. 0.02510 = 0.00000112         0.000001100110011
        2. normalized as 1.1001 x 2-6




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                             1.100110011001
        2. normalized as 1.1001 x 2-6




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6




                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit



                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit
        4. store -6 in the exponent section as (-6 + 127 = 121) 011110012


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0 1 1 1 1 0 0 1 1
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit
        4. store -6 in the exponent section as (-6 + 127 = 121) 011110012


                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0 1 1 1 1 0 0 1 1
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit
        4. store -6 in the exponent section as (-6 + 127 = 121) 011110012
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 0 1 1 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 1 0 0
      Represent 0.02510 in IEEE standard
        1. 0.02510 = 0.00000112                                                                   1.1001 x 2-6
        2. normalized as 1.1001 x 2-6
        3. set the sign bit
        4. store -6 in the exponent section as (-6 + 127 = 121) 011110012
        5. store the normalized binary form

                                                                  Steps to represent a number in IEEE standard form
                                                                  1. calculate the binary form of the number
                                                                  2. calculate the normalized binary form
                                                                  3. set the sign bit
                                                                  4. store the exponent (+127, store as an 8-bit binary)
                                                                  5. store the normalized binary form without the first 1

 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11
        4. from the number section, we have 1.112




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11
        4. from the number section, we have 1.112
        5. therefore the number is 1.112 x 211




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11
        4. from the number section, we have 1.112
        5. therefore the number is 1.112 x 211
        6. 1.112 = 1.75 and 211 = 2048




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11
        4. from the number section, we have 1.112
        5. therefore the number is 1.112 x 211
        6. 1.112 = 1.75 and 211 = 2048
        7. 1.75 x 2048 = 3584




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10001010 (= 138)
        3. the decimal exponent is 138 - 127 = 11
        4. from the number section, we have 1.112
        5. therefore the number is 1.112 x 211
        6. 1.112 = 1.75 and 211 = 2048
        7. 1.75 x 2048 = 3584




 MATH1003
                                                       3584
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10000000 (= 128)




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10000000 (= 128)
        3. the decimal exponent is 128 - 127 = 1




 MATH1003
10110100101011010100101010111010101111011011101111011101110111101110111011110111111010110100101011110110110101111011010100111111011010100110101001




                                      Real Numbers
      0 1 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
      Determine the real number
        1. since the sign bit is 0, we know this is a positive number
        2. the exponent section is 10000000 (= 128)
        3. the decimal exponent is 128 - 127 = 1
        4. from the number section, we have 1.11001




 MATH1003
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers
Math1003 1.16 - Real Numbers

More Related Content

What's hot

Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
ekul
 
Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1
Abdul Khan
 
Data Representation
Data RepresentationData Representation
Data Representation
Praveen M Jigajinni
 
Data representation
Data representationData representation
Data representation
shashikant pabari
 
Data representation
Data representationData representation
Data representation
rozanadiana
 
Session2
Session2Session2
Session2
daviessegera
 
Dr.naveen electronics binary codes
Dr.naveen electronics binary codesDr.naveen electronics binary codes
Dr.naveen electronics binary codes
NAVEEN KUMAR
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representation
iarthur
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data Representation
Mr McAlpine
 
Gr2512211225
Gr2512211225Gr2512211225
Gr2512211225
IJERA Editor
 
Data representation computer architecture
Data representation  computer architectureData representation  computer architecture
Data representation computer architecture
study cse
 
Data Representation
Data RepresentationData Representation
Data Representation
Dilum Bandara
 
Lec 02 data representation part 2
Lec 02 data representation part 2Lec 02 data representation part 2
Lec 02 data representation part 2
Abdul Khan
 
Dld lecture notes
Dld lecture notesDld lecture notes
Dld lecture notes
shwetagautam33
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03
thearticlenow
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
Prof. Dr. K. Adisesha
 
Digital electronics
Digital electronicsDigital electronics
Digital electronics
Sukriti Dhang
 
Only floating point lecture 7 (1)
Only floating point lecture 7 (1)Only floating point lecture 7 (1)
Only floating point lecture 7 (1)
talhashahid40
 
Data Representation
Data RepresentationData Representation
Data Representation
Education Front
 
Codes r005
Codes  r005Codes  r005
Codes r005
arunachalamr16
 

What's hot (20)

Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 
Lec 02 data representation part 1
Lec 02 data representation part 1Lec 02 data representation part 1
Lec 02 data representation part 1
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Data representation
Data representationData representation
Data representation
 
Data representation
Data representationData representation
Data representation
 
Session2
Session2Session2
Session2
 
Dr.naveen electronics binary codes
Dr.naveen electronics binary codesDr.naveen electronics binary codes
Dr.naveen electronics binary codes
 
Computer Systems Data Representation
Computer Systems   Data RepresentationComputer Systems   Data Representation
Computer Systems Data Representation
 
[1] Data Representation
[1] Data Representation[1] Data Representation
[1] Data Representation
 
Gr2512211225
Gr2512211225Gr2512211225
Gr2512211225
 
Data representation computer architecture
Data representation  computer architectureData representation  computer architecture
Data representation computer architecture
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Lec 02 data representation part 2
Lec 02 data representation part 2Lec 02 data representation part 2
Lec 02 data representation part 2
 
Dld lecture notes
Dld lecture notesDld lecture notes
Dld lecture notes
 
Data representation moris mano ch 03
Data representation   moris mano ch  03Data representation   moris mano ch  03
Data representation moris mano ch 03
 
Data representation in computers
Data representation in computersData representation in computers
Data representation in computers
 
Digital electronics
Digital electronicsDigital electronics
Digital electronics
 
Only floating point lecture 7 (1)
Only floating point lecture 7 (1)Only floating point lecture 7 (1)
Only floating point lecture 7 (1)
 
Data Representation
Data RepresentationData Representation
Data Representation
 
Codes r005
Codes  r005Codes  r005
Codes r005
 

Viewers also liked

Math1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific NotationMath1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific Notation
gcmath1003
 
Math1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number SystemMath1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number System
gcmath1003
 
Math1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of NumbersMath1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of Numbers
gcmath1003
 
Math1003 welcome-13 w
Math1003 welcome-13 wMath1003 welcome-13 w
Math1003 welcome-13 w
gcmath1003
 
Math1003 1.4 - Number Systems
Math1003 1.4 - Number SystemsMath1003 1.4 - Number Systems
Math1003 1.4 - Number Systems
gcmath1003
 
Math1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of NumbersMath1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of Numbers
gcmath1003
 
Math1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number SystemMath1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number System
gcmath1003
 
Math1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number SystemMath1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number System
gcmath1003
 
Math1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to DecimalMath1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to Decimal
gcmath1003
 
Math1003 1.12 - Binary Addition
Math1003 1.12 - Binary AdditionMath1003 1.12 - Binary Addition
Math1003 1.12 - Binary Addition
gcmath1003
 
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion ErrorMath1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
gcmath1003
 
Math1003 - An Intro to Number Systems
Math1003 - An Intro to Number SystemsMath1003 - An Intro to Number Systems
Math1003 - An Intro to Number Systems
gcmath1003
 
Math1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex ConversionMath1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex Conversion
gcmath1003
 
Math1003 1.3 - Exponents
Math1003 1.3 - ExponentsMath1003 1.3 - Exponents
Math1003 1.3 - Exponents
gcmath1003
 
Math1003 1.4 - Order of Operations
Math1003 1.4 - Order of OperationsMath1003 1.4 - Order of Operations
Math1003 1.4 - Order of Operations
gcmath1003
 
Math1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, PrecisionMath1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, Precision
gcmath1003
 
Math1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary ConversionMath1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary Conversion
gcmath1003
 
Math1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and HexMath1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and Hex
gcmath1003
 

Viewers also liked (18)

Math1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific NotationMath1003 1.14 - Scientific Notation
Math1003 1.14 - Scientific Notation
 
Math1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number SystemMath1003 1.5 - Decimal Number System
Math1003 1.5 - Decimal Number System
 
Math1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of NumbersMath1003 1.1 - Sets of Numbers
Math1003 1.1 - Sets of Numbers
 
Math1003 welcome-13 w
Math1003 welcome-13 wMath1003 welcome-13 w
Math1003 welcome-13 w
 
Math1003 1.4 - Number Systems
Math1003 1.4 - Number SystemsMath1003 1.4 - Number Systems
Math1003 1.4 - Number Systems
 
Math1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of NumbersMath1003 1.2 - Properties of Numbers
Math1003 1.2 - Properties of Numbers
 
Math1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number SystemMath1003 1.6 - Binary Number System
Math1003 1.6 - Binary Number System
 
Math1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number SystemMath1003 1.7 - Hexadecimal Number System
Math1003 1.7 - Hexadecimal Number System
 
Math1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to DecimalMath1003 1.8 - Converting from Binary and Hex to Decimal
Math1003 1.8 - Converting from Binary and Hex to Decimal
 
Math1003 1.12 - Binary Addition
Math1003 1.12 - Binary AdditionMath1003 1.12 - Binary Addition
Math1003 1.12 - Binary Addition
 
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion ErrorMath1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
Math1003 1.17 - Truncation, Rounding, Overflow, & Conversion Error
 
Math1003 - An Intro to Number Systems
Math1003 - An Intro to Number SystemsMath1003 - An Intro to Number Systems
Math1003 - An Intro to Number Systems
 
Math1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex ConversionMath1003 1.10 - Binary to Hex Conversion
Math1003 1.10 - Binary to Hex Conversion
 
Math1003 1.3 - Exponents
Math1003 1.3 - ExponentsMath1003 1.3 - Exponents
Math1003 1.3 - Exponents
 
Math1003 1.4 - Order of Operations
Math1003 1.4 - Order of OperationsMath1003 1.4 - Order of Operations
Math1003 1.4 - Order of Operations
 
Math1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, PrecisionMath1003 1.13 - Significant Digits, Accuracy, Precision
Math1003 1.13 - Significant Digits, Accuracy, Precision
 
Math1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary ConversionMath1003 1.11 - Hex to Binary Conversion
Math1003 1.11 - Hex to Binary Conversion
 
Math1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and HexMath1003 1.9 - Converting Decimal to Binary and Hex
Math1003 1.9 - Converting Decimal to Binary and Hex
 

Similar to Math1003 1.16 - Real Numbers

Variables in Visual Basic Programming
Variables in Visual Basic ProgrammingVariables in Visual Basic Programming
Variables in Visual Basic Programming
Kasun Ranga Wijeweera
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
Kyle
 
Unit2 test flashcards
Unit2 test flashcardsUnit2 test flashcards
Unit2 test flashcards
ThomasVizza
 
Development of a static code analyzer for detecting errors of porting program...
Development of a static code analyzer for detecting errors of porting program...Development of a static code analyzer for detecting errors of porting program...
Development of a static code analyzer for detecting errors of porting program...
PVS-Studio
 
How To Subnet A Class A, B
How To Subnet A Class A, BHow To Subnet A Class A, B
How To Subnet A Class A, B
Tyrone Turner
 
Bit manipulation
Bit manipulationBit manipulation
Bit manipulation
Priyanka Yadav
 
Represntasi data bilangan.pptx
Represntasi data bilangan.pptxRepresntasi data bilangan.pptx
Represntasi data bilangan.pptx
LielyZaliyantiPetroZ
 
Lesson 11. Pattern 3. Shift operations
Lesson 11. Pattern 3. Shift operationsLesson 11. Pattern 3. Shift operations
Lesson 11. Pattern 3. Shift operations
PVS-Studio
 
Int 2 data representation 2010
Int 2 data representation 2010Int 2 data representation 2010
Int 2 data representation 2010
iarthur
 
Network Slides
Network SlidesNetwork Slides
Network Slides
iarthur
 
Subnetting Made Easy
Subnetting Made EasySubnetting Made Easy
Subnetting Made Easy
heidionthego
 
Beyond Floating Point – Next Generation Computer Arithmetic
Beyond Floating Point – Next Generation Computer ArithmeticBeyond Floating Point – Next Generation Computer Arithmetic
Beyond Floating Point – Next Generation Computer Arithmetic
inside-BigData.com
 
Computer_Programming_Fundamentals CHAPTER 2.pptx
Computer_Programming_Fundamentals CHAPTER 2.pptxComputer_Programming_Fundamentals CHAPTER 2.pptx
Computer_Programming_Fundamentals CHAPTER 2.pptx
BernardVelasco1
 
Data type
Data typeData type
Data type
myrajendra
 
Ieee+floating
Ieee+floatingIeee+floating
Ieee+floating
phamhoang12341
 
computer architecture organization in Ece
computer architecture organization in Ececomputer architecture organization in Ece
computer architecture organization in Ece
Bayesayohannis
 
004 NUMBER SYSTEM (1).pdf
004 NUMBER SYSTEM (1).pdf004 NUMBER SYSTEM (1).pdf
004 NUMBER SYSTEM (1).pdf
MaheShiva
 
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptxUNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
KaameshwaranKaameshw
 
data representation
 data representation data representation
data representation
Haroon_007
 
Chapter 2 Part2 A
Chapter 2 Part2 AChapter 2 Part2 A
Chapter 2 Part2 A
ececourse
 

Similar to Math1003 1.16 - Real Numbers (20)

Variables in Visual Basic Programming
Variables in Visual Basic ProgrammingVariables in Visual Basic Programming
Variables in Visual Basic Programming
 
Topic 1 Data Representation
Topic 1 Data RepresentationTopic 1 Data Representation
Topic 1 Data Representation
 
Unit2 test flashcards
Unit2 test flashcardsUnit2 test flashcards
Unit2 test flashcards
 
Development of a static code analyzer for detecting errors of porting program...
Development of a static code analyzer for detecting errors of porting program...Development of a static code analyzer for detecting errors of porting program...
Development of a static code analyzer for detecting errors of porting program...
 
How To Subnet A Class A, B
How To Subnet A Class A, BHow To Subnet A Class A, B
How To Subnet A Class A, B
 
Bit manipulation
Bit manipulationBit manipulation
Bit manipulation
 
Represntasi data bilangan.pptx
Represntasi data bilangan.pptxRepresntasi data bilangan.pptx
Represntasi data bilangan.pptx
 
Lesson 11. Pattern 3. Shift operations
Lesson 11. Pattern 3. Shift operationsLesson 11. Pattern 3. Shift operations
Lesson 11. Pattern 3. Shift operations
 
Int 2 data representation 2010
Int 2 data representation 2010Int 2 data representation 2010
Int 2 data representation 2010
 
Network Slides
Network SlidesNetwork Slides
Network Slides
 
Subnetting Made Easy
Subnetting Made EasySubnetting Made Easy
Subnetting Made Easy
 
Beyond Floating Point – Next Generation Computer Arithmetic
Beyond Floating Point – Next Generation Computer ArithmeticBeyond Floating Point – Next Generation Computer Arithmetic
Beyond Floating Point – Next Generation Computer Arithmetic
 
Computer_Programming_Fundamentals CHAPTER 2.pptx
Computer_Programming_Fundamentals CHAPTER 2.pptxComputer_Programming_Fundamentals CHAPTER 2.pptx
Computer_Programming_Fundamentals CHAPTER 2.pptx
 
Data type
Data typeData type
Data type
 
Ieee+floating
Ieee+floatingIeee+floating
Ieee+floating
 
computer architecture organization in Ece
computer architecture organization in Ececomputer architecture organization in Ece
computer architecture organization in Ece
 
004 NUMBER SYSTEM (1).pdf
004 NUMBER SYSTEM (1).pdf004 NUMBER SYSTEM (1).pdf
004 NUMBER SYSTEM (1).pdf
 
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptxUNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
UNIT-I U20EST109 - PROBLEM SOLVING APPROACH - Copy (1).pptx
 
data representation
 data representation data representation
data representation
 
Chapter 2 Part2 A
Chapter 2 Part2 AChapter 2 Part2 A
Chapter 2 Part2 A
 

Recently uploaded

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
NelTorrente
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
christianmathematics
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
ArianaBusciglio
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 

Recently uploaded (20)

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
MATATAG CURRICULUM: ASSESSING THE READINESS OF ELEM. PUBLIC SCHOOL TEACHERS I...
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
What is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptxWhat is the purpose of studying mathematics.pptx
What is the purpose of studying mathematics.pptx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 

Math1003 1.16 - Real Numbers