Tagged Questions

-1
votes
1answer
156 views

Fast algorithms for computing the factorial

I found this page describing a number of algorithms for computing the factorial. Unfortunately, the explanations are terse and I don't feel like sifting through line after line of …
1
vote
3answers
280 views

How can I calculate a factorial in C# using a library call?

I need to calculate the factorial of numbers up to around 100! in order to determine if a series of coin flip-style data is random, as per this Wikipedia entry on Bayesian probabil …
1
vote
4answers
110 views

what’s a good way to combinate through a set?

Given a set {a,b,c,d} What's a good way to produce {a,b,c,d,ab,ac,ad,bc,bd,cd,abc,abd,abcd}? A recursive algorithm, I think, but maybe some weird lambda thing would work better. I …
0
votes
2answers
52 views

Why am I getting two very different results from these two functions

this is copied from http://www.zenspider.com/ZSS/Products/RubyInline/Readme.html, the "home" of rubyinline, adding/moding as indicated in the comments require 'rubygems' #added th …
0
votes
3answers
149 views

get the consecutive factors ,c#

hi , i need to solve this question but im stuck at getting the factors , but what i need to do is... A positive number n is consecutive-factored if and only if it has factors, i …
1
vote
6answers
288 views

Can one know how large a factorial would be before calculating it?

I'm using GMP to calculate very large factorials (e.g. 234234!). Is there any way of knowing, before one does the calculation, how many digits long the result will (or might) be?
1
vote
3answers
310 views

C#: Recursive functions with Lambdas

The below does not compile: Func<int, int> fac = n => (n <= 1) ? 1 : n * fac(n - 1); Local variable 'fac' might not be initialized before accessing How can yo …
0
votes
5answers
469 views

Unable to make a factorial function in Python

My code import sys number=int(sys.argv[1]) if number == 0 fact=1 else fact=number for (x=1; x<number; x++) fact*=x; // mistake probably here print fa …
0
votes
1answer
106 views

Unable to increase AWK’s int-limit for factorial

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!. …
0
votes
6answers
363 views

Unable to make a factorial function in AWK

The code #!/usr/bin/awk # Sed and AWK by O'Reilly (p.179) # Example of what should happen: factorial 5 gives # factorial # Enter number: 3 # The factoria …
2
votes
8answers
513 views

working with very large integers in c#

Does anybody know of a way I can calculate very large integers in c# I am trying to calculate the factorial of numbers e.g. 5! = 5*4*3*2*1 = 120 with small numbers this is not a …
0
votes
5answers
261 views

Unable to get a factorial function to work in C

I cannot get the following code to work. #include <stdio.h> // I am not sure whethere I should void here or not. int main() { // when the first bug is solved, I put her …
0
votes
3answers
215 views

How is factorial computed?

say there is a function to calculate factorial(n) Does factorial(7) creates 7 function object for each of n from 1 to 7 and use those values when ever necessary (for factorial(8) …
3
votes
18answers
1k views

How would you write a non-recursive algorithm to calculate factorials?

How would you write a non-recursive algorithm to compute n!.
0
votes
7answers
1k views

When I calculate a large factorial, why do I get a negative number?

So, simple procedure, calculate a factorial number. Code is as follows. int calcFactorial(int num) { int total = 1; if (num == 0) { return 0; } for (num …