Computer Architechture: Size of Mantissa

  • Thread starter wclawson
  • Start date
  • Tags
    Computer
In summary, computer architecture refers to the design and structure of a computer system. The size of mantissa, also known as precision, is an important aspect of computer architecture as it determines the level of accuracy for numerical calculations. A larger mantissa allows for more precise calculations, but also requires more storage space and processing power. The trade-off between precision and resources is a key consideration in computer architecture.
  • #1
wclawson
17
0

Homework Statement


Floating Point representation:
Given Xmax/Xmin=2^4076, what is the size of the mantissa? How many numbers can exist?
If mantissa is 0.xxx instead of 1.xxx, how many numbers can exist?

Homework Equations



(-1)S x 1.M x BE

The Attempt at a Solution



I'm not sure, but is this the correct method to use?
{(-1)-S'(1.M')(BE'-E'')+(-1)-S''(1.M'')}BE''
 
Physics news on Phys.org
  • #2
wclawson said:

Homework Statement


Floating Point representation:
Given Xmax/Xmin=2^4076, what is the size of the mantissa? How many numbers can exist?
If mantissa is 0.xxx instead of 1.xxx, how many numbers can exist?

Homework Equations



(-1)S x 1.M x BE

The Attempt at a Solution



I'm not sure, but is this the correct method to use?
{(-1)-S'(1.M')(BE'-E'')+(-1)-S''(1.M'')}BE''

Do you have a typo in your given information about Xmax/Xmin? The exponent should be 4096, I believe. 4096 = 212, which means 12 bits for the exponent of your floating point number.

You didn't mention how many bits there are overall in your floating point number, but the typical sizes are 32 bits, 64 bits, and sometimes 80 bits. If 1 bit is used for the sign, and 12 bits for the exponent, how many bits are left for the mantissa?

If the mantissa is assumed to be 1.xxx rather than 0.xxx, how many bits do you save by doing this?
 
  • #3
Mark44 said:
Do you have a typo in your given information about Xmax/Xmin? The exponent should be 4096, I believe. 4096 = 212, which means 12 bits for the exponent of your floating point number.

You didn't mention how many bits there are overall in your floating point number, but the typical sizes are 32 bits, 64 bits, and sometimes 80 bits. If 1 bit is used for the sign, and 12 bits for the exponent, how many bits are left for the mantissa?

If the mantissa is assumed to be 1.xxx rather than 0.xxx, how many bits do you save by doing this?

Yes, thank you for noticing my mistake it should be 4096.

So a FP number with 32 bits would have 32-12-1=19 bits, but does that include the 1 preceding the M (1.M)?

By having 0.xx instead of .xx, does that mean that only half the amount of numbers represented with 1.xx can be used? What is it's effect of number range?
 
  • #4
wclawson said:
Yes, thank you for noticing my mistake it should be 4096.

So a FP number with 32 bits would have 32-12-1=19 bits, but does that include the 1 preceding the M (1.M)?
No, it doesn't. That bit is assumed to be 1, and this gives you an extra bit for the mantissa.
wclawson said:
By having 0.xx instead of .xx, does that mean that only half the amount of numbers represented with 1.xx can be used? What is it's effect of number range?
Yes. There's no effect on the range, as xmin and xmax are still the same. It gives you a little more precision though.
 
  • #5
Mark44 said:
No, it doesn't. That bit is assumed to be 1, and this gives you an extra bit for the mantissa.
Yes. There's no effect on the range, as xmin and xmax are still the same. It gives you a little more precision though.

Ok, I see. Let me make sure I have this straight.

Since there are 12 bits for E, that means the bias is 2047.
Therefore the largest number possible to display is 22047 times 1.9999... (from the mantissa), right?
 
  • #6
wclawson said:
Ok, I see. Let me make sure I have this straight.

Since there are 12 bits for E, that means the bias is 2047.
I think this is right.
wclawson said:
Therefore the largest number possible to display is 22047 times 1.9999... (from the mantissa), right?
It wouldn't be 1.9999... The representation is binary, not decimal. It would be 1.1111...111, with 20 1's after the binary point. (Remember, that leading one to the left of the binary point is assumed.)
 
  • #7
Mark44 said:
I think this is right.
It wouldn't be 1.9999... The representation is binary, not decimal. It would be 1.1111...111, with 20 1's after the binary point. (Remember, that leading one to the left of the binary point is assumed.)

Sorry, I should have said 1.9, written in base 10. For finding the max number, this rounds to 2 and is multiplied by the largest exponent (22047)?

Thanks, you have been a huge help.
 
Last edited:
  • #8
Sure, you're welcome!

Here's a link to some related material on the IEEE 754 standard for floating point matters. This particular page is about 32-bit floats, similar to but not identical to what you're doing. http://en.wikipedia.org/wiki/Binary32
 

Related to Computer Architechture: Size of Mantissa

1. What is the size of a mantissa in computer architecture?

The size of a mantissa in computer architecture refers to the number of bits used to represent the fractional part of a floating-point number. This size can vary depending on the specific computer architecture and can range from 23 bits to 52 bits.

2. Why is the size of a mantissa important in computer architecture?

The size of a mantissa is important because it determines the precision of floating-point numbers. A larger mantissa allows for more accurate representation of numbers, but also requires more memory and processing power.

3. How does the size of a mantissa affect the range of values that can be represented?

The size of a mantissa is directly related to the range of values that can be represented. A larger mantissa allows for a wider range of numbers to be represented, including very small and very large numbers.

4. Can the size of a mantissa be changed in computer architecture?

Yes, the size of a mantissa can be changed in some computer architectures. However, this usually requires special hardware or software and can impact the overall performance of the system.

5. How does the size of a mantissa differ from the size of an exponent in computer architecture?

The size of a mantissa and the size of an exponent are both important components of a floating-point number, but they serve different purposes. The mantissa represents the precision of the number, while the exponent represents the magnitude of the number.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
9
Views
1K
Replies
4
Views
1K
  • Computing and Technology
Replies
4
Views
884
  • Engineering and Comp Sci Homework Help
Replies
1
Views
911
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
10
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
13
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
5K
Back
Top