How can I find negative factorial ? (-0.5)!
Show older comments
How can I find negative factorial ? (-0.5)!
any one can help me the code to fined negative factorial as (-0.5)
Accepted Answer
More Answers (2)
John D'Errico
on 9 Aug 2022
Edited: John D'Errico
on 9 Aug 2022
Simple. Yes, you could use MATLAB, IF you knew that the extension of the function factorial(n) onto the real line is just gamma(n+1). So you might just do this:
gamma(-0.5 + 1)
Or if you want a prettier form...
gamma(sym(-0.5) + 1)
Perhaps a tricky way is to use the Euler reflection formula.
It tells us that
gamma(z)*gamma(1-z) = pi/sin(pi*z)
Now, recalling the relation between factorial and gamma, and accepting that factorial can indeed be extended onto the real line, we can write that as:
factorial(z-1)*factorial(-z) = pi/sin(pi*z)
Does that help us in any way? When happens when z = 1/2? z=1/2 is actully a truly magic number in our problem.
factorial(1/2 - 1)*factorial(-1/2) = [factorial(-1/2)]^2 = pi/sin(pi/2)
Does that help us?
Since sin(pi/2) = 1, then we see the square of the desired factorial we wanted to compute is just pi.
And therefore?
factorial(-1/2) = sqrt(pi)
Neat. I never even needed to use MATLAB. Pencil and paper was enough. Unless, of course, I was too lazy to do the math. It is always more fun to do the math.
4 Comments
esam baker
on 9 Aug 2022
John D'Errico
on 9 Aug 2022
You asked a specific question about a specific value. Answered here.
Since your question was not really what you asked, then all you need to know is the extension onto the real line for the factorial function. I can't answer what you want to know if you don't state your real problem.
esam baker
on 9 Aug 2022
Bruno Luong
on 9 Aug 2022
@John D'Errico "And therefore? factorial(-1/2) = sqrt(pi)"
Do you have to dsicard the negative solution -sqrt(pi) before this conclusion?
Bruno Luong
on 9 Aug 2022
1 vote
There are actually different ways of extending factorial function, see here
So rigourously your question is not precise to be answered
Categories
Find more on Array Geometries and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!