Roman C. answered 04/30/16
Tutor
5.0
(851)
Masters of Education Graduate with Mathematics Expertise
a) The easiest way is in reverse:
1/r - 1/(r+1)
= (r+1)/[r(r+1)] - r/[r(r+1)]
= [(r+1) - r] / [r(r+1)]
= 1/[r(r+1)]
This is a telescoping series:
∑r=1...n 1/[r(r+1)]
= ∑r=1...n [1/r - 1/(r+1)]
= ∑r=1...n 1/r - ∑r=1...n 1/(r+1)
= ∑r=1...n 1/r - ∑r=2...n+1 1/r
= 1 - 1/(n+1)
The infinite series is:
∑r=1...∞ 1/[r(r+1)] = limn→∞ [1 - 1/(n+1)] = 1
b) Answers about f(x) = 3 - x - x2:
i) f(1) = 3 - 1 - 12 = 1 > 0 ; f(2) = 3 - 2 - 22 = -3 < 0 ; f(x) continuous.
Thus by the intermediate value theorem, f(x) has a root α ∈ [1,2].
ii) Newton's method says that xn+1 = xn - f(xn) / f'(xn)
We have f'(x) = -1 - 2x
Therefore, xn+1 = xn + (3 - xn - xn2) / (1 + 2xn).
x2 = 1 + (3 - 1 - 12) / (1+2·1) = 1 + 1/3 ≈ 1.33