Roots!

Algebra Level 2

Caculate:


The answer is 98.49.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Damiann Mangan
Apr 15, 2015

Consider i i -th term,

1 + 1 i 2 + 1 ( i + 1 ) 2 = i 4 + 2 i 3 + 3 i 2 + 2 i + 1 i 2 ( i + 1 ) 2 = 1 + 1 i ( i + 1 ) = 1 + 1 i 1 i + 1 \sqrt{1 + \frac{1}{i^2} + \frac{1}{(i+1)^2}} = \sqrt{\frac{i^4 + 2i^3 + 3i^2 + 2i + 1}{i^2(i+1)^2}} = 1 + \frac{1}{i(i+1)} = 1 + \frac{1}{i} - \frac{1}{i+1}

By telescoping, we get 98 + 1 2 1 100 = 98 + 49 100 = 98.49 98 + \frac{1}{2} - \frac{1}{100} = 98 + \frac{49}{100} = 98.49 .

Or, alternatively, calculate it through python.

1
2
3
>>> import math
>>> print sum([math.sqrt(1 + 1.0/i**2 + 1.0/(i+1)**2) for i in xrange(2, 100)])
98.94

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...