I greatly appreciate it if someone could help me with this problem:
Use the Error Bound to find the least possible value of $N$ for which
$Error(S_N)\le 1 \times 10^{-9}$
in approximating the integral $\int\limits_0^1 3e^{x^2}dx$.
Thanks so much!
EDIT:
The following is my work,
We already know that Error(Sn) <= (K(b-a)^5)/(180N^4)
Thus, the first step is to find the fourth derivative: f'(x) = 6xe^(x^2) f''(x) = 6(2x^2 + 1)e^(x^2) f'''(x) = 12e^(x^2)x(2x^2+3) f''''(x) = 12e^(x^2)(4x^4 + 12x^2 + 3)
K = f''''(1) = 12*19e = 228e
Then I just plugged K in and solved for N:
(228e(1-0)^5)/(180N^4) <= 10^-9
And I eventually came up with 242 <= N, so the least possible value is 242, but apparently that's not right.
You have everything correct, except the least n value would be the next even whole number which is 244.