answersLogoWhite

0

What is value of 5 ie factorial?

Updated: 11/3/2022
User Avatar

Me24lana

Lvl 1
13y ago

Best Answer

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

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

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

What the value of(5!)?

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


What is the value of 9 factorial plus 6 factorial?

The value of 9 factorial plus 6 factorial is 363,600


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 is the value of factorial negative n?

what is the value of negative n factorial ?


How many 5 digit codes are possible if 0 cannot be used and no digit can be repeated?

Any 5 from 9 in any order = factorial 9 divided by factorial (9 - 5), ie 9 x 8 x 7 x 6 x 5 = 15120.


What is factorial notation?

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


Number of ways 5 objects can be arranged in a row?

5! is the symbol for Factorial 5 , ie 5 x 4 x 3 x 2 = 120 different ways


How do you use 5 fives to equal 100?

5! - (5 + 5 + 5 + 5) 5! is Factorial 5 ie 5 x 4 x 3 x 2 x 1 which is 120


What is the value of 7 factorial?

7*6*5*4*3*2*1=5040


What is the value for 10 factorial?

3,628,800


In 54.6 what is the value of 5?

5 is in the "tens" place so its value is 5 tens, ie 50.


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