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

  • Thread starter Thread starter tarheelborn
  • Start date Start date
  • Tags Tags
    parts Summation
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
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.