Answer:
We want to find the first 3 terms of the Taylor's series expansion for f(x) = sin(x) around x = 0.
Remember that a Taylor's series expansion of a function f(x) around the point x₀ is given by:
[tex]f(x) = f(x_0) + \frac{1}{2!}f'(x_0)*(x - x_0) + \frac{1}{3!}*f''(x_0)*(x - x0)^2 + ...[/tex]
Where in the formula we have the first 3 terms of the expansion (but there are a lot more).
So, if:
f(x) = sin(x)
x₀ = 0
The terms are:
[tex]f(x_0) = sin(0) = 0[/tex]
[tex]\frac{1}{2!}*f(x_0)'*(x - x_0) = \frac{1}{2} cos(0)*(x - 0) = x/2[/tex]
[tex]\frac{1}{3!}*f(x_0)''*(x - x_0)^2 = \frac{1}{6}*-sin(0)*(x - 0)^2 = 0[/tex]
[tex]\frac{1}{4!}*f(x_0)'''*(x - x_0)^3 = \frac{1}{24}*-cos(0)*(x- 0)^3 = -\frac{x^3}{24}[/tex]
We already can see that the next term is zero (because when we derive the cos part, we will get a sin() that is zero when evaluated in x = 0), then the next non zero term is:
[tex]\frac{1}{6!}*f(x_0)''''*(x - x_0)^5 = \frac{1}{2*3*4*5*6} *(x - 0)^5 = \frac{x^5}{720}[/tex]
Then we can write:
[tex]sin(x) = \frac{x}{2} - \frac{x^3}{24} + \frac{x^5}{720}[/tex]
Evaluating this in x = 0.2, we get:
[tex]sin(0.2) = \frac{0.2}{2} - \frac{0.2^3}{24} + \frac{0.2^5}{720} = 0.099667[/tex]