Assume we are using the simple model for floating-point representation as given in this book (the representation uses a 14-bit format, 5 bits for the exponent with a bias of 15, a normalized mantissa of 8 bits, and a single sign bit for the number): a) Show how the computer would represent the numbers 100.0 and 0.25 using this floating-point format.
![Assume we are using the simple model for floating-point
representation as given in this book (the representation uses
a 14-bit format, 5 bits for the exponent with a bias of 15, a
normalized mantissa of 8 bits, and a single sign bit for the
number):
a) Show how the computer would represent the numbers
100.0 and 0.25
using this floating-point format.
b) Show how the computer would add the two floating-
point numbers in part a by changing one of the numbers
so they are both expressed using the same power of 2.
c) Show how the computer would represent the sum in part
b using the given floating-point representation. What
decimal value for the sum is the computer actually
storing? Explain.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fba13667f-f60c-45eb-87f2-7662478f2e6d%2F47c1f947-2626-4538-8bed-9679bf8106df%2Fqhyr3g_processed.jpeg&w=3840&q=75)
![](/static/compass_v2/shared-icons/check-mark.png)
a) Converting given 100.0 into binary.
10010= 11001002
Converting binary number to the power of 2
1100100.0 = 0.1100100*27
Therefore the value of the exponent is 7.
Convert the exponent into 15 bits excess. So by adding 15 to 7 it becomes 22
15+7=22
Converting 22 to binary = 101102
Sign bit = 0
Exponent(5 bits) = 10110
Significant bits of 8 = 11001000
So the 14-bit floating-point representation of 100.0 is 01011011001000
Now, Converting 0.25 to binary
0.2510 = 0.012
Converting binary number to the power of 2
0.01 = 0.1*2-1
Value of exponent is -1.
Convert the exponent into 15 bits excess. So by adding 15 to -1 it becomes 14
15-1=14
142=011102
Sign bit = 0
Exponent(5 bits) = 01110
Significant bits of 8 = 10000000
So the 14-bit floating-point representation of 0.25 is 00111010000000
Trending now
This is a popular solution!
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)