I posted an HP-11C/41C program in the Software Library (it's now the first entry) and asked for feedback from anyone who has a real use for this...where n! >= 1E100
Any one got any news for me?
(And for those smart guys with HP-71 or newer calcs with number range up to 1E500, same applies to you but for >= 1E500 !)
Gordon.
Factorials of Large Numbers
|
|
« Next Oldest | Next Newest »
|
▼
Post: #4
11-20-2002, 05:41 PM
▼
Post: #5
11-25-2002, 10:05 PM
Hi... Whoa, this brings back memories of a 'wasted' summer in high school (1980?) tinkering with my ol' TI58! (Didn't get my 41C til Christmas in my senior year - and then fooling w/system architecture/SP/ byte jumping etc took over...) Wrote various "big factorial" programs, including log(n!) programs and approximations. Stirling's Approx. works progressively better for larger and larger values of n, but has to be 'warped' for moderately useful performance for, say, n<69.
n! ~= sqrt(2*pi*n) * (n/e)^n
Anyway I still remember that 10,000!~= 2.645x10^35659
Nifty little thing: Thus: int(n/5)+int(n/25)+int(n/125)+int(n/625)+int(n/5^5)... gives us number of trailing zeros in n! . 1000! has, IIRC, 249 trailing zeros and 10,000! has 2499 trailing zeros. Factorials are neat. Remember finding out about companion gamma function (I *knew* there must be something continuous over n>=0 for something factorial-like.) That was a fun summer...
Bill Wiese
▼
Post: #6
12-07-2002, 12:43 PM
Hi Bill, I'm glad you enjoyed my message. |