0

Is the limit $$\lim_{n→0} {n!\over{n^n}} $$ equal to $1$?

My proof attempt.

$${0!\over{0^0}} =\frac 1 1 =1.$$

Am I right? Please correct me if I am wrong.

1 Answers1

3

Saying that $0^0 = 1$ is wrong in general, and also $x^x$ is not clearly define for $x<0$, I assume you mean the limit $$ \lim_{x\to 0^+} \dfrac{x!}{x^x} $$ Moreover you have to define what $n!$ is when $n$ is not an integer.

Using the gamma function as extension of the factorial for non-integer: $$ \Gamma(z):= \int_0^{+\infty} t^{z-1}\cdot e^{-t}\;dt$$ For each $n\in\mathbb{N}$: $\Gamma(n+1) = n!$, in particular (useful later) $\Gamma(1) = 0! = 1$.

Then knowing that $\Gamma(z)$ is continuous for $z>0$ and that $\lim_{x\to 0^+} x^x = 1$ (see: Stack Question ), you get

$$ \lim_{x\to 0^+} \dfrac{x!}{x^x} = \lim_{x\to 0^+} \dfrac{\Gamma(x+1)}{x^x} = \dfrac{\lim_{x\to 0^+} \Gamma(x+1)}{\lim_{x\to 0^+} x^x} = \dfrac{\Gamma(1)}{1} = 1. $$

Leo
  • 492
  • In the end it turns out as a sophisticated way to validate the OP's proof attempt! – Gribouillis Apr 27 '22 at 08:13
  • 1
    "Saying that $0^0=1$ is wrong in general" I strongly disagree. Naively swapping out $x^y$ with $0^0$ in a limit $x, y\to 0$ is wrong in general. But I know of absolutely no issue with stating that $0^0 = 1$ always holds. Which is why I am of the conviction that $0^0 = 1$ always holds. You might disagree with me that $0^0 = 1$ always holds, and I'm more or less fine with that, although I, like everyone else, wish that my personal conventions were more universal. But I think you will find it difficult to say I am wrong. – Arthur Apr 27 '22 at 09:06
  • @Arthur Despite my harsh words, I kind of agree with you. $0^0 = 1$ seems natural in many fields. Still, in the context of calculus and especially when working with limits (precisely the context of the question), we can't make a direct jump from $0^0$ to 1. In a different context (e.g. combinatorics, algebra, etc.) I would usually define $0^0$ as 1 (if need be) before working with it. Without context I like to leave $0^0$ as undefined. – Leo Apr 27 '22 at 09:43
  • In my calculus book, sure we can make a direct jump from $0^0$ to $1$ when working with limits. What we can't do is make a direct jump from $\lim_{x, y\to 0}x^y$ to $0^0$. Discontinuities exist, and we are capable of working with them everywhere else, I don't see how it would be a problem in this particular case. Admittedly, "$0^0$" is also used to denote this common "indeterminate form", and this notational overload is unfortunate. On the other hand, Taylor expansions get messy if you don't allow for $0^0 = 1$, so even inside the field of calculus, most people use it at least some times. – Arthur Apr 27 '22 at 10:25