I'm doing Sequences and Series at the moment and I came upon this limit:
$$\lim_{x \to ∞} (x!)^{1/x}$$
Here is how I evaluated it:
$$y = \lim_{x \to ∞} (x!)^{1/x}$$ $$\ln{y} = \lim_{x \to ∞} \ln({(x!)^{1/x}})$$ $$\ln{y} = \lim_{x \to ∞} \frac{\ln(x!)}{x}$$ $$\ln{y} = \lim_{x \to ∞} \frac{lnx + \ln(x-1) + \ln(x-2) +...+ \ln(2) + \ln(1)}{x}$$
we have the indeterminate form $\frac{∞}{∞}$, so we can use L'Hopital's Rule:
$$\ln{y} = \lim_{x \to ∞} \frac{\frac{1}{x} + \frac{1}{x-1} + \frac{1}{x-2} +...+ 0 + 0}{1}$$ $$\ln{y} = 0$$ $$y=1$$
However, this seems to be wrong just from numerical analysis and from what I've found online. What is my error? Thank you very much for any help!