(a) Third-Degree Taylor Polynomial for f(x) about x=1:
The formula for the third-degree Taylor polynomial is:
T3(x) = f(1) + f'(1)(x-1) + f''(1)(x-1)2 / 2! + f'''(1)(x-1)3 / 3!
Given values: f(1) = 3, f′(1) = −2, f′′(1) = 2, f′′′(1) = 4.
T3(x) = 3 - 2(x-1) + (2/2)(x-1)2 + (4/6)(x-1)3
T3(x) = 3 - 2(x-1) + (x-1)2 + (2/3)(x-1)3
Approximate: f(1.1), meaning x=1.1
T3(1.1) = 3 - 2(1.1-1) + (1.1-1)2 + (2/3)(1.1-1)3
T3(1.1) = 3 - 2(0.1) + (0.1)2 + (2/3)(0.1)3 = 3 - 0.2 + 0.01 +(2/3)(0.001) ≈ 2.8106667
(b) Accuracy of the Approximation is bounded by the Langrange Remainder:
R3(x) = (|f(n+1)(z)| / (n+1)! )(x-a)(n+1)
R3(x) =( |f(4)(z)| / 4! ) • | x - 1|4
and |f(4)(z)| ≤ 2.
R3(1.1) ≤ ( 2 / 4! ) • | 1.1 - 1|4 = (2 / 24)(0.1)4 =(1/12) (.0001)
R3(1.1) ≤ 0.00000833.
(c) Second-Degree Taylor Polynomial for f′(x) about x=1.
T'2(x) = f'(x)+f''(1)(x-1)+f'''(1)/2! (x-1)2.
T'2(1.1) = f'(1.1)+f''(1)(1.1-1)+f'''(1)/2! (1.1-1)2
T'2(1.1) = -2 + 2(0.1)+4/2 (0.1)2 = -2 + 2(0.1)+ 2 (0.1)2
T'2(1.1) = -2 + 0.2 + 0.02 = -1.78
So, the approximation is: f'(1.1) ≈ -1.78