Question: Write a program in any language encoding the following algorithm: Given a function f(x) : (Get user inputs) INPUT a,b= endpoints of interval, n= number

Write a program in any language encoding the following algorithm: Given a function f(x) : (Get user inputs) INPUT a,b= endpoints of interval, n= number of intervals. (Do the integration) SET h =(ba). SET SUM =0. DO FOR i=1 TO n1 STEP 1 SET x=a+hi, SET SUM =SUM+2f(x) ENDDO (FOR i ). SET SUM =SUM+f(a)+f(b) SET ANS =SUMh/2 The value of the integral is given by ANS
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
