Question: Help. Write in Python. Integrate a function by the trapezoidal rule 5 points An approximation to the integral of a function f(c) over an interval
Help. Write in Python.
Integrate a function by the trapezoidal rule 5 points An approximation to the integral of a function f(c) over an interval [a, b] can be found by first approximating f(x) by the straight line that goes through the end points (a, f(a)) and (b, S(b), and then finding the area under the straight line, which is the area of the trapezoid. (2) The resulting formula becomes [ fle) = ;" sta) + F6). Write a function trapezint1( f,a,b) that returns this approximation to the integral. The argument f is a Python implementation f(x) of the mathematical function f(c). For instance, the result of trapezint1( math.sin,0,0.5* math.pi ) should be 0.7854 (with some numerical error). The result of trapezint1( abs, -1,1 ) should be 2.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
