S = 1/(1 + 1^2 + 1^4)
+ 2/(1 + 2^2 + 2^4)
+ 3/(1 + 3^2 + 3^4)
+ 4/(1 + 4^2 + 4^4)
+ ..... .....
+ 200/(1 + 200^2 + 200^4).
Find the value of 80402 * S.
This question came from a local mathematical olympiad competition I had just a few weeks ago. I have finished it already but I am unsure of the answers. Note that no calculators are allowed, and also the answer is in integer form 0 < N <= 99999.
Please show how you do it.
2007-06-09
07:09:00
·
5 answers
·
asked by
to0pid
2
in
Science & Mathematics
➔ Mathematics
Mona C,
thanks for answering! But the answer is an integer. Meaning 80402 * S is an integer (not rounded off too, exact answer). I didn't manage to get any answer so I left it blank.
2007-06-14
00:38:36 ·
update #1
I wrote a C program:
#include
main() {
double ans=0, count=0;
for (count=1;count <= 200;count++) {
ans = ans + 80402*count/(1 + count*count+count*count*count*count);
}
printf("%.3f", ans);
}
Output was "40200.000"
Can anyone explain that?
2007-06-14
00:45:38 ·
update #2
Sorry the line of code that got truncated off:
ans = ans + 80402 * count / (1 + count * count + count * count * count * count );
2007-06-14
00:51:03 ·
update #3
Mona C,
if you had answered 40201 then you are 1 more than the correct answer, which is wrong! lol. But we can deduce S is approx 0.5, but how can we arrive to that, and why is S = 40200/80402?
2007-06-14
21:39:25 ·
update #4