answersLogoWhite

0


Best Answer

It is not except when n = 1.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why is n factorial equal to n factorial x n?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

Why factorial of 0 equals 1?

Zero factorial is one because n! = n-1! X n. For example: 4! = (4-1) X 4. If zero factorial was zero, that would mean 1! =(1-1) X 1 = 0 X 1=0. Then if 1!=0, then even 999! would equal zero. Therefore, zero factorial equals 1.


How can you figure out combinations in math?

If you have N things and want to find the number of combinations of R things at a time then the formula is [(Factorial N)] / [(Factorial R) x (Factorial {N-R})]


What are gamma functions?

In basic mathematics, n factorial is equal to 1*2*3*...*n and is written as n! for positive integer values of n.The Gamma function is a generalisation of this concept, withGamma(x) = (x-1)! where x can be any real or complex.


How many weeks is 10 factorial seconds?

10 factorial is equal to 10 x 9 x 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1 = 3628800 seconds. One week is equal to 60 x 60 x 24 x 7 = 604800 seconds. Therefore, 10 factorial seconds is equal to 3628800/604800 = 6 weeks.


What is the rationale for defining 0 factorial to be 1?

What is the rationale for defining 0 factorial to be 1?AnswerThe defining 0 factorial to be 1 is not a rationale."Why is zero factorial equal to one?" is a problem that one has to prove.When 0 factorial to be 1 to be proved,the defining 0 factorial to be 1 is unvaluable.One has only one general primitive definition of a factorial number:n! = n x (n-1) x (n-2) x (n-3) x ... x 2 x 1.After that zero factorial denoted 0! is a problem that one has to acceptby convention 0!=1 as a part of definition.One has to prove zero factorial to be one.Only from the definition of a factorial number and by dividing both sidesby n one has: n!/n (n-1)! or (n-1)! = n!/nwhen n=2 one has (2-1)! = 2!/2 or 1! = 2x1/2 or 1! = 1when n=1 one has (1-1)! = 1!/1 or 0! = 1/1 or 0! = 1. =This is a proof that zero factorial is equal to one to be known.But a new proof is:A Schema Proof Without WordsThat Zero Factorial Is Equal To One.... ... ...Now the expression 0! = 1 is already a proof, not need a definitionnor a convention. So the defining 0 factorial to be 1 is unvaluable.The proof "without words" abovethat zero factorial is equal to one is a New that:*One has not to accept by convention 0!=1 anymore.*Zero factorial is not an empty product.*This Schema leads to a Law of Factorial.Note that the above schema is true but should not be used in a formal proof for 0!=1.The problem arises when you simplify the pattern formed by this schema into a MacLauren Series, which is the mathematical basis for it in the first place. Upon doing so you arrive with, . This representation illustrates that upon solving it you use 0!.In proofs you cannot define something by using that which you are defining in the definition. (ie) 0! can't be used when solving a problem within a proof of 0!.For clarification, the above series will represent the drawn out solution for the factorial of a number, i. (ie) 1×76 -6×66 +15×56 -20×46 +15×36 -6×26 +1×16 , where i=6.

Related questions

What is a factorial of a number?

A factorial of a positive integer n, is the product of all positive integers less than or equal to n. For example the factorial of 5 is: 5! = 5 x 4 x 3 x 2 x 1 = 120 0! is a special case that is explicitly defined to be 1. A factorial is denoted by n! (5! for this example)


What is factory or factorial?

Factorial for number N is N x N-1 x N-2 X N- (N-1). e.g. if you need to calculate factorial for 5 then compute 5 x 4 x 3 x 2 x 1.


Why factorial of 0 equals 1?

Zero factorial is one because n! = n-1! X n. For example: 4! = (4-1) X 4. If zero factorial was zero, that would mean 1! =(1-1) X 1 = 0 X 1=0. Then if 1!=0, then even 999! would equal zero. Therefore, zero factorial equals 1.


How do you write a program that calculate factorial in javascript?

function factorial(n) { var x=1; while(n>1) x*=(n--); return x; }


Formula of factorial of a number?

In mathematics, the factorial of a non-negative integern, denoted by n!, is the product of all positive integers less than or equal to n. For example, 5! = 5 x 4 x 3 x 2 x 1 = 120


Program for calculating factorial no using recursion in c?

factorial n is given by formula n! = n.(n-1)....1 int i; long x; x =1; for (i=n;i>1;i--) x = x*i ; will calculate factorial. I have put x as long to avoid integer overflow. checks for n is positive etc. to be added.


How can you figure out combinations in math?

If you have N things and want to find the number of combinations of R things at a time then the formula is [(Factorial N)] / [(Factorial R) x (Factorial {N-R})]


What is a factorial function in Visual Basic?

' Iterative solution Function iterativeFactorial(ByVal n As Long) As Long Dim factorial As Long = 1 For i As Long = 1 To n factorial *= i Next Return factorial End Function ' Recursive solution Function recursiveFactorial(ByVal n As Long) As Long If n <= 1 Then Return n End If Return n * recursiveFactorial(n - 1) End Function


What are gamma functions?

In basic mathematics, n factorial is equal to 1*2*3*...*n and is written as n! for positive integer values of n.The Gamma function is a generalisation of this concept, withGamma(x) = (x-1)! where x can be any real or complex.


Write the program that display the factorial of a number?

/* gcc -ansi -Wall -Wextra -pedantic -s -static 0.c -o 0 */ #include <stdio.h> int main ( ) { int n , factorial = 1 ; printf ( "enter the value of n\n") ; scanf ( "%i" , & n ) ; while ( n != 0 ) { factorial *= n ; n -- ; } printf ( "The factorial of n is\n%i\n" , factorial ) ; return 0; }


How many weeks is 10 factorial seconds?

10 factorial is equal to 10 x 9 x 8 x 7 x 6 x 5 x 4 x 3 x 2 x 1 = 3628800 seconds. One week is equal to 60 x 60 x 24 x 7 = 604800 seconds. Therefore, 10 factorial seconds is equal to 3628800/604800 = 6 weeks.


What is recursion in programing?

A recursive method (or function) is one that calls itself. Here is a popular example: The factorial function n! (read the exclamation mark as: factorial of n, or n factorial), for a positive integer, is the product of all numbers up to that number. For example, 4! = 1 x 2 x 3 x 4. In math, the factorial is sometimes defined as: 0! = 1 n! = n x (n-1)! (for n > 0) You can write a function or method, using this definition. Here is the pseudocode: function factorial(n) if (n = 0) return 1 else return n * factorial(n - 1) Note that this is not very efficient, but there are many problems that are extremely complicated without recursion, but which can be solved elegantly with recursion (for example, doing something with all files in a folder, including all subfolders).