Change of variables for summation fails

change-of-variablesummationsummation-method

Suppose I have the sum $ \displaystyle S_1 = \sum_{i=1}^5 \cfrac{1}{(i+1)^2} $

I can make a change of variables by letting $ j=i+1 $. When $ i=1 \implies j=2 $, and when $ i=5 \implies j=6 $

$ \displaystyle \therefore S_1 = \sum_{j=2}^6 \cfrac{1}{j^2} $.

But if I were to make a change of variables with $ j=(i+1)^2 $ and use the same logic as above, the resulting sum would be: $ \displaystyle \sum_{j=4}^{36}\cfrac{1}{j} $. Which is not equal to the original sum $ S_1 $.

In theory, why does this change of variable fail?

Best Answer

The main idea is that you don't get all values from $4$ to $36$ in $j=(i+1)^2$, since not all values from $4$ to $36$ can be represented this way when $i\in\{1,2,3,4,5\}$. An easy way to check this is that the substitution that you applied is one-to-one, but the original summation has $5$ terms whilst the modified summation has $33$. Here's an explanation:

When $j=i+1$, the possible values are $$i=1\implies j=2$$ $$i=2\implies j=3$$ $$i=3\implies j=4$$ $$i=4\implies j=5$$ $$i=5\implies j=6$$ So, indeed, your change of variables is correct. However, when $j=(i+1)^2$, we have $$i=1\implies j=4$$ $$i=2\implies j=9$$ $$i=3\implies j=16$$ $$i=4\implies j=25$$ $$i=5\implies j=36$$ So, instead of $$\sum_{j=4}^{36}\frac{1}{j}=\sum_{j\in\{4,5,6,7,\cdots, 36\}}\frac{1}{j}$$ It is $$\sum_{j\in\{4,9,16,25,36\}}\frac{1}{j}$$

Related Question