1

this is very easy I think but I don't have much experience with geometric series. I need to find/simplify the sum

$x^k+x^{k+1}+\dots+x^{k+m}$

where $x\in\mathbb{R}, k\in\mathbb{Z},m\in\mathbb{N}$

So I'm thinking I just write this as

$x^k+x\times x^k+x^2\times x^k+\dots+x^m\times x^k$

Now isn't this a geometric series with $a=x^k$ and $r=x$? So it should have the sum

$$s=\frac{x^k(1-x^{k+m})}{1-x}=\frac{x^k-x^{2k+m}}{1-x}$$

Is this the correct answer?

Corey
  • 309

3 Answers3

5

$$S=x^k+x^{k+1}+\dots+x^{k+m}$$ No need to know by heart some formula. Just multiply by $(1-x)$ : $$S(1-x)=(x^k+x^{k+1}+\dots+x^{k+m})(1-x)\\=x^k+x^{k+1}+x^{k+2}+\dots+x^{k+m}-x^{k+1}-x^{k+2}-\dots-x^{k+m}-x^{k+m+1}$$ Simplify (this is a telescoping series) : $$S(1-x)=x^k-x^{k+m+1}$$ $$S=\frac{x^k-x^{k+m+1}}{1-x}$$

JJacquelin
  • 66,221
  • 3
  • 37
  • 87
2

No, that is not the correct answer. The correct answer is$$\frac{x^k-x^{k+m+1}}{1-x}.$$

0

Since $$1+x+\ldots+x^m=\frac{x^{m+1}-1}{x-1}$$ Then $$x^k(1+x+\ldots+x^m)=\frac{x^{m+1+k}-x^k}{x-1}$$

ajotatxe
  • 65,084