answersLogoWhite

0

Factorial is calculated by multiplying be each lower integer. eg factorial 4 (also written as 4!) is 4 x 3 x 2

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Movies & Television
Related Questions

How do you find factorials?

to find factorials you just multiply the factorial like this. for example 6! you would do 6x5x4x3x2. a little trick of mine is to multiply the previous factorial's answer by the factorial you are trying to make's number like this 6!=5! 5!=5x4x3x2 i hope this was helpful' Dayna,a 10 year old girl


Is factorial like this 4x4-4-4?

No, that is nothing like a factorial. 4 factorial (written as 4!) is 4*3*2*1 = 24.


What is the result of multiplying all figures from 0 to 25?

It will be zero, because zero is included in the set. Anything times zero is zero. I think the question you meant to ask is "What is the product of all figures from one to 25?". This is easy if you have a scientific calculator. The operation is 25 factorial, which looks like 25!. Find an exlamation point on your calculator, then enter it after you enter 25. The answer to 25! is 1.55E25.


Write a program in java to find factorial of a number?

I suggest to use a for loop, more or less like this (assuming the parameter is "n"): product = 1; for (int i = 1; i <= n; i++) { product *= i; }


Find factorial at given number using do while loop?

Actually, a for loop is more appropriate in this case. With while, it would be something like the following pseudocode - adapt to your favorite programming language:function factorial(n)result = 1factor = 1while factor


Write a program to find factorial of number?

#include<stdio.h> #include<conio.h> int main() { int i,n,fact=1; printf(" Enter number to find factorial\n"); scanf(" %d",&n); for(i=1;i<=n;i++) fact=fact*i; printf("factorial of%d=%d\n",n,fact,); return 0; }


2 Write a program in java to find factorial of a number?

import java.math.BigInteger; public class Factorial { public static void main(String[] args) { BigInteger n = BigInteger.ONE; for (int i=1; i<=20; i++) { n = n.multiply(BigInteger.valueOf(i)); System.out.println(i + "! = " + n); }


Write an algorithm to print the factorial of given number and then draw the flowchart?

write an algorithm to print the factorial of a given number and then draw the flowchart. This looks like someones homework, defiantly someone looking for the easy way. When it comes to programming, the more you do the better you get. Experience counts (making your own mistakes and learning from the mistake).


What is 1000000000 factorial?

The factorial of a number is the product of all positive integers up to that number. The factorial of 1000000000, denoted as 1000000000!, is an extremely large number with 5,565,709,298 digits. It is practically impossible to calculate or write out the exact value of such a large factorial without the use of specialized software or mathematical tools.


Write a C-like program fragment that calculate the factorial function for argment 12 with do while loop?

#!/usr/bin/perl print factorial($ARGV[11]); sub factorial { my($num) = @_; if($num == 1) { return 1; # stop at 1, factorial doesn't multiply times zero } else { return $num * factorial($num - 1); # call factorial function recursively } }


How many English words can be formed from the word 'planets'and could you list them?

Well, darling, the word 'planets' has 7 letters, so you can form 7! (7 factorial) = 5040 different words. Listing them all out would take longer than a Golden Girls marathon, so I'll spare you the agony. Just trust me, there are a lot of words you can make from 'planets'.


How many ways can the letters of the word communication be arranged?

Oh, dude, you're hitting me with the big brain stuff now! Okay, so the word "communication" has 12 letters, but it has repeated letters, so you can't just do 12 factorial. You gotta take into account the repeated letters, and like, do some math magic with it. So, there are 12 factorial divided by (2 factorial x 3 factorial x 2 factorial) ways you can arrange the letters of "communication." Math and words, man, they can be wild!