1

I learnt that, $$ n + n^2 + n^3 + n^4 +. . . + n^x = n\underbrace{(1+n(1+n(1+\cdots)))}_{x-1 \text{times}} $$ So,I want to denote RHS in a single expression.

MJD
  • 65,394
  • 39
  • 298
  • 580
Vishnu
  • 63

2 Answers2

4

Multiply the left hand side by $(1 - n)$. This will collapse it down to $n - n^{x+1}$. Then divide by $(1 - n)$ to get a final answer of:

$$S = \frac{n - n^{x+1}}{1 - n}.$$

For more on Telescoping Series

T-Wayne
  • 123
2

You could say $$\text{Let }f(y) = n\cdot(1+ y)$$

and then the expression on the right becomes $$f^{x-1}(n).$$

MJD
  • 65,394
  • 39
  • 298
  • 580