[Math] Negative factorials and the creation of math functions

factorialfunctions

I know that factorials are, by definition, positive integers which means you can not have n! where n is negative. My question is can you create a factorial specifically for negative integers? I thought of this idea as a sort of opposite factorial. I used an upside down exclamation mark to denote a negative factorial. It functions as such: A negative factorial can only be performed on negative integers. The negative factorial of an even number is positive and the negative factorial of an odd number is negative (assuming the number is negative to begin with). If you take a negative factorial of a positive number you get the same answer as a factorial of negative number.

n¡=+(0,2,4,6,8…) or –(1,3,5,7,9…)

│n│¡=error

I do not know of any useful applications for this or if this is even possible at all. That's why I want to know if it's possible to make up a function such as a negative factorial.

Best Answer

Your idea is a special case of what is known as rising factorials and falling factorials. The rising factorial is defined as $$ x^{(n)} = x(x+1)\cdots(x+n-1), $$ and the falling factorial is $$ x_{(n)} = x(x-1)\cdots(x-n+1), $$ where $n$ is a non-negative integer and $x$ is an arbitrary (complex) number. These notations are used in combinatorics and definitions of special functions. See the wiki article on the Pochhammer symbol for more info.

In particular, your "negative factorial" can be written as $$(-n)^{(n)} = (-1)^n n_{(n)} = (-1)^n n!$$