i just need help with factorials

I assume you know what a factorial is:
1! = 1
2! = 1x2 = 2
3! = 1x2x3 = 6
N! = 1x2x3x...x(N-1)xN

They occur often in probability theory.

Please ask a more specific question about factorials. I have no idea what else to tell you.

what is the explicit formula for the nth factorial? is there one without n*(n-1)*(n-2) and so forth?

No, drwls is correct; N! = 1*2*3...*N.

However, when using factorials, short-cuts and simplifications will often be present. For example, the formula for counting the number of ways one can deal two cards from a standard 52-card deck is:
52! / 2!(52-2)!

Well, calculating 52! by itself is an onerous task. However, we can simplify. 52!/50! cancels to 51*52, and 2! is simply 1*2=2. So, the answer is 51*52/2 = 1326.

I hope this helps

Why is 0! equal to one? write back asap!!
-concerned student seeking help

Similar Questions
  1. def factorial(n):if n==1: else: return n* factorial(n-1) print("the factorial of ", 7, "is", factorial (7)) how could the
    1. answers icon 1 answer
    1. answers icon 1 answer
  2. Which code reflects the recursive case?(1 point) Responses else: return (x * factorial(x - 1)) else: return (x * factorial(x -
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions