0

Im supposed to explain the reasoning behind retaining a negative error from a trapezoidal approximation of the function: f[x] = e^4x.

I have graphed the function and it looks like this: Graph of Function

I think the main reason I received a negative error is because the function is concave up and the Trapezoidal Rule overestimates the approximation. Im not exactly sure if this is correct, but if it were to be and someone understands it better than I do, I would really appreciate an explanation.

Thank you for your time, and efforts.

Mike
  • 25

1 Answers1

1

The trapezoidal rule is estimating your function as sequence of lines over a set of intervals.

i.e. at each point in the interval $[a,b], \lambda f(a) + (1-\lambda) f(b) $ with $\lambda \in [0,1]$ is being used as a stand in for $f(\lambda a + (1-\lambda) b)$

Since $f(x)$ is convex, $\lambda f(a) + (1-\lambda) f(b)\ge f(\lambda a + (1-\lambda) b)$

Doug M
  • 57,877