What is the general formula for the factorial notation?

Hmmmm. Hard?

n!= 1*2*3*4*...*n-1*n

I have been missing from school and we have just learned it. So I am not very good at it.

There is quite a lot on Wikipedia

/wiki/Factorial

Which includes the general formula and a worked example for 5!

If you have missed a lot of school, you may need extra help to get caught up. You should speak to your teacher about extra tutoring. In addition, there are many websites that can be helpful:

http://www.jiskha.com/mathematics/

http://www.themathpage.com/

http://www.aaamath.com/

http://mathforum.org/
including Ask Dr. Math

etc.

Work hard to get caught up. It's no fun always being on that "treadmill."

=)

Thank you very much for your help

Similar Questions
    1. answers icon 1 answer
  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
more similar questions