0

The task is to prove, that series: $$\sum_{n=2}^\infty \frac{1}{log^2(n!)}$$ converges. Unfortunately I only managed to deal with showing that Limit of the summand is equal to 0, what is pretty obvious, but still, I am truly clueless, how to show that it converges. I am not asking for solution, but only clues/hints and other stuff like that. I would be truly grateful for any help.

Thomas
  • 43,555
Kiwi
  • 85

3 Answers3

1

Hint: you can easily show that $\ln(n!) \geq c n\ln n$ for some absolute constant $c >0$. From there, $\frac{1}{\ln^2 n!} \leq \frac{1}{c^2 n^2\ln^2 n}$, and conclude by theorems of comparison.

Clement C.
  • 67,323
1

Similar to the comments above, you first note that $n! > e^n$ for $n\geq k$ (for some $k$). Then you can say that for $n\geq k$ $$ \log(n!)^2 > (\log(e^n))^2 = (n\log(e))^2 = n^2. $$ So $$ \frac{1}{\log(n!)^2} < \frac{1}{n^2}. $$ Then you can use the comparison test.

Thomas
  • 43,555
1

By summation by parts, for any $n\geq 3$: $$\begin{eqnarray*}\log(n!) = \sum_{k=1}^{n}\log(k) &=& n\log(n) - \sum_{k=1}^{n-1}k\log\left(1+\frac{1}{k}\right)\\&\geq& n\log n-\sum_{k=1}^{n}k\cdot\frac{1}{k}\\&=&n\left(\log n-1\right)\tag{1}\end{eqnarray*} $$ since $\log(1+x)\leq x$ for any $x>0$. The $p$-test hence ensures that $\sum_{n\geq 2}\frac{1}{\log^2(n!)}$ is converging, but the sum has to avoid the $n=1$ term since $\log(1!)=0$.

Jack D'Aurizio
  • 353,855