up vote 1 down vote favorite
1
share [g+] share [fb]

I run the AWK code and I get

The factorial of 200 is inf

This suggests me that AWK does not use the same int IEEE-standard -module as Python. It seems that AWK's limit is 170!.

How can you make AWK understand as large integers as Python?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

From here:

The internal representation of all numbers, including integers, uses double-precision floating-point numbers. On most modern systems, these are in IEEE 754 standard format.

Python can have integers of any length, depending on available memory. This is independent of IEEE 754. BTW, that standard gives the limit of a double precision float at about 10^(+/-308). The value of log10(factorial(171)) is > 309. See also Double Precision and What Every Scientist Should Know About Floating-Point Arithmetic.

link|improve this answer
@Dennis: IEEE 754 seems to be the same format which Python uses. -- I use the newest OS/X. It may the reason why AWK cannot calculate 200!, but Python can. – Masi Jun 25 '09 at 13:07
I've add some information to my answer. – Dennis Williamson Jun 25 '09 at 14:04
Thank you for your answer! – Masi Jun 27 '09 at 22:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.