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

-4
votes
2answers
52 views

Calculation of factorial of large numbers in c using arrays

I am trying to calculate factorial of very large numbers in c like 100!..by dynamically allocating memory after calculating the number of digits in factorial: My code is: int main() { int ...
-1
votes
1answer
61 views

Time limit of a c program while calculating factorial of numbers in c [closed]

I am solving a problem on calculation of factorial and the challenge is as follows! You are asked to calculate factorials of some small positive integers. Input An integer t, 1<=t<=100, ...
0
votes
6answers
62 views

For loop to calculate factorials

Currently I have this set of code and its meant to calculate factorials. int numberInt = int.Parse(factorialNumberTextBox.Text); for (int i = 1; i < numberInt; i++) { numberInt = numberInt * i; ...
3
votes
2answers
51 views

Example of a factorial time algorithm O( n! )

I'm study time complexity in school and our main focus seems to only deal with polynomial time O(n^c) algorithms and quasi-linear time O(nlog(n)) algorithms with the occasional exponential time O(c^n) ...
0
votes
0answers
14 views

aov Error not producing correct output with within-subjects factorial anova

Semi-experienced R user here, mainly with data analysis. I have a data set which I am trying to analyze with a within-subjects factorial design (2 factors, each with 2 levels). Since there are only ...
-4
votes
3answers
86 views

Determining if a number is a factorial

I have to write a method that indicates if a number is a factorial of a number. Basically whatever number the user inputs, the method should be able to tell if that number (x) is a factorial of ...
0
votes
1answer
79 views

Ansi C: factorial function wrong a

I wrote some code to calculate the result of 100!, but my function stops giving the correct answer after 22! Here's my code. The assignment was to calculate the sum of the digits of 100!, but my code ...
0
votes
1answer
31 views

Complexity of factorial recursive algorithm

Today in class my teacher wrote on the blackboard this algorithm analysys of complexity: int fatt(int n) { if (n == 1) return 1; else return n * fatt(n-1); } She said that it has a cost of ...
1
vote
9answers
135 views

Factorial of a large number in python

Here's my approach to factorials: def factorial(n): '''Returns factorial of n''' r = 1 for i in range(1, n + 1): r *= i return r I think it's pretty straightforward, though ...
0
votes
1answer
35 views

displaying the factorial of each value of the index of a loop does not work. MIPS

I am trying to display the factorial of the current value of the index of a loop in MIPS but, my loop does not work at all. It keeps freezing every time I run the code. Let say I have a for loop such ...
-4
votes
1answer
47 views

Factorial iteration java [closed]

poCould anyone explain this piece of code to me?? Its a power function using iteration public static int iterate(int a, int n) { int i ; int result = 1 ; for(i = 0 ; i < n ; i++){ ...
1
vote
4answers
68 views

Factorial Program printing out the recursion

I have a Factorial Program written down. I have the whole program completed and it runs without any problems. However, I want the output to look like this Begin Factorial Program. . . Provide ...
0
votes
5answers
70 views

Return with a recursive function

I'm curious how return works when using a recursive function. For example, in the factorial function below, x will reach 1 before any calculations can actually occur. int factorial (int x){ if ...
1
vote
3answers
115 views

Haskell basic factorial not exiting? [duplicate]

I'm learning Haskell, and am having trouble with a basic factorial function from this tutorial. Basically, I've defined a factorial as such: Prelude> let factorial 0 = 1 Prelude> let factorial ...
0
votes
1answer
19 views

SQL Factorial ErlangC

I am trying to use this factorial in an ErlangC Function.. However my number of Agents can get up to the 300s. With this you can get pretty large numbers. For example. My question is how do I store ...
0
votes
1answer
29 views

scilab plotting factorial; first trying to correct the equation?

I'm trying to execute this equation in scilab; however, I'm getting error: 59 of function %s_pow called ... even though I define x. n=0:1:3; x=[0:0.1:2]; z = factorial(3); w = factorial(n);u = ...
3
votes
3answers
151 views

Different answers when calculating factorial using iteration and recursion

First time poster here, I hope that this question is acceptable. As a small test I wrote an application that calculates the factorial of a number using both iteration and recursion. This seemed to ...
-3
votes
3answers
81 views

Factorial function producing wrong results

I know that there are more than one way of calculating the factorial of an integer as well as there is a math module. However I tried to put together a simple function that is returning a wrong ...
-5
votes
1answer
88 views

How to write factorials in objective c [closed]

I have been reading a programming book and it wants me to write a program listing a table of the first 10 factorial numbers. I have been trying for the past 45 minutes, but can't come up with a ...
-1
votes
1answer
131 views

Factorial Algorithm which uses no Big-Integer library

I'm studing computer engineering and we have a hard task. We have to develop a C# application which can calculate factorial of really big numbers without BIGINT . I mean really big numbers, like ...
0
votes
1answer
66 views

need cube plot for 2 factors factorial design in R

Is there are any R package that can produce cube plots for 2 factors? I want something similar to the first plot at the end of this page http://www.processma.com/resource/factorial_plots.htm It is ...
2
votes
5answers
87 views

Java factorial output

I am supposed to create a program that asks the user for a number and takes the factorial of that number then asks if they want to do another factorial (Y,N). It is supposed to work like this: ...
1
vote
3answers
123 views

C++: Combination/multiset functions (factorial overflow)

I must implement a problem that computes combinations and multisets of m elements from a set of n elements. The formulas for them are the following ones: The problem is that with factorial it is ...
3
votes
2answers
170 views

Calculate 100 factorial with all the digits

I came across a problem of calculating 100 factorial. Here is what I tried first in Perl to calculate 100! : #!/usr/bin/perl use strict; use warnings; use Math::BigInt; my $n=<>; chomp($n); ...
0
votes
1answer
49 views

Need Solution regarding assembly program: output and integer max number output

i am writing assembly program counting factorial. And i got two questions. Why the max number output can be up to 255? How can I fix it? How can I make automatic output, to console, instead of ...
3
votes
3answers
154 views

How to make a function that computes the factorial for numbers with decimals?

How can I make a function that calculates the factorial (or the gamma function) of decimal numbers in JavaScript? For example, how could I calculate 2.33!?
1
vote
4answers
110 views

Why is computing a factorial faster/efficient in functional programming?

Here's a claim made in one of the answers at: http://programmers.stackexchange.com/a/136146/18748 Try your hand at a Functional language or two. Try implementing factorial in Erlang using ...
-2
votes
1answer
96 views

How do I get the sum x^n/n! in prolog?

I don't understand much about Prolog. I need to count a sum x^n/n! in Prolog, n=1..k, k and x integer numbers Someone, please explain me how to do this using Prolog. Thanks in advance!
2
votes
1answer
70 views

Adding higher-level operator to grammar

I am working through Stroustrups Programming Principles and Practice using c++. There is this grammar that he uses in building a calculator through the first few chapters of the book. One of the ...
2
votes
4answers
314 views

Fast algorithm to calculate large n! mod 2^32

N can be up to 2^31. I want to calculate exact value of N! mod 2^32. Any language is fine but I would appreciate detailed explanation of algorithm. Time limit is <1 sec
0
votes
1answer
50 views

Variables Multiplication

I'm making a script which gives the factorial for a inserted number, but i'm having some problems with the multiplication. Note: the factorial for is given by: 9!=9*8*7*6*5*4*3*2*1 Here's my code: ...
0
votes
1answer
23 views

Negative long is returned?

In this iterative factorial equation any number that I pass through greater than 39 appears negative. Why is this public static void main(String[] args) { long var = formula(40); ...
0
votes
1answer
312 views

Assembler code for factorial

I'm new with assembler and I need some helps. My compiler reacts to only this commands load i store i loadi i addi i subi i move S T loadin i j storein i j all kind of jumps and i ...
0
votes
2answers
97 views

Factorial does not work for all values

Hi everyone I edited my post because I have another problem with my code.I had a problem with the factorial function yesterday but I managed to solve it thanks to your answers , it was a ridiculous ...
1
vote
3answers
108 views

Recursive factorial program in C hangs when executing

I'm writing a program to display the time needed to calculate a factorial of a given number 2 million times. I'm writing it using Debian Linux in the C/C++ Eclipse environment. When the program gets ...
0
votes
3answers
94 views

Factorial for loop

I created the following funcion to calculate the factorial of a given number: factorial <- function(x){ y <- 1 for(i in 1:x){ y <-y*((1:x)[i]) print(y) } } factorial(6) in console: [1] ...
2
votes
2answers
128 views

Permutation of factorial in php

Don't know how to explain. But maybe example below will be make you understandable what my problem is. Example : I have an array with 3 elements. $elements = array( 'A', 'B', 'C' ); The ...
-1
votes
2answers
165 views

Java - Factorial Base Conversion

I am relatively new to programming, but I am trying to write a program that converts a number from base 10 to factorial base in order to assist me with a more challenging problem. Factorial base ...
-1
votes
3answers
114 views

How to get the factorial value

I want to get the factorial value of a number. I read in a wiki that I can expect the result of 5! to be 5x4x3x2x1 = 120. Now how can I get that in Java? BigFraction g = new BigFraction(5); ...
-2
votes
2answers
97 views

Factorial sequence

i am a first year student and we are having our first case study... right now im working on one of the problems regarding factorial sequence, and i'm getting some errors which i can't figure out. ...
3
votes
2answers
65 views

Does Memoization improve running time of this algorithm?

"Given an array of n integers, return an array of their factorials." Instead of the straight forward way of iterating through the array and finding factorial for each, I was thinking of a ...
1
vote
3answers
74 views

Converting a Bash function to compute n! to C?

I am attempting to re-write this bash function in C, but the a little unsure of how to convert this function into a C loop. Here I have variables set. This I already have n=10 r=4 This is where I ...
-4
votes
3answers
204 views

Recursive power calculation [closed]

I need to write a recursive method Power(base, exponent) that, when called, returns Power(3,4) = 3*3*3*3. And exponent is an integer greater than or equal to 1. Below is my code, but it is wrong. I ...
1
vote
1answer
98 views

Node.js output formatting of big numbers

I'm trying to write factorial implementation on node.js. From very simple recursive approach to most complex algorithms. Here is the code: process.stdin.resume(); var i = 0, t = 0; ...
0
votes
2answers
120 views

Calculating a Permutation with Repetitions of Lexigraphic

I have a question concerning combinatorics, specifically permutations and lexigraphic indexing. I have calculated a permutation of a set given a lexigraphic index in the past, but these were ...
0
votes
4answers
200 views

Factorial for loop statement

I can't get this for loop to execute the factorial it is supposed to. It seems to only be looping once. static void Main(string[] args) { int a; int total=1; ...
-1
votes
1answer
146 views

Issue with a puzzle solution in C language (CodeChef.com) [closed]

i've made my code to solve a puzzle at http://www.codechef.com/problems/FCTRL According to what i've tested, the program works right for any string of number. Apparently, the CodeChef website reports ...
2
votes
2answers
101 views

Factorial calculation is not right in my C program? [closed]

#include <stdio.h> #include <conio.h> int main() { long signed fact=1; int c, n ; printf("Factorial to be calculated: "); scanf("%d", &n); for (c = 1; c <= n; c++) ...
13
votes
2answers
366 views

In R why is factorial(100) displayed differently to prod(1:100)?

In R I am finding some odd behaviour that I can't explain and I am hoping someone here can. I believe that the value of 100! is this big number. A few lines from the console showing expected ...
0
votes
2answers
122 views

Getting wrong result while calculating factorials in C.=

Obviously, this is a [hometask] and a totally newbie question that I'm asking. I tried to figure it out on my own by changing code multiple times but still get wrong results from factorial ...

1 2 3 4 5