| New Reply |
Why is the value zero not possible with computers? |
Share Thread | Thread Tools |
| Jan8-13, 04:20 PM | #1 |
|
|
Why is the value zero not possible with computers?
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 |
| Jan8-13, 04:40 PM | #2 |
|
Mentor
Blog Entries: 9
|
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.
|
| Jan8-13, 04:53 PM | #3 |
|
|
I'm not 100% if this is what you're looking but it might help:
http://www.johndcook.com/blog/2010/0...e-signed-zero/ |
| Jan8-13, 06:31 PM | #4 |
|
|
Why is the value zero not possible with computers?
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 |
| Jan8-13, 06:40 PM | #5 |
|
Mentor
|
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. |
| Jan8-13, 06:41 PM | #6 |
|
Mentor
|
|
| Jan8-13, 06:44 PM | #7 |
|
Mentor
|
|
| Jan8-13, 06:55 PM | #8 |
|
Recognitions:
|
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? |
| Jan8-13, 06:59 PM | #9 |
|
|
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. |
| Jan8-13, 11:22 PM | #10 |
|
Recognitions:
|
|
| Jan9-13, 12:21 AM | #11 |
|
|
|
| Jan9-13, 05:08 AM | #12 |
|
|
Mathcad's symbolic processor works in a similar fashion as does Mathematica and at least a few other symbolic applications. |
| Jan9-13, 05:14 AM | #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. |
| Jan9-13, 05:29 AM | #14 |
|
|
|
| Jan9-13, 05:30 AM | #15 |
|
|
|
| Jan9-13, 06:08 AM | #16 |
|
|
The Goldberg article is one of the "standard" references for programmers who want to understand floating point (non-integer arithmetic operations on IEEE conforming platforms):
http://docs.oracle.com/cd/E19957-01/..._goldberg.html This article is about practical applications - comparison of floats: http://www.cygnus-software.com/paper...ringfloats.htm |
| New Reply |
| Thread Tools | |
Similar Threads for: Why is the value zero not possible with computers?
|
||||
| Thread | Forum | Replies | ||
| The jet age of computers | General Discussion | 39 | ||
| Can computers only do what we tell them to? | General Discussion | 17 | ||
| Old Computers | Computing & Technology | 17 | ||
| IQ with Computers | Social Sciences | 7 | ||
| Do you think computers cause.... | Computing & Technology | 2 | ||