When I enter $0.78!$ in Google, it gives me $0.926227306$. I do understand that $n! = 1\cdot2\cdot3 \cdots(n-1)\cdot n$, but not when $n$ is a decimal.
I also have seen that $0.5!=\frac12\sqrt{\pi}$.
Can anyone explain me how to calculate decimal factorials? Thanks a lot!
There is a function called the Gamma function, which basically interpolates the factorial function in a way that we also can have non integer arguments, which preserves the property $f(n+1)=nf(n)$ You can find it here: http://en.wikipedia.org/wiki/Gamma_function
Of course 'preserving' is not quite correct since $f(n+1) = (n+1)f(n)$ if $f(n) = n!$ but $f(n+1) = nf(n) $ if $f(n) = \Gamma(n)$. But it is basically the same function, just shifted by one unit.
The formula is $\Gamma(t) = \int_0^\infty x^{t-1} e^{-x} dx$.
Note that $\Gamma(t+1) = t!$