|
|
Subject:
Calculus Problem
Category: Science > Math Asked by: gyrocopter-ga List Price: $5.00 |
Posted:
02 May 2004 23:53 PDT
Expires: 03 May 2004 15:19 PDT Question ID: 340149 |
Evaluate the sum: (1/(1x2)) + (1/(2x3)) + (1/(3x4)) + (1/(4x5)) . . . + (1/(99x100)) (show work) | |
|
|
There is no answer at this time. |
|
Subject:
Re: Calculus Problem
From: minibaja-ga on 03 May 2004 02:54 PDT |
Since I'm an engineer and not a mathematician, I will suggest a simple solution that lacks grace, but is nonetheless practical. We have the: SUM(1 / (N*(N+1))) for N=1 to 99 Since there are only 99 terms, this is easy to solve. Using Matlab with the code: test = 0; for n=1:99 test = test + 1/(n*(n+1)); end test We get the result of 0.99. |
Subject:
Re: Calculus Problem
From: acidtest4u-ga on 03 May 2004 04:37 PDT |
Yep, there is a more elegant way !! no need to program I had seen it in my school cursus so long ago, i took some time to find it back in my rusty brain just consider that 1/(n*(n+1)) = (1/n) -(1/(n+1)) the formula now reads A=1/(1*2) +1/(2*3) + 1/(3*4)....... +1/(n*(n+1))= [1-(1/2)] +[(1/2)- (1/3)] +[(1/3)-1/4)] ..... +[(1/n)-(1/(n+1)] Basically, the opposites are neutralising each other, the only remaining terms are A=1-1/(n+1) So for n=99 A= 1-1/100= 0,99 |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |