[Math] Show that the sum of reciprocal products equals $n$

sequence-of-functionsummation

I don't even know how to proceed. Please help me with this.

(Original at https://i.stack.imgur.com/DRIX8.jpg)

Consider all non-empty subsets of the set $\{1, 2, \ldots, n\}$. For every such subset, we find the product of the reciprocals of each of its elements. Denote the sum of all these products as $S_n$. For example,

$$
S_3 = \frac11 + \frac12 + \frac13
+ \frac{1}{1\cdot2} + \frac{1}{1\cdot3} + \frac{1}{2\cdot3}
+ \frac{1}{1\cdot2\cdot3}
$$

(a) Show that $S_n = \frac1n + \left(1 + \frac1n\right)S_{n-1}$.

(b) Hence or otherwise, deduce that $S_n = n$.

Best Answer

You should add what you've tried. Anyway:

Use induction for the 1st argument. Obviously $S_1=1$ and $S_2=2=1/2+(1+1/2)S_1$, so the proposition is true for $n=2$. Assume that it is true for some $n$ and with that in hand prove it for $n+1$: We have $S_{n+1}=$ terms that $n+1$ does not appear on the denominator $+$ terms that $n+1%$ appears on the denominator $=S_n+\frac{1}{n+1}S_n+\frac{1}{n+1}$, since $\frac{1}{n+1}$ is a common factor of the elements that have $(n+1)$ as a divisor of the denumerator. By induction, this formula is true for all $n\in\mathbb{N}$. For the 2nd argument, use induction again. We already saw that $S_1=1$. Assume that $S_{n}=n$. Then use the formula proved above and get $S_{n+1}=n+\frac{n+1}{n+1}=n+1.$ These things are quite simple, try hard and don't give up easily.

Related Question