Question

In: Mechanical Engineering

Compute the double integral A = 2 (x + y)dxdy y Note that the region of integration lies to the right of the line y = x.

Compute the double integral

A = 2 (x + y)dxdy y

 

Note that the region of integration lies to the right of the line y = x. Use this fact and a MATLAB relational operator to eliminate values for which y > x.

Solutions

Expert Solution

Consider the double integral

A = ∫103yx2(x + y)dxdy

 

To evaluate the integral, use symbolic conversion of the variables (command is ‘int’) and then convert to real number using ‘double’ command.

 

Matlab\r\ncode: for Required problem is provided below.

Save this program as ‘Required problem’.

% Compute the double integral

clc; clear;

syms x y

fun = @(x,y)x.^2.*(x+y);

A = int(fun,x,[y,3]);

B = int(A,y,0,1);

C = double(B);

disp(\'Double integration of the above function:\');

disp(C);

 

The output of the code ‘Required problem’ in the command window is shown below:

Double integration of the above function:

24.6333.


Double integration of the above function:

24.6333.

Related Solutions

by using double integral find the volume of the region that bounded between two cylinder x^2+y^2=4...
by using double integral find the volume of the region that bounded between two cylinder x^2+y^2=4 and x^2+z^2=4
Compute the line integral of the vector field F(x, y, z) = ⟨−y, x, z⟩ along...
Compute the line integral of the vector field F(x, y, z) = ⟨−y, x, z⟩ along the curve which is given by the intersection of the cylinder x 2 + y 2 = 4 and the plane x + y + z = 2 starting from the point (2, 0, 0) and ending at the point (0, 2, 0) with the counterclockwise orientation.
1. Evaluate the double integral for the function f(x,y) and the given region R. R is...
1. Evaluate the double integral for the function f(x,y) and the given region R. R is the rectangle defined by -2  x  3 and 1   y  e4 2. Evaluate the double integral    f(x, y) dA R for the function f(x, y) and the region R. f(x, y) = y x3 + 9 ; R is bounded by the lines x = 1, y = 0, and y = x. 3. Find the average value of the function f(x,y) over the plane region R....
Calculate the double integral ∫∫Rxcos(x+y)dA∫∫Rxcos⁡(x+y)dA where RR is the region: 0≤x≤π3,0≤y≤π2
Calculate the double integral ∫∫Rxcos(x+y)dA∫∫Rxcos⁡(x+y)dA where RR is the region: 0≤x≤π3,0≤y≤π2
using / for integral Evaluate the double integral //R cos( (y-x)/(y+x) )dA where R is the...
using / for integral Evaluate the double integral //R cos( (y-x)/(y+x) )dA where R is the trapezoidal region with vertices (1,0), (2,0), (0,2), and (0,1)
Evaluate the surface integral. Double integral x dS, S is the triangular region with vertices (1,...
Evaluate the surface integral. Double integral x dS, S is the triangular region with vertices (1, 0, 0), (0, −2, 0), and (0, 0, 6).
Find the double integral of region (2x-y)dA, where region R is in the first quadrant enclosed...
Find the double integral of region (2x-y)dA, where region R is in the first quadrant enclosed by the circle x2+y2=4 and the lines x=0 and y=x
Let R be the region enclosed by the x-axis, the y-axis, the line x = 2...
Let R be the region enclosed by the x-axis, the y-axis, the line x = 2 , and the curve ? = 2?? +3? (1) Find the area of R by setting up and evaluating the integral. (2) Write, but do not evaluate, the volume of the solid generated by revolving R around the y-axis (3) Write, but do not evaluate the volume of the solid generated by revolving R around the x-axis (4) Write, but do not evaluate the...
Use a double integral to find the area of the region. The region inside the cardioid...
Use a double integral to find the area of the region. The region inside the cardioid r = 1 + cos(θ) and outside the circle r = 3 cos(θ). Can someone explain to me where to get the limits of integration for θ? I get how to get the pi/3 and -pi/3 but most examples of this problem show further that you have to do more for the limits of integration but I do not get where they come from?
Compute the derivative of the given vector field F. Evaluate the line integral of F(x,y,z) = (y+z+yz , x+z+xz , x+y+xy )
Compute the derivative of the given vector field F. Evaluate the line integral of F(x,y,z) = (y+z+yz , x+z+xz , x+y+xy )over the path C consisting of line segments joining (1,1,1) to (1,1,2), (1, 1, 2) to (1, 3, 2), and (1, 3, 2) to (4, 3, 2) in 3 different ways, along the given path, along the line from (1,1,1) to (4,3,2), and finally by finding an anti-derivative, f, for F.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT