Tagged Questions

In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n.

learn more… | top users | synonyms

21
votes
13answers
2k views

Example of O(n!)?

What is an example (in code) of a O(n!) function? It should take appropriate number of operations to run in reference to n; that is, I'm asking about time complexity.
19
votes
3answers
4k views

Ruby factorial function

I'm going crazy: Where is the Ruby function for factorial? No, I don't need tutorial implementations, I just want the function from the library. It's not in Math! I'm starting to doubt, is it a ...
15
votes
20answers
3k views

How to find a factorial?

How can I write a program to find the factorial of any number?
11
votes
3answers
225 views

How to optimize this short factorial function in scala? (Creating 50000 BigInts)

I've compaired the scala version (BigInt(1) to BigInt(50000)).reduce(_ * _) to the python version reduce(lambda x,y: x*y, range(1,50000)) and it turns out, that the scala version took about 10 ...
10
votes
1answer
622 views

Can anyone explain this algorithm for calculating large factorials?

i came across the following program for calculating large factorials(numbers as big as 100).. can anyone explain me the basic idea used in this algorithm?? I need to know just the mathematics ...
9
votes
5answers
1k views

Calculate the factorial of an arbitrarily large number, showing all the digits

I was recently asked, in an interview, to describe a method to calculate the factorial of any arbitrarily large number; a method in which we obtain all the digits of the answer. I searched various ...
8
votes
3answers
1k 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 you make a recursive ...
7
votes
9answers
1k views

Calculating large factorials in C++

I understand this is a classic programming problem and therefore I want to be clear I'm not looking for code as a solution, but would appreciate a push in the right direction. I'm learning C++ and as ...
5
votes
3answers
104 views

How does recursion make the use of run-time memory unpredictable?

Quoting from Code Complete 2, int Factorial( int number ) { if ( number == 1 ) { return 1; } else { return number * Factorial( number - 1 ); } } In addition to being ...
5
votes
5answers
298 views

C#: Code to fit LOTS of files onto a DVD as efficiently as possible

I need to write an application that will take a list of files (some large, some small) and fit them onto DVDs (or CDs, or whatever) as efficiently as possible. The whole point of this application is ...
5
votes
4answers
214 views

Is there is some mathematical “optimum” base that would speed up factorial calculation?

Is there is some mathematical "optimum" base that would speed up factorial calculation? Background: Just for fun, I'm implementing my own bignum library. (-: Is this my first mistake? :-). I'm ...
4
votes
5answers
687 views

When calculating the factorial of 100 (100!) with Java using integers I get 0

When doing this: int x = 100; int result = 1; for (int i = 1; i < (x + 1); i++) { result = (result * i); } System.out.println(result); This is clearly because the ...
4
votes
6answers
370 views

Factorial of 170+

everytime I try to get the factorial of 171, I get INF. 170 works fine. Is it possible to get the factorial of 171+ in a script? How? My function: function factorial($n) { if ($n == 0) return 1; ...
4
votes
6answers
335 views

Problem with Recursion

I am running into a little pickle. For class I have an assignment (below), I came up with a solution but I keep getting an error, that says; "'factorial' : recursive on all control paths, function ...
4
votes
6answers
500 views

factorial method doesn't work well!

Hi this is a factorial method but it prints 0 in the console please help me thanks public class Demo { public static void main(String[] args) { Demo obj = new Demo(); ...
4
votes
2answers
129 views

Regexercise: factorials

This is an experimental new feature for StackOverlow: exercising your regex muscles by solving various classical problems. There is no one right answer, and in fact we should collect as many right ...
4
votes
5answers
357 views

C++ algorithm for N! orderings

I have a list of N items and I am wondering how I can loop through the list to get every combination. There are no doubles, so I need to get all N! orderings. Extra memory is no problem, I'm trying ...
4
votes
4answers
535 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'm using python.
4
votes
18answers
3k views

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

How would you write a non-recursive algorithm to compute n!?
3
votes
1answer
17 views

Using a list to synthesize a stack for recursion in Python? Examples?

For instance, this is my factorial function: def fact(n): if n<=1: return 1 else: return n*fact(n-1) But it crashes when n is too high. I'd like to emulate this exact same function ...
3
votes
5answers
147 views

Why is factorial recursive function less efficient than a normal factorial function?

I've got two functions that calculate the factorial of a number n. I can't see why the 'normal' function needs less time to calculate the factorial of a number n. This is the normal function: double ...
3
votes
6answers
356 views

Sum of factorials for large numbers

I want to calculate the sum of digits of N!. I want to do this for really large values of N, say N(1500). I am not using .NET 4.0. I cannot use the BigInteger class to solve this. Can this be ...
3
votes
4answers
395 views

Built-in factorial function in Haskell

I know this sounds like a stupid question, but here it is: Is there a built-in factorial in Haskell? Google gives me tutorials about Haskell explaining how I can implement it myself, and I could not ...
3
votes
5answers
153 views

Dynamic Java integer/long overflow checking versus performance

This is a rather theoretical question, so while the language is specifically Java, any general solution will suffice. Suppose I wanted to write a trivial factorial function: long factorial(int n) { ...
3
votes
7answers
214 views

factorial method resulting in error

I'm trying to get the factorial value of number 66, but my method resulting me an output 0. But whenever I try to get the factorial of 5, it is resulting me an output 120. Could anyone please tell me ...
3
votes
3answers
137 views

Why won't `let` work for naming internal recursive procedures?

Consider the following implementation of a function to compute factorial: [1] (define fac-tail (lambda (n) (define fac-tail-helper (lambda (n ac) (if (= 0 n) ac ...
3
votes
3answers
931 views

How to calculate the inverse factorial of a real number? [closed]

Is there some way to calculate the inverse factorials of real numbers? For example - 1.5 ! = 1.32934039 Is there some way to obtain 1.5 back if I have the value 1.32934039? I am trying ...
3
votes
1answer
2k 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 source code to ...
2
votes
5answers
118 views

StackOverflowError computing factorial of a BigInteger?

I am trying to write a Java program to calculate factorial of a large number. It seems BigInteger is not able to hold such a large number. The below is the (straightforward) code I wrote. public ...
2
votes
3answers
73 views

C Programming factorial outputting wrong values

int main (void) { int i; for (i=1; i<=20; i++) { int j; unsigned long long fac = 1; for ( j = 1; j<=i; ++j) { fac *= j; } printf ("%2i! = ...
2
votes
2answers
80 views

Growth of inverse factorial

Consider the inverse factorial function, f(n) = k where k! is the greatest factorial <= n. I've been told that the inverse factorial function is O(log n / log log n). Is it true? Or is it just a ...
2
votes
1answer
109 views

Tail recursion with Groovy

I coded 3 factorial algorithms: First, I expect to fail by Stack Overflow. No problem. Second, I try tail recusive call, convert previous algorithm from recursive to iterative. It doesn't work but I ...
2
votes
2answers
108 views

Count of combinations for case-sensitive string

As I remember, the count of combinations equal n! But, for I example I have string "abc". I want to get all the combinations with different registry: aBc or ABc etc So, abc is 3 chars. 3! = 1 * 2 * ...
2
votes
3answers
143 views

Computing lg(N!): Anyone have a Better Recursive Method?

I think the title of the post addresses my question. But just to reiterate, I am wondering if anyone has a better approach to this problem. /* Write a recursive program to compute lg( N! ) */ ...
2
votes
1answer
112 views

Factorial in bignum library

Ive tried to create my own implementation of a bignum library I cant seem to get the factorial to work. If I ask it to solve 4!, it gives out 96. It multiplies 4 twice. similarly, 5! is 600, not 120. ...
2
votes
4answers
163 views

Trying to get my head around recursion in Haskell?

I have used many recursive functions now but still have trouble getting my head around how such a function exactly works (i'm familiar with the second line (i.e. | n==0 = 1) but am not so familiar ...
2
votes
3answers
433 views

Pascal's triangle in C with combinations

#include <stdio.h> long factorial(int num) { int counter; int fact = 1; for (counter = num; counter > 0; counter--) fact *= counter; return fact; } float combinations(int n, ...
2
votes
1answer
325 views

Haskell: problems fully defining factorial in Continuation Passing Style

I've been trying to understad Functional Programming, Haskell and Continuation Passing Style in one big blob and my structured/OOP background is giving me a hard time. According to this I understand ...
2
votes
1answer
55 views

Unlambda d function

I think I need some elaboration on how the D function works in unlambda. Right now I'm trying to make a function (factorial) with the Y combinator, but it always results in some kind of infinite loop. ...
2
votes
5answers
291 views

Howto compute the factorial of x

how to get the value of an integer x, indicated by x!, it is the product of the numbers 1 to x. Example: 5! 1x2x3x4x5 = 120. int a , b = 1, c = 1, d = 1; printf("geheel getal x = "); scanf("%d", ...
2
votes
6answers
551 views

Fastest factorial implementation with 64-bit result in assembly

This is not homework, just something I though of. So, straight computing factorial is not exactly fast; memoization can help, but if the result is to fit into 32 or 64 bits, then the factorial only ...
2
votes
3answers
4k views

Complexity Of Recursive Factorial Program

What's the complexity of a recursive program to find factorial of a number n? My hunch is that it might be O(n)
2
votes
4answers
6k 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 probability. As you can see ...
2
votes
8answers
1k 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 problem but trying ...
1
vote
2answers
61 views

Implementation of Sum in Ada

1) Sum := 0; for J in 1 .. N loop Sum := Sum + J; end loop; 2) Sum := ((N + 1) * N) / 2; I've read that the first(left) solution is more "general" - applicable to a wide range of values ​​- ...
1
vote
2answers
55 views

Loop Invariant for function to compute factorials

I'm having a hard time correctly identifying a loop invariant for the following function: F(y) X <-- 1 while (y > 1) do x <-- x * y y <-- y - 1 return (x) ...
1
vote
2answers
99 views

use exclam (!) syntax for factorial in python

Can a working factorial function/operator be defined with a syntax like in mathematics? i.e. using the ! symbol. I can't think of any use cases of the existing symbol where things could be ambiguous ...
1
vote
3answers
277 views

largest factorial number present as a factor in some integer n

I am working on designing an algorithm to find the largest factorial number present as a factor in some integer n. This problem is given in "How to solve it by computer" by R.G.Dormey. could you help ...
1
vote
6answers
119 views

Simple recursion question

Reworked the code and now it looks like this. Thanks for the suggestions. #include <stdio.h> long int factorial(int n) { if (n<=1) return(1); else ...
1
vote
1answer
59 views

Using base X, how high can I count using Y characters?

I know that the total number of permutations for a given base is the factorial... so the total number of permutations of "abc" is 3! or 3x2x1 or 6. Obviously I'm not sure of the terminology to ...

1 2