Lesson BASICS - Geometric Series
Algebra
->
Sequences-and-series
-> Lesson BASICS - Geometric Series
Log On
Algebra: Sequences of numbers, series and how to sum them
Section
Solvers
Solvers
Lessons
Lessons
Answers archive
Answers
Source code of 'BASICS - Geometric Series'
This Lesson (BASICS - Geometric Series)
was created by by
longjonsilver(2297)
:
View Source
,
Show
About longjonsilver
:
I have a new job in September, teaching
<b>Introduction</b> Geometric Series or Progressions are sequences of numbers that increment by a fixed common multiple eg 1,2,4,8,16,... is a Geometric series with common ratio of 2. <b>Definitions</b> Let r = common ratio Let a = first term Let n = number of terms Let Sn = sum of first n terms So, in the sequence 10,5,2.5,1.25,... we have: first term is 10 --> a = 10 ratio is 1/2 --> r = 1/2 <b>nth Term</b> Algebraically: 1st term = {{{a}}} 2nd term = {{{ar}}} 3rd term = {{{ar^2}}} 4th term = {{{ar^3}}} 5th term = {{{ar^4}}} 6th term = {{{ar^5}}} and so on. In general, the nth term is given as {{{ ar^(n-1) }}} --> {{{ nth term = ar^(n-1) }}} <b>EXAMPLES</b> Q. Find the 8th term of the sequence 1,{{{1/2}}},{{{1/4}}},{{{1/8}}},... A. a=1, r={{{1/2}}}, n=8. {{{ nth term = ar^(n-1) }}} {{{ 8th term = (1)(1/2)^(8-1) }}} {{{ 8th term = (1/2)^(7) }}} {{{ 8th term = (1/128) }}} which we can verify by writing out the first 8 terms in full: 1,{{{1/2}}},{{{1/4}}},{{{1/8}}},{{{1/16}}},{{{1/32}}},{{{1/64}}},{{{1/128}}}, <b>Summation</b> The summation of n terms is given by: {{{ Sn = (a(1-r^n))/(1-r) }}} or {{{ Sn = (a(r^(n)-1))/(r-1) }}} <b>EXAMPLES</b> Q. Find the sum of the first 10 terms of the sequence 1,{{{1/2}}},{{{1/4}}},{{{1/8}}},... a=1, r={{{1/2}}}, n=10 --> {{{ Sn = (a(1-r^n))/(1-r) }}} {{{ S10 = ((1)(1-(1/2)^10))/(1-(1/2)) }}} {{{ S10 = ((1-(1/2)^10))/(1/2) }}} {{{ S10 = (1-(1/1024))/(1/2) }}} {{{ S10 = (1023/1024)/(1/2) }}} {{{ S10 = 1023/512 }}} --> S10 = 1.9980 <b>Further Example</b> Q. The second term of a geometric series is {{{8/9}}} and the sixth term is {{{9/2}}}. Find the common ratio, the ninth term, the sum of the first 8 terms and the sum of the first 20 terms. We do not know a, which is crucial in all the calculations, so we are aiming to find that as well as r. So, what we do know is the following: 2nd term, {{{ar = 8/9 }}} 6th term, {{{ar^5 = 9/2 }}} divide these to give {{{ (ar^5)/(ar) = (9/2)/(8/9) }}} {{{ (r^4) = 81/16 }}} which is {{{r = 3/2}}} because {{{ 81/16 = 3^4/2^4 }}} So, using this in {{{ ar = 8/9 }}} we have {{{ a(3/2) = 8/9 }}} --> {{{ a = (8/9)*(2/3) }}} --> a = 16/27 The 10th term = {{{ ar^9 }}} The 10th term = {{{ (16/27)(3/2)^9 }}} The 10th term = {{{ (16/27)(3/2)^9 }}} The 10th term = 22.78125 Now for the sum of 8 terms: {{{ S8 = ((16/27)(1-(3/2)^8))/(1-(3/2)) }}} {{{ S8 = ((16/27)(1-(3/2)^8))/(-(1/2)) }}} {{{ S8 = ((16/27)(1-25.62890625))/(-(1/2)) }}} S8 = 29.18981481 Now for the sum of 20 terms: {{{ S20 = ((16/27)(1-(3/2)^20))/(-(1/2)) }}} {{{ S20 = ((16/27)(1-3325.25673))/(-(1/2)) }}} S20 = 3939.859828 <b>Sum to Infinity</b> Geometric Series have a further application to their summation formula. When |r|<1, the numbers in the series get progressively smaller. If we add these up, the sum approaches a certain value. This differs from cases where |r|>1, as in the example above, where as n increases, so the sum increases too and would carry on increases and increases getting bigger and bigger. So, with the stipulation that |r|<1, the sum to infinity of a Geometric Series is {{{a/(1-r)}}} --> Sum to infinity = {{{a/(1-r)}}} for |r|<1 <b>EXAMPLE</b> Q. For the Geometric series 8, 4, 2, 1, 1/2,... Find the sum to the first ten terms and then find the sum to infinity. a=8 r=1/2 Just looking at the terms, we have 8+4+2+1+(1/2)+... this part is 15.5. Subsequent terms are getting smaller and so the sum will not increase appreciably. In fact, the sum will head towards a certain value...this is the "sum to infinity". We could guess and say it is probably 16. {{{ Sn = (a(1-r^n))/(1-r) }}} {{{ S10 = ((8)(1-(1/2)^10))/(1-(1/2)) }}} {{{ S10 = ((8)(1-(1/1024)))/(1/2) }}} S10 = 15.984375 Sum to infinity: {{{ S = a/(1-r) }}} {{{ S = 8/(1-(1/2)) }}} {{{ S = 8/(1/2) }}} --> Sum to infinity = 16 <b>Summary</b> This is the introduction to Geometric Series'. However, with the question quoted at the end here, I have covered all of the major aspects of the topic. It is all about practice now: practice using the "nth term" and "summation" formulae.