What do these three special floating-point values mean: positive infinity, negative infinity, NaN? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:28:41Z http://stackoverflow.com/feeds/question/1007586 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati 1 What do these three special floating-point values mean: positive infinity, negative infinity, NaN? Johanna 2009-06-17T14:58:12Z 2009-06-18T14:29:50Z <p>How can we use them in our codes, and what will cause NaN(not a number)?</p> http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati/1007610#1007610 11 Answer by coobird for What do these three special floating-point values mean: positive infinity, negative infinity, NaN? coobird 2009-06-17T15:01:30Z 2009-06-17T15:07:34Z <ul> <li>Positive infinity means going to infinity in the positive direction -- going into values that are larger and larger in magnitude in the positive direction.</li> <li>Negative infinity means going to infinity in the negative direction -- going into values that are larger and larger in magnitude in the negative direction.</li> <li><a href="http://en.wikipedia.org/wiki/Not%5Fa%5Fnumber" rel="nofollow">Not-a-number</a> (NaN) is something that is undefined, such as the result of <code>0/0</code>.</li> </ul> <p>And the constants from the specification of the <a href="http://java.sun.com/javase/6/docs/api/java/lang/Float.html" rel="nofollow"><code>Float</code></a> class:</p> <ul> <li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Float.html#NEGATIVE%5FINFINITY" rel="nofollow"><code>Float.NEGATIVE_INFINITY</code></a></li> <li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Float.html#POSITIVE%5FINFINITY" rel="nofollow"><code>Float.POSITIVE_INFINITY</code></a></li> <li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Float.html#NaN" rel="nofollow"><code>Float.NaN</code></a></li> </ul> <p>More information can be found in the <a href="http://en.wikipedia.org/wiki/IEEE%5F754-1985" rel="nofollow">IEEE-754 page in Wikipedia</a>.</p> <p>Here's a little program to illustrate the three constants:</p> <pre><code>System.out.println(0f / 0f); System.out.println(1f / 0f); System.out.println(-1f / 0f); </code></pre> <p>Output:</p> <pre><code>NaN Infinity -Infinity </code></pre> http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati/1007637#1007637 1 Answer by Adam for What do these three special floating-point values mean: positive infinity, negative infinity, NaN? Adam 2009-06-17T15:06:13Z 2009-06-17T15:06:13Z <ul> <li>1/0 will result in positive infinity.</li> <li>0/0 will result in Nan. You can use NaN as any other number, eg: NaN+NaN=NaN, NaN+2.0=NaN</li> <li>-1/0 will result in negative infinity.</li> </ul> <p>Infinity (in java) means that the result of an operation will be such an extremely large positive or negative number that it cannot be represented normally.</p> http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati/1007647#1007647 0 Answer by Cameron for What do these three special floating-point values mean: positive infinity, negative infinity, NaN? Cameron 2009-06-17T15:08:19Z 2009-06-18T14:29:50Z <p><a href="http://www.concentric.net/~Ttwang/tech/javafloat.htm" rel="nofollow">This</a> may be a good reference if you want to learn more about floating point numbers in Java.</p> <p>Positive Infinity is a positive number so large that it can't be represented normally. Negative Infinity is a negative number so large that it cannot be represented normally. NaN means "Not a Number" and results from a mathematical operation that doesn't yield a number- like dividing 0 by 0.</p> <p>In Java, the Double and Float classes both have constants to represent all three cases. They are POSITIVE_INFINITY, NEGATIVE_INFINITY, and NaN.</p> http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati/1007656#1007656 2 Answer by David Cournapeau for What do these three special floating-point values mean: positive infinity, negative infinity, NaN? David Cournapeau 2009-06-17T15:10:17Z 2009-06-17T15:10:17Z <p>The idea is to represent special numbers which can arise naturally from operations on "normal" numbers. You could see infinity (both positive and negative) as "overflow" of the floating point representation, the idea being that in at least some conditions, having such a value returned by a function still gives meaningful result. They still have some ordering properties, for example (so they won't screw sorting operations, for example).</p> <p>Nan is very particular: if x is Nan, x == x is false (that's actually one way to test for nan, at least in C, again). This can be quite confusing if you are not used to floating point peculiarities. Unless you do scientific computation, I would say that having Nan returned by an operation is a bug, at least in most cases that come to mind. Nan can come for various operations: 0/0, inf - inf, inf/inf, 0 * inf. Nan does not have any ordering property, either.</p> http://stackoverflow.com/questions/1007586/what-do-these-three-special-floating-point-values-mean-positive-infinity-negati/1007661#1007661 0 Answer by Freddy for What do these three special floating-point values mean: positive infinity, negative infinity, NaN? Freddy 2009-06-17T15:11:29Z 2009-06-17T15:11:29Z <p>You can use them as any other number:</p> <p>e.g:</p> <pre><code>float min = Float.NEGATIVE_INFINITY; float max = Float.POSITIVE_INFINITY; float nan = Float.NaN; </code></pre>