So Python has positive and negative infinity:
float("inf"), float("-inf")
This just seems like the type of feature that has to have some caveat. Is there anything I should be aware of?
|
So Python has positive and negative infinity:
This just seems like the type of feature that has to have some caveat. Is there anything I should be aware of? |
|||
|
|
|
You can still get not-a-number (NaN) values from simple arithmetic involving
Note that you will normally not get an
The |
||||
|
|
|
Python's implementation follows the IEEE-754 standard pretty well, which you can use as a guidance. Recently, a fix has been applied that allows "infinity" as well as "inf", but that's of minor importance here. Comparison for inequalityWhen dealing with infinity and greater-than
Comparison for equalityWhen compared for equality, Calculations with infinityAny calculation with infinity yields infinity, except when the result would be undefined (as with multiplied by zero, see other example in this thread), which yields |
|||||||||||||||||||
|
|
So does C99. The IEEE 754 floating point representation used by all modern processors has several special bit patterns reserved for positive infinity (sign=0, exp=~0, frac=0), negative infinity (sign=1, exp=~0, frac=0), and many NaN (Not a Number: exp=~0, frac≠0). All you need to worry about: some arithmetic may cause floating point exceptions/traps, but those aren't limited to only these "interesting" constants. |
|||||
|