reopened by
3,240 views

3 Answers

2 votes
2 votes

A little late than never. Here is my solution.

 

2 votes
2 votes

Error in trapezoidal rule is given by : $$E_n = -\frac{(b-a)^3}{12N^2} f''(c)$$ for some value $c$ between $a$ and $b$. Now, we want accuracy of at least $\frac{1}{3}*10^{-6}$ meaning maximum error will be $\frac{1}{3}*10^{-6}$ i.e. $$\left\vert E_n\right\vert < \frac{1}{3}*10^{-6}$$ We are given $a$ as 1 and $b$ as 2, and we need to find $N$. By rearranging terms, we get $$N^2 > \frac{(b-a)^3}{12*\frac{1}{3}*10^{-6}}\left\vert f''(c) \right\vert = \frac{(2-1)^3}{4*10^{-6}}\left\vert f''(c) \right\vert = \frac{10^6}{4}\left\vert f''(c) \right\vert$$ So $$N > \frac{10^3}{2}\sqrt{\left\vert f''(c) \right\vert}$$ Now $f''(x) = xe^x + 2e^x$, and between 1 and 2, it can take maximum value at 2 (we are looking at max value because we want R.H.S. of above inequality to be as large as poosible so that we can find least bound on N). So $f''(2) = 4e^2$. So $$N > \frac{10^3}{2}\sqrt{4e^2} = \frac{10^3}{2}*2e = 1000e$$ Hence, option (A) is correct.

Answer:

Related questions

3.6k
views
2 answers
3 votes
Arjun asked Sep 24, 2014
3,611 views
Function $f$ is known at the following points:$x$00.30.60.91.21.51.82.12.42.73.0$f(x)$ ... computed using the trapezoidal rule is(A) 8.983 (B) 9.003 (C) 9.017 (D) 9.045
4.9k
views
1 answers
1 votes
Kathleen asked Sep 15, 2014
4,906 views
The trapezoidal rule for integration gives exact result when the integrand is a polynomial of degree0 but not 11 but not 00 or 12
1.6k
views
1 answers
0 votes
Kathleen asked Sep 29, 2014
1,562 views
The trapezoidal method to numerically obtain $\int_a^b f(x) dx$ has an error E bounded by $\frac{b-a}{12} h^2 \max f&rsquo;&rsquo;(x), x \in [a, b]$ where $h$ ... $E \leq 10^{-4}$ in computing $\ln 7$ using $f=\frac{1}{x}$ is6010060010000
3.6k
views
1 answers
5 votes
go_editor asked Sep 28, 2014
3,625 views
With respect to the numerical evaluation of the definite integral, $K = \int \limits_a^b \:x^2 \:dx$, where $a$ and $b$ are given, which of the ... to the exact value of the definite integral.I onlyII onlyBoth I and IINeither I nor II