Skip to content

Commit

Permalink
central factorial symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
kolosovpetro committed Jul 28, 2023
1 parent c28708c commit 499326f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Binary file modified out/GithubLatexTemplate.pdf
Binary file not shown.
2 changes: 2 additions & 0 deletions src/GithubLatexTemplate.tex
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
\newcommand \qpowerDerivativeHO [2] {\mathcal{D}_{q}^{#2} #1} % 1 - function; 2 - order
\newcommand \finiteDifferenceHO [2] {\Delta^{#2} #1} % 1 - function; 2 - order
\newcommand \pTsDerivativeHO [3] {\frac{\partial^{#3}}{\Delta {#2}^{#3}} #1} % 1 - function; 2 - variable;

% central factorials and related symbols
\newcommand \centralFactorial [2] {#1^{[#2]}}
\newcommand \fallingFactorial [2] {\left(#1 \right)^{\underline{#2}}}
\newcommand{\stirlingii}{\genfrac{\{}{\}}{0pt}{}}
Expand Down
16 changes: 16 additions & 0 deletions src/sections/02_introduction.tex
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,20 @@
\end{equation*}
\begin{equation*}
\llceilCoefficient{a}{b}{m}
\end{equation*}

And for any natural $m$ we have polynomial identity
\begin{equation}
x^m = \sum_{k=1}^{m} T(m, k) \centralFactorial{x}{k}\label{eq:knuth-power-identity}
\end{equation}
where $\centralFactorial{x}{k}$ denotes central factorial defined by
\begin{equation*}
\centralFactorial{x}{n} = x \fallingFactorial{x+\frac{n}{2}-1}{n-1}
\end{equation*}
where $\fallingFactorial{n}{k} = n (n-1) (n-2) \cdots (n-k+1)$ denotes falling factorial in Knuth's notation.
In particular,
\begin{equation*}
\centralFactorial{x}{n}
= x \left( x+\frac{n}{2}-1 \right) \left( x+\frac{n}{2}-1 \right) \cdots \left (x+\frac{n}{2}-n-1 \right)
= x \prod_{k=1}^{n-1} \left( x+\frac{n}{2}-k \right)
\end{equation*}

0 comments on commit 499326f

Please sign in to comment.