Question: Expandas a power series and use it to estimate
correct to three decimal places.
I am clueless!
Printable View
Question: Expandas a power series and use it to estimate
correct to three decimal places.
I am clueless!
That is
The nth derivative is, I believe,.
Write it as a Taylor's series about x= 1. Since the sign is alternating, the error is never larger than the next term in the series. Expand it until the next term is less than .001.
(Well, yeah, the generalized binomial series is probably easier!)
Also check out "Binomial Theorem" on Wikipedia. Rising factorial, falling factorial, I'm confused. How about I show you this Mathematica code and then you figure out how I got it and what it means.
Code:n[858]:=
myFunctions[x_] := 1/(1 + x)^(1/4)
mySeries[x_, n_] :=
Sum[(FactorialPower[-4^(-1), k]/k!)*
x^k, {k, 0, n}]
mySeries[0.1, 20]
myFunctions[0.1]
Out[860]=
0.9764540896763106
Out[861]=
0.9764540896763105