Related questions with answers
Question
Use technology to approximate the given integrals with Riemann sums, using (a) n=10, (b) n=100, and (c) n=1,000. Round all answers to four decimal places.
Solution
VerifiedAnswered 1 month ago
Answered 1 month ago
Step 1
1 of 4We will be using Octave , a free software similar to Matlab.
a.
The code that computes the left Riemann sum is
n = 10;
a = 2;
b = 3;
dx = (b-a)/n;
grid = a:dx:b-dx;
left_r_sum = 0;
for i = 0:n-1
left_r_sum = left_r_sum+(2*grid(i+1)^(1.2))/(1+3.5*grid(i+1)^(4.7));
endfor
left_r_sum = left_r_sum*dx
The result is
Create a free account to view solutions
By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Create a free account to view solutions
By signing up, you accept Quizlet's Terms of Service and Privacy Policy
Recommended textbook solutions

Finite Mathematics and Calculus with Applications
10th Edition•ISBN: 9780133935592Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell7,669 solutions

Finite Mathematics and Calculus with Applications
9th Edition•ISBN: 9780321746238Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell7,590 solutions

Finite Math and Applied Calculus
6th Edition•ISBN: 9781133607700Stefan Waner, Steven Costenoble4,880 solutions

Finite Mathematics for the Managerial Life and Social Sciences
12th Edition•ISBN: 9781337405782Tan, Soo3,074 solutions
More related questions
- probability
- calculus
1/4
- probability
- calculus
1/7