Está en la página 1de 8

UNIVERSIDAD NACIONAL DE CAJAMARCA

FACULTAD DE INGENIERÌA
ESCUELA PROFESIONAL DE INGENIERÌA GEOLÓGICA

DOCENTE: CHILON CAMACHO, TITO MANRIQUE

TEMA: ÀREA Y LONGITUD DE FUNCIONES

CURSO: ANÀLISIS MATEMÀTICO II

ESTUDIANTE : CARUAJULCA ARANA ,TATIANA ANALÌ

CICLO: III

CAJAMARCA, 05 DE JUNIO DEL 2019


Área de funciones en Matlab
1. Área de función rectangular.

x=1:0.01:5;
y=x.^2+12;
plot(x,y,'r')
hold on
y=2*x.^2+x+1;
plot(x,y,'m')
y=10*x+2;
plot(x,y,'k')
intersecciones
x=solve((10*x+2)-(x.^2+12))
x = 5 - 15^(1/2); 15^(1/2) + 5
x=solve((x.^2+12)-(2*x.^2+x+1))
x = - (3*5^(1/2))/2 - 1/2; (3*5^(1/2))/2 - 1/2
x=solve((10*x+2)-(2*x.^2+x+1))
x = 9/4 - 89^(1/2)/4; 89^(1/2)/4 + 9/4
syms x
I=int((10*x+2)-(x.^2+12),5 - 15^(1/2),(3*5^(1/2))/2 - 1/2)
I=int((10*x+2)-(2*x.^2+x+1),2.85,89^(1/2)/4 + 9/4)
2. Área de función rectangular.

x=0.5:0.01:3.5;
y=2*x.^2+5;
plot(x,y,'g')
hold on
y=9*x.^2+1;
plot(x,y,'r')
y=6*x+7;
plot(x,y,'b')
x=solve((9*x.^2+1)-(2*x.^2+5))
x = -(2*7^(1/2))/7; (2*7^(1/2))/7
x=solve((9*x.^2+1)-(6*x+7))
x = 1/3 - 7^(1/2)/3; 7^(1/2)/3 + 1/3
x=solve((6*x+7)-(2*x.^2+5))
x = 3/2 - 13^(1/2)/2; 13^(1/2)/2 + 3/2
syms x
I=int((9*x.^2+1)-(2*x.^2+5),(2*7^(1/2))/7,7^(1/2)/3 + 1/3)
I=int((6*x+7)-(2*x.^2+5),7^(1/2)/3 + 1/3,13^(1/2)/2 + 3/2)
3. Área en coordenadas polares

thetha=0:0.01:pi;

r= 9*cos(2*thetha);
polar(thetha,r,'r')

hold on

r1=2+3*sin(thetha);
polar(thetha,r1,'g')

syms thetha
area=(1/2)*int((2+3*sin(thetha)^2)-(9*cos(2*thetha))^2,(9*cos(2*thetha)),pi -
asin(57^(1/2)/12 - 1/12))

solve(9*cos(2*thetha)-(2+3*sin(thetha)))
4. Área en coordenadas polares

thetha=0:0.01:2*pi;

r= sin(2*(thetha));
polar(thetha,r,'b')

hold on

r1=sin(thetha);
polar(thetha,r1,'m')

syms thetha
area=(1/2)*int((sin(2*(thetha)^2)-(sin(thetha))^2),0,pi/3)

intersecciones
solve(sin(2*thetha)-(sin(thetha)))
5. Área de regiones encerradas por ecuaciones paramétricas

t=-9:0.01:9;
x= (3*t.^2);
y= (2*t.^3);
plot(x,y)
syms t
area=int(((2*t.^3))*(6*t),0,4)

6. Área de regiones encerradas por ecuaciones paramétricas

t=0:0.01:2*pi;
x= 2*sin(t);
y= 4*sin(t);
polar(x,y)
syms t
area=2*int((4*sin(t))*(2*cos(t)),0,1/2*pi)
7. Volumen de sòlido de revolución

x=1:0.01:3;
y=x.^4-x ;
plot(x,y)
cylinder(y)
syms x
I=int((x.^4-x).^2*pi,1,3)

8. Volumen de sòlido de revolución

x=0:0.01:1.5;
y=x.^2/2-x/3;
plot(x,y)
cylinder(y)
syms x
I=int((x.^2/2-x/3).^2*pi,0,1.5)
9. Longitud de curva

x=1:0.01:6;
y=2*x.^2-3*x;
plot(x,y,'g')
syms x
I=int(sqrt(1+(4*x-3).^2),1,6)

10. Longitud de curva

x=1:0.01:5;
y=6*x.^2-2*x-8 ;
plot(x,y,'r')
syms x
I=int(sqrt(1+(12*x-2).^2),1,5)

También podría gustarte