Try the fastest way to create flashcards
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. 232x1.21+3.5x4.7dx\int_{2}^{3} \frac{2 x^{1.2}}{1+3.5 x^{4.7}} d x

Solution

Verified
Answered 1 month ago
Answered 1 month ago
Step 1
1 of 4

We 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

232x1.21+3.5x4.7 ⁣dx0.0275\int_2^3 \dfrac{2x^{1.2}}{1+3.5x^{4.7}}\dd{x} \approx 0.0275

Create a free account to view solutions

Create a free account to view solutions

Recommended textbook solutions

Finite Mathematics and Calculus with Applications  10th Edition by Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell

Finite Mathematics and Calculus with Applications

10th EditionISBN: 9780133935592Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell
7,669 solutions
Finite Mathematics and Calculus with Applications 9th Edition by Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell

Finite Mathematics and Calculus with Applications

9th EditionISBN: 9780321746238Margaret L. Lial, Nathan P. Ritchey, Raymond N. Greenwell
7,590 solutions
Finite Math and Applied Calculus 6th Edition by Stefan Waner, Steven Costenoble

Finite Math and Applied Calculus

6th EditionISBN: 9781133607700Stefan Waner, Steven Costenoble
4,880 solutions
Finite Mathematics for the Managerial Life and Social Sciences 12th Edition by Tan, Soo

Finite Mathematics for the Managerial Life and Social Sciences

12th EditionISBN: 9781337405782Tan, Soo
3,074 solutions

More related questions

1/4

1/7