1,562 views
0 votes
0 votes

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’’(x), x \in [a, b]$ where $h$ is the width of the trapezoids. The minimum number of trapezoids guaranteed to ensure $E \leq 10^{-4}$ in computing $\ln 7$ using $f=\frac{1}{x}$ is

  1. 60
  2. 100
  3. 600
  4. 10000

1 Answer

0 votes
0 votes
Interval [a b] = [1 7]

f(x) = 1/x

Max f"(x) in [a b] is 2 only ..  // f"(x) = 2/x^3

Error = (b -a)*h*h*max f"(x)/12.   // given

         = (7-1)*h*h*2/12

         = h*h

Error <= 10^(-4)         // given

h*h <= 10^(-4)

h <= 10^(-2)

 

(b - a)/n = h                // n is no of trapezoid

(7-1)/n >=10^(-4)

n <= 600

MinimumMinimum value of n is 600..

Related questions

12.5k
views
2 answers
3 votes
Kathleen asked Sep 29, 2014
12,485 views
The Newton-Raphson method is used to find the root of the equation $X^2-2=0$. If the iterations are started from -1, the iterations willconverge to -1converge to $\sqrt{2}$converge to $\sqrt{-2}$not converge
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
3.2k
views
3 answers
1 votes
Kathleen asked Sep 11, 2014
3,241 views
The minimum number of equal length subintervals needed to approximate $\int_1^2 xe^x\,dx$ to an accuracy of at least $\frac{1}{3}\times10^{-6}$ using the trapezoidal rule is1000e1000100e100
1.6k
views
1 answers
1 votes
Ishrat Jahan asked Nov 3, 2014
1,620 views
If the trapezoidal method is used to evaluate the integral obtained $\int_{0}^{1} x^2dx$, then the value obtainedis always > (1/3)is always < (1/3)is always = (1/3)may be greater or lesser than (1/3)