answersLogoWhite

0


Best Answer

It is 5*4*3*2*1 =120

User Avatar

Wiki User

10y ago

Still curious? Ask our experts.

Chat with our AI personalities

SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin

Add your answer:

Earn +20 pts
Q: What is 5 factorial?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is factorial notation?

example: 5 factorial notation is 5x4x3x2x1= ______that's factorial notationIt is written as 5!


What is value of 5 ie factorial?

5 factorial = 5*4*3*2*1 = 120


How many zeros are possible factorial 10 to the power factorial 10?

To calculate the number of zeros in a factorial number, we need to determine the number of factors of 5 in the factorial. In this case, we are looking at 10 to the power of 10 factorial. The number of factors of 5 in 10! is 2 (from 5 and 10). Therefore, the number of zeros in 10 to the power of 10 factorial would be 2.


What are the factors of 5 factorial?

1,2,3,4,5


What does five factorial equate to?

Five factorial = " 5! " = ( 5 x 4 x 3 x 2 x 1 ) = 120 .


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 the value of abc if abc equals a factorial plus b factorial plus c factorial?

145 1! = 1 4! = 24 5! = 120


What the value of(5!)?

5! = 5 factorial = 5x4x3x2x1 = 20x6 = 120


What is the factorial of 5-3?

8


What is factorial of 10 divided by factorial of 4?

2.5


How do you find factors of a number in Excel spreadsheet?

Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)Use the FACT function. So to get the factorial of 5, you would enter:=FACT(5)


How do you create factorial program in qbasic?

since factorial is for example , the factorial of 5 = 5 (5-1)(5-2)(5-3)(5-4) that means the last number to subtract from 5 is 4 , which is (n-1) ie the factorial of any number is (n-0)(.............)(n-(n-1)) to write this , 5 REM to calculate the factorial of any number 6 DIM fac AS INTEGER LET fac = 1 10 INPUT "enter the number to find its factorial "; a ' variable a 15 FOR b = 0 TO (a-1) 'numbers that will be subtracted from the " a" 20 c= a -b 'each number in the factorial calculation 25 fac = fac * c 'to compute each multiplication in the factorial 30 NEXT b 35 PRINT 'to leave a line 40 PRINT fac 45 END note this due to some unattained raesons works for numbers 0 to 7