Why is the value zero not possible with computers?

AI Thread Summary
The discussion revolves around the representation of numbers in computers, particularly focusing on the concept of zero and floating-point arithmetic. It highlights that while computers can store integers exactly, floating-point numbers are approximations due to their structure, which includes a mantissa and exponent. This leads to the inability to represent certain values, including zero, precisely in calculations. The IEEE 754 standard allows for signed zeros, but practical issues arise in software like MATLAB, where functions may return very small values instead of exact zeros due to rounding errors. The conversation also touches on the potential for using rational numbers or symbolic computation to overcome these limitations, emphasizing that the representation issues are more about the software's handling of numbers rather than the hardware's capability to store them. Overall, the thread underscores the complexities of numerical representation in computing and the implications for mathematical accuracy in programming.
fisico30
Messages
362
Reaction score
0
Hello Forum,
any number that a computer deals with is just an approximation...in what sense?

Why is the number zero not possible? The number zero is often a very very very small number (10^-19) but never exactly zero. Why?

thanks,
fisico30
 
Computer science news on Phys.org
I think the issue is with floating point numbers. They consist of a mantissa and exponent. While you can set the mantissa to zeros an exponent of zero sets the number equal to 1. So the only way to get near zero is to have a large negative exponent. That number format cannot precisely represent zero. I would be surprised if there are not ways to get around this.
 
thank you.
I was doing some MATLAB and looking for zeros but all I could find was very small values, no zeros. The function I was using was supposed to give some zeros but it didn't.

Fisico30
 
Integral said:
I think the issue is with floating point numbers. They consist of a mantissa and exponent. While you can set the mantissa to zeros an exponent of zero sets the number equal to 1.
No, that's not right.

Conceptually, floating point numbers are {sign} {mantissa} X 2{exponent}. Per this wiki page (http://en.wikipedia.org/wiki/IEEE_754-1985), zero can be represented as either positive zero or negative zero, with sign being either 0 or 1, respectively, mantissa being zero for both, and exponent being zero for both.
Integral said:
So the only way to get near zero is to have a large negative exponent. That number format cannot precisely represent zero. I would be surprised if there are not ways to get around this.
 
fisico30 said:
thank you.
I was doing some MATLAB and looking for zeros but all I could find was very small values, no zeros. The function I was using was supposed to give some zeros but it didn't.
This isn't a problem of the computer not being able to store zero (which it can), but of the software not being able to calculate precisely enough to find a value for which the function value was exactly zero.
 
fisico30 said:
any number that a computer deals with is just an approximation...in what sense?
This is not true in general. Computers can store many integer values exactly. As already mentioned in this thread, the problem comes with how non-integer real numbers are stored.
fisico30 said:
Why is the number zero not possible? The number zero is often a very very very small number (10^-19) but never exactly zero. Why?
10^(-19) is NOT zero. It's pretty small, but it isn't zero.
 
IEEE 754 specifies signed zeroes in its floating point standard.
+0 = -0 = 0, so it is possible for zero to be represented on a computer.

How else would we get "Error: Divide by zero" messages?
 
fisico30 said:
Hello Forum,
any number that a computer deals with is just an approximation...in what sense?

Why is the number zero not possible? The number zero is often a very very very small number (10^-19) but never exactly zero. Why?

thanks,
fisico30

Mark has pretty much covered it except for pointing out that SOME floating point numbers are represented exactly, NOT approximately as you seem to think, while some ARE represented as approximations.

All integers are represented exactly UP TO THE LIMIT of the computers ability to express integers. For an 8-bit computer (the VERY early kind) that was 256. For a 16-bit computer, that's 65536, and so forth.

Perhaps it will help you understand the "approximation" business if you think of a decimal computer that has the ability to represent 10 significant digits.

How would that computer represent the answer when doing the division 1/3 ? Well, it would be .3333333333 which is only an approximation because of the necessary rounding. Binary computer have the same problem, just in binary.
 
  • #10
phinds said:
How would that computer represent the answer when doing the division 1/3?
One option, available on some calculators, and in some libraries for computers, is fractional math, where numbers are are stored as fractions with integer numerators and denomiators. I'm not sure how practical this is versus being a novelty feature found on some calculators.
 
  • #11
rcgldr said:
One option, available on some calculators, and in some libraries for computers, is fractional math, where numbers are are stored as fractions with integer numerators and denomiators. I'm not sure how practical this is versus being a novelty feature found on some calculators.

Seems pretty likely that the OP is talking about normal computers, so this is not relevant.
 
  • #12
phinds said:
Seems pretty likely that the OP is talking about normal computers, so this is not relevant.

It is relevant for 'normal' computers as it is application dependent. Standard Matlab (which the OP uses) uses the IEEE format for calculation, which will result in the observed 'non-zero' zeros. However, the Matlab Symbolic Toolbox uses a bignum format and may well (depending upon the type of the number) store numbers as rationals.

Mathcad's symbolic processor works in a similar fashion as does Mathematica and at least a few other symbolic applications.
 
  • #13
Seems to me that this is a roundoff-error issue. I've seen it a lot myself.

The only rational numbers that can be represented with a finite number of trailing digits in some number-base system are those whose denominators are nonnegative-integer powers of the base. Otherwise one gets an infinitely-repeating finite sequence of digits after some finite number of initial digits. Irrational numbers are even worse. They cannot be represented with a finite number of trailing digits in *any* base.

It's possible for computers to work with integers and floating-point numbers with arbitrarily high numbers of digits, limited only by the available memory. One has to work with arrays of digits, but it's feasible. It's also possible for computers to work with exact rational numbers as pairs of integers. It's easy to write functions that implement the rules for manipulating fractions.

You can find all this in The GNU MP Bignum Library and in various computer-algebra packages.

I implemented rational numbers myself for the C++ version of my semisimple-Lie-algebra software, because I wanted something faster than GMP. I did it as a template class, with a parameter: the type of integer.
 
  • #14
NemoReally said:
It is relevant for 'normal' computers as it is application dependent. Standard Matlab (which the OP uses) uses the IEEE format for calculation, which will result in the observed 'non-zero' zeros. However, the Matlab Symbolic Toolbox uses a bignum format and may well (depending upon the type of the number) store numbers as rationals.

Mathcad's symbolic processor works in a similar fashion as does Mathematica and at least a few other symbolic applications.

Fair enough, but I was talking about the computer at the hardware level, as I believe the OP was, not applications.
 
  • #15
lpetrich said:
Seems to me that this is a roundoff-error issue ...

Yes, exactly.
 
Back
Top