0% found this document useful (0 votes)
24 views3 pages

Topic: Integration LAB Experiment: Reg No: 19BEC7016 Name: B.Vishnu

The document discusses integration problems involving multiple variables. It provides 6 problems to calculate areas under curves and double integrals over different regions using symbolic integration in MATLAB. Solutions to the problems are also included.

Uploaded by

Alone Inc.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views3 pages

Topic: Integration LAB Experiment: Reg No: 19BEC7016 Name: B.Vishnu

The document discusses integration problems involving multiple variables. It provides 6 problems to calculate areas under curves and double integrals over different regions using symbolic integration in MATLAB. Solutions to the problems are also included.

Uploaded by

Alone Inc.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

LAB-7

Topic: Integration LAB Experiment


Reg no: 19BEC7016

Name: B.Vishnu
%1.

clc
clear
all syms
x
A = int(((x^3)/12)+(1/x),1,4)
A =

%2.

clc clear all syms x y f(y)=(2*sqrt(x))

f(y) =

int(f(y),1,4);
ezplot(f(y),1,4);

1
%3. clc
clear
all syms
x y
vpaintegral(vpaintegral(100-6*x^2*y, x, [0 2]), y, [-1 1])

ans =

%4.

clc
clear
all syms
x y
area= int(int(1,y,x^2,x),x,0,1)
area =

area=1/6

area = 0.1667

2
fprintf('Area of region : %d',area)

Area of region : 1.666667e-01

%5.

clc clear all syms x y f(x,y)=x*cos(x*y)

f(x, y) =

vpaintegral(vpaintegral(x*cos(x*y), x, [0 pi]), y, [0 1])


ans =

%6.

clc
clear
all syms
x y
A = (1/2)*int(4*cos(2*x),0,pi/4)
A =

You might also like