I know this is a tricky question, but I'm curious if factorial is truly considered a closed formula? We all know that:
$$ \prod_{i=1}^n i = n! $$
I've always considered the LHS to not be a closed formula and the RHS to be a closed formula. But from another viewpoint, is the exclamation point just a notation for the LHS? If this is the case, can we truly consider the RHS to be a closed formula? Moreover, it's just shorthand.
The same goes for a summation. In my head, I've always believed a closed formula did not include any iteration or recursion, even if it's finite. An example of iteration is Gauss' sum of consecutive integers from $1$ to $n$:
$$ \sum_{i=1}^n i = \frac{n \left( n + 1 \right)}{2} $$
Again, the LHS is not a closed formula, but the RHS is. An example of recursion is the Fibonacci sequence:
$$ F_n = F_{n-1} + F_{n-2} = \frac{1}{\sqrt{5}} \left( \varphi^n - \phi^n \right) $$
The middle is not a closed formula, but the RHS is. I know there are tons of examples, but these are just a few simple examples off the top of my head.
So, is factorial really a closed formula? If someone derived a formula that included a factorial, can we consider that to be a closed formula? In fact, are binomial coefficients closed formulas, since:
$$ \binom{n}{k} = \frac{n!}{k! \left( n - k \right)!} $$
Any insight to this will greatly be appreciated. Thank you!
Based on the subject and the person, whether the factorial is considered closed-form or not would differ. For example, in combinatorics, the factorial is used so regularly that it is basically considered closed form since the factorial is a standard operation. However, in subjects like real analysis, the factorial is used sparingly enough to not be considered as a standard operation, and it would not be treated as closed form. It is however used in Taylor series expansions, so it is useful even in real analysis.
Also, the notion of closed-form-ness is not very useful now, since it is meant for ease of approximation and computers can approximate basically anything. In this video, at 14:08, James Grime claims that the approximation was "easier to work out," and at 14:29 "if you wanted to work it out, you'd be better off approximating." Even though that particular case uses very complicated formulas, this might be true in other cases as well.