document.write( "Question 1120744: discuss how you will find the sum of the series: \r
\n" );
document.write( "\n" );
document.write( "1/2 + 1/4 + 1/8+ ... + 1/512\r
\n" );
document.write( "\n" );
document.write( "* our topic focuses on harmonic and fibonacci sequence but it can be other types of sequences or series :-) \n" );
document.write( "
Algebra.Com's Answer #736453 by rothauserc(4718)![]() ![]() You can put this solution on YOUR website! a geometric series is defined as \n" ); document.write( ": \n" ); document.write( "x(n) = a * r^(n-1), where x(n) is the nth term, r is the common ratio and a is the first term \n" ); document.write( ": \n" ); document.write( "for this problem a = 1/2 and r = 1/2 \n" ); document.write( ": \n" ); document.write( "the sum of the first n terms of a geometric series is defined as \n" ); document.write( ": \n" ); document.write( "summation for k from 0 to n-1 of (ar^k) = a * (1 - r^n) / (1 -r) = \n" ); document.write( ": \n" ); document.write( "(1/2) * (1 -(1/2)^n) / (1 -(1/2)) = \n" ); document.write( ": \n" ); document.write( "(1/2) * (1 -(1/2)^n) * 2 = (1 -(1/2)^n) \n" ); document.write( ": \n" ); document.write( " \n" ); document.write( " |