Expressing Factorials with Binomial Coefficients

1.3k Views Asked by At

Expression

I have somehow stumbled upon this expression (I believe I have proved it, but that is not important right now), which I have tried to simplify by writing it like something like this (I have been playing with powers of natural numbers and something similar to Pascal's triangle) :

n! = (t-1)^n , t^a=(a+1)^n

n is a natural number; and t^a is used to replace powers of t's in (t-1)^n with natural numbers to the power of n. (Not to be used as direct equalities!)

For example, take 5 for n:

5! = (t-1)^5

5! = t^5 - 5 * t^4 + 10 * t^3 - 10 * t^2 + 5 * t^1 - 1

5! = 6^5 - 5 * 5^5 + 10 * 4^5 - 10 * 3^5 + 5 * 2^5 - 1

5! = 120

120 = 120

This is true for any natural number n.

Questions


Firstly, is there a similar or exact expression or formula out there already declared and explained with all of its properties, and if yes what is, where is it, and is it useful in any way?


Mainly, are there and what are other more convenient ways to express or write this down, maybe even simplify?

UPDATE: @abiessu Thanks, for your answer to this part.

UPDATE: @abiessu and @DanielFischer♦ Thanks, for correcting my expression of notation.


And lastly, if you wish, how would you prove such an expression with most elegance?

UPDATE: @abiessu Thanks, for your answer to this part.


UPDATES:

The comments will for sure give you a better idea of what I'm look for and hoping to find.

Use $$ n!=(n+1)^n-nn^n+\binom n2(n-1)^n-\dots $$ instead to look at the expression in its better notation easier to understand I believe.

2

There are 2 best solutions below

3
On BEST ANSWER

Note that $k^m$ can be written as a linear combination of $\binom{k}{j}$ for $j$ from $0$ to $m$. If fact, this is what the Stirling Numbers of the Second Kind are perfect for: $$ \newcommand{\stirtwo}[2]{\left\{{#1}\atop{#2}\right\}} k^m=\sum_{j=0}^mj!\stirtwo{m}{j}\binom{k}{j}\tag{1} $$ Using $(1)$ and other binomial identities, we get $$ \begin{align} \sum_{k=0}^n(-1)^k\binom{n}{k}(n-k+1)^n &=\sum_{k=0}^n(-1)^k\binom{n}{k}\sum_{i=0}^n(-1)^i\binom{n}{i}(n+1)^{n-i}k^i\tag{2}\\ &=\sum_{k=0}^n(-1)^k\binom{n}{k}\sum_{i=0}^n(-1)^i\binom{n}{i}(n+1)^{n-i}\sum_{j=0}^ij!\stirtwo{i}{j}\binom{k}{j}\tag{3}\\ &=\sum_{i=0}^n\sum_{j=0}^i(-1)^i\binom{n}{i}(n+1)^{n-i}j!\stirtwo{i}{j}\sum_{k=0}^n(-1)^k\binom{n}{k}\binom{k}{j}\tag{4}\\ &=\sum_{i=0}^n\sum_{j=0}^i(-1)^i\binom{n}{i}(n+1)^{n-i}j!\stirtwo{i}{j}\sum_{k=0}^n(-1)^k\binom{n}{j}\binom{n-j}{k-j}\tag{5}\\ &=\sum_{i=0}^n\sum_{j=0}^i(-1)^i\binom{n}{i}(n+1)^{n-i}j!\stirtwo{i}{j}(-1)^n[j=n]\tag{6}\\ &=(-1)^n\binom{n}{n}(n+1)^{n-n}n!\stirtwo{n}{n}(-1)^n\tag{7}\\[9pt] &=n!\tag{8} \end{align} $$ Explanation:
$(2)$: apply the Binomial Theorem to $(n-k+1)^n$
$(3)$: apply $(1)$ to $k^i$
$(4)$: rearrange factors
$(5)$: $\binom{n}{k}\binom{k}{j}=\binom{n}{j}\binom{n-j}{k-j}$
$(6)$: $\sum_{k=0}^n(-1)^k\binom{n-j}{k-j}=(1-1)^{n-j}$ which is $1$ only if $n=j$ and $0$ otherwise
$(7)$: if $j=n$, then $i=n$
$(8)$: evaluate

2
On

First, we skip the notation issue and make the claim

$$n!=(n+1)^n-nn^n+\binom n2(n-1)^n-\dots\pm \binom n2 3^n\pm n2^n\pm 1\tag 1$$

To prove this, take the $n$th (forward) finite difference of the polynomial $p(x)=x^n$:

$$\Delta(p(x))=p(x+1)-p(x)\\ =(x+1)^n-x^n\\ \Delta^2(p(x))=p(x+2)-2p(x+1)+p(x)\\ \Delta^3(p(x))=p(x+3)-3p(x+2)+3p(x+1)-p(x)\\ \vdots\\ \Delta^n(p(x))=p(x+n)-np(x+n-1)+\binom n2p(x+n-2)-\dots\pm\binom n2p(x+2)\pm np(x+1)\pm 1\\ \Delta^n(p(1))=(n+1)^n-nn^n+\binom n2(n-1)^n-\dots\pm \binom n2 3^n\pm n2^n\pm 1$$

Note that the $n$th finite difference of any degree-$n$ polynomial is a constant. This constant happens to be equivalent to the coefficient of the highest-degree term when it is written in binomial form. In particular, if we write another polynomial $q(x)=\binom xn={x(x-1)(x-2)\dots(x-n+1)\over n!}$ we see that the highest-degree term of $q(x)$ has coefficient $1\over n!$ when written in standard form. Because of the Binomial Coefficient identity

$$\binom {x+1}n-\binom xn = \binom x{n-1}$$

we have that the $n$th finite difference of $q(x)$ is the constant value $\Delta^n(q(x)) = 1$. So this tells us that the value of our $n$th finite difference of $p(x)$ must be

$$\Delta^n(p(x))=n!$$

This proves the identity in $(1)$. For comparison, consider the inductive proof of a similar identity in my answer here: https://math.stackexchange.com/a/1115939/86846.