[Math] Natural log summation representation

logarithmssummation

In working through a problem, I've encountered the need to express

$\log n = \sum \limits_{k = 1}^{n – 1} \log(1 + \frac{1}{k})$

where $\log k $ is the natural logarithm of k. I'm fairly certain the above equality holds (please let me know if otherwise), but I'm not quite sure how to derive it. Any help would be greatly appreciated.

So far, I've tried expressing $\log n = \log(n!) – \log((n-1)!)$ to no avail.

Many thanks!

Best Answer

It telescopes after you do a little algebra:

$$\begin{align*} \sum_{k=1}^{n-1}\log\left(1+\frac1k\right)&=\sum_{k=1}^{n-1}\log\frac{k+1}k\\\\ &=\sum_{k=1}^{n-1}\big(\log(k+1)-\log k\big)\\ &=\log n-\log 1\\ &=\log n\;. \end{align*}$$