Solve Summation by Parts for Sum[n/3^n]

  • Thread starter Thread starter tarheelborn
  • Start date Start date
  • Tags Tags
    parts Summation
tarheelborn
Messages
121
Reaction score
0

Homework Statement



Using summation by parts, find Sum[n/3^n].


Homework Equations



Sum[a_k*b_k] = s_n*b_(n+1) - Sum[s_k(b_(k+1)-b_k]


The Attempt at a Solution



Let a_k = 1/3^k and b_k = k. Then b_(k+1)-b_k = 1. But what is s_k? I know that it is 1/3 + 1/3^2 + 1/3^3 + ... but what is the general term? Thanks for your help.
 
Physics news on Phys.org
S_n is the sequence of partial sums of a_k. My formula is from Goldberg's Methods of Real Analysis.
 
sum(n*(1/3)^n)
very similar to a geometric series, after one differentiation.

sum(n*(1/3)^n) = (1/3)*sum(n*(1/3)^(n-1))

we know that the sum of a geometric series is 1/(1-q), here q=1/3.

sum = (1/3)*diff(1/(1-(1/3)))

sound familiar?

*it's sum found using the integration/differentiation by parts theorem.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top