0

How do i solve arithmetic problem that contain another arithmetic in it and the arithmetic is problem is using power of number?

This is the problem that i run into $(2^1) + (2^1 + 2^2) + (2^1 + 2^2 + 2^3) ... U_n$

Is it possible to find the Un and Sn ?

1 Answers1

0

Hint:

$1=2^1-1$

$1+2 = 2^2-1$

$1+2+4 = 2^3-1$

$1+2+4+8 = 2^4-1$

$1+2+4+8+16 = 2^5-1$

$1+2+4+\dots+2^n = 2^{n+1}-1$

So then, what is $U_n$?

Now, looking at $S_n$, can you see a similar pattern emerging?


Solution:

Given that $1+2+4+\dots+2^n = 2^{n+1}-1$ it follows that $U_n = 2+4+\dots+2^n = 2^{n+1}-2$

Further, we have that $S_n = U_1+U_2+\dots+U_n$

By replacing $U_n$ with what we found earlier and rearranging we have:

$S_n = (2^2-2)+(2^3-2)+\dots+(2^{n+1}-2) = (2^2+2^3+\dots+2^{n+1})-2n$

Recalling that $1+2+4+\dots+2^n+2^{n+1}=2^{n+2}-1$ and by subtracting $1+2$ from each side, we arrive at:

$S_n = (2^{n+2}-4)-2n$

JMoravitz
  • 79,518
  • After Trying several time , i finally figured that $Un = 2^1 + 2^2 + 2^3 .... 2^n = 2^{n+1} - 2$ , thanks so much !!!! but how do i find the Sn ? – user6668201 Oct 24 '19 at 17:53
  • @user6668201 Additional mathjax tip, several commands will only pay attention to the first following character. If you want additional characters to be recognized, enclose them in braces. $2^n+1$ produces $2^n+1$ but $2^{n+1}$ produces $2^{n+1}$ – JMoravitz Oct 24 '19 at 17:55
  • i edited my comment several time before removing the ajax when i stuck with that problem , thanks for helping me so much – user6668201 Oct 24 '19 at 17:57
  • Now, notice that $S_n = (2^2-2)+(2^3-2)+(2^4-2)+\dots+(2^{n+1}-2)$. Let's rearrange that as $(2^2+2^3+2^4+\dots+2^{n+1}) - 2-2-2-\dots - 2$. The first section should look very similar to $U_n$ and you should be able to spot that pattern in a similar way. The second section is just subtracting $2$ a bunch of times. How many times? – JMoravitz Oct 24 '19 at 17:57
  • apparently another solution was $S_n = 2^{n+2} - (n+2)(2) $ , but your answer follow more logical way than this solution – user6668201 Oct 24 '19 at 18:33