Vous êtes sur la page 1sur 19

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

4. x = 9 cos t; y = 4 sen t, t 2 [0; 2]

t=linspace(0,2*%pi)';
x=9*cos(t);
y=4*sin(t);
w=[x,y];
plot2d(t,w);
plot(x,y);

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

8. x = 3 - 2t; y = 4 + t
-->x=3-2*t;y=4+t;plot(x,y);

4. x = 1+ t2; y = 1 + t
x=1+t^2;y=1+t;plot(x,y);

8. x = a cos t; y = b sen t
4. x = 2t2; y = 3t3
x=2*t^2; y =3*t^3;plot(x,y);

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

Calcule
4. x = 1 t2 ; y = 1 + t
t=poly(0,'t');
x=1-(t^2);
y=1+t;
// CALCULO DE dy/dx
derivat(y)/(derivat(x));
m=ans
// CALCULO DE d2y/dx2
derivat(m)
Solucin:
-->t=poly(0,'t');
-->x=1-(t^2);
-->y=1+t;
-->// CALCULO DE dy/dx
-->derivat(y)/(derivat(x));
-->m=ans
m =
1
- 2t
-->// CALCULO DE d2y/dx2

-->derivat(m)
ans =
2
2
4t

CALCULO III

LIC. JOSE QUINTANA

2014

UNIVERSIDADJOSE CARLOS MARIATEGUI


8. x = a cos t; y = b sen t
t=poly(0,'t');
a= poly(0,'a');
b=poly(0,'b');
x=a*cos(t);
y=b*sen(t);
// CALCULO DE dy/dx
derivat(y)/(derivat(x));
m=ans
// CALCULO DE d2y/dx2
derivat(m)
12. x = a (t - sen t) ; y = a (cos t + t sen t)
t=poly(0,'t');
x=a(t-sent);
y=a*(cost+tsent);
// CALCULO DE dy/dx
derivat(y)/(derivat(x));
m=ans
// CALCULO DE d2y/dx2
derivat(m)
Obtenga las rectas tangentes horizontales y verticales, determine la concavidad
4. x = 2t; y = 3t3
t=poly(0,'t');
x=2*(t^2)+1;
y=3*(t^3)+2;
// CALCULANDO Y'
j=derivat(y)
i=derivat(x)
y=j/m
//CALCULANDO Y''
yy=(i*derivat(j)-j*derivat(i))/(i)^3
'es concavo hacia arriba'
-->t=poly(0,'t');
-->x=2*(t^2)+1;
-->y=3*(t^3)+2;
-->// CALCULANDO Y'

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

-->j=derivat(y)
j =
2
9t
-->i=derivat(x)
i =
4t
-->y=j/m
y =
9t
--4
-->//CALCULANDO Y''
-->yy=(i*derivat(j)-j*derivat(i))/(i)^3
yy =
36
--64t
--> 'es concavo hacia arriba'
ans =
es concavo hacia arriba

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

12. Determine el rea de la superficie generada al girar en torno del eje x el arco de la
cicloide y x = a (t -sen t) ; y = a (1 - cos t) ;
t=poly(0,'t');
x= a*(t-sin(t))
y= a*(1-cos(t))
m=derivat(x)
n=derivat(y)
s=m^2+n^2
sqrt(s)
//definir funcion
function ar=f(t)
ar=2*%pi*(y)*ds
endfunction
// calcular integral entre t=0 y t=2*%pi
intg(1, 2*%pi,f)
16. Utilice la parametrizacion x = t cos t; y = t sen t para determinar la longitud de arco de la
primera vuelta completa de esta espiral (correspondiente a

t=poly(0,'t');
x=t*cos(t)
y=t*sin(t)
m=derivat(x)
n=derivat(y)
s=m^2+n^2
sqrt(s)
//definir funcion
function ar=f(t)
ar=2*%pi*(y)*ds
endfunction
// calcular integral entre t=0 y t=2*%pi
intg(1,2*%pi,f)
24. Determine el rea de la regin entre la curva dada y el eje x: x = 2t+1; y = t2 +3;
t=poly(0,'t');
x=t^3
y=t^2+1
m=derivat(x)
//definir funcion
o=y*m
function o=t;
intg(-1,1,t)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

-->t=poly(0,'t');
-->x=1-(t^2);
-->y=1+t;
-->// clculo de dy/dx
-->derivat(y)/(derivat(x))
ans =
1
- 2t
Ejemplo de una derivada
// variable simblica
x=poly(0,'x')
y=x^2;// clculo de la derivada
derivat(y)
**************************************
-->// variable simblica

-->x=poly(0,'x')
x =
x
-->y=x^2
y =
2 x
-->// clculo de la derivada
-->derivat(y)
ans = 2x
CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

+++++++++++++++++++++++++++++++++++
y=(2*x^2)/(2+x^3);
*********************
->y=(2*x^2)/(2+x^3);
-->dyt=derivat(y)
dyt =
4
8x - 2x
--------3 6
4 + 4x + x
-->
-->derivat(y)
ans =
4
8x - 2x
--------3 6
4 + 4x + x

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

Dibuje la grfica de las ecuaciones paramtricas y obtenga una ecuacin cartesiana de


la grfica.

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

12. Determine el rea de la superficie generada al girar en torno del eje x el arco de la
cicloide anterior.

t=linspace(0,2*%pi)';
x=t-sin(t);
y=1-cos(t);
w=[x,y];
plot2d(t,w)

20. Determine el rea de la superficie


obtenida al girar la astroide del
problema 17 en torno del eje x:

t=linspace(0,2%pi)';
x=4+cos(t)
y=sin(t)
w=[x,y];
CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

plot2d(t,w)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI


>x=4+cos(t)
x =
5.
4.9979867
4.9919548
4.9819287
4.9679487
4.9500711
4.9283679
4.9029265
4.8738494
4.8412535
4.8052703
4.7660444
4.723734
4.6785094
4.6305527
4.5800569
4.5272255
4.4722711
4.415415
4.3568862
4.2969204
4.2357589
4.1736482
4.1108382
4.0475819
3.984134
3.92075
3.8576852
3.7951933
3.7335262
3.672932
3.6136549
3.5559334
3.5
3.4460799
3.3943903
3.3451393
3.2985251
3.2547356
3.2139469
3.1763234
3.1420166
3.1111646
3.0838915
3.0603074
3.040507
3.0245702
3.0125611
3.0045281
3.0005035
3.0005035
3.0045281
3.0125611
3.0245702
3.040507
3.0603074
3.0838915
3.1111646
3.1420166
3.1763234
3.2139469
3.2547356
3.2985251
3.3451393
3.3943903
3.4460799
3.5
3.5559334
3.6136549
3.672932
3.7335262
3.7951933
3.8576852
3.92075
3.984134
4.0475819
4.1108382
4.1736482
4.2357589
4.2969204
4.3568862
4.415415
4.4722711
4.5272255
4.5800569
4.6305527
4.6785094
4.723734
4.7660444
4.8052703
4.8412535
4.8738494
4.9029265
4.9283679
4.9500711
4.9679487
4.9819287
4.9919548
4.9979867
5.

2014

-->y=sin(t)
y =
0.
0.0634239
0.1265925
0.1892512
0.2511480
0.3120334
0.3716625
0.4297949
0.4861967
0.5406408
0.5929079
0.6427876
0.6900790
0.7345917
0.7761465
0.8145760
0.8497254
0.8814534
0.909632
0.9341479
0.9549022
0.9718116
0.9848078
0.9938385
0.9988673
0.9998741
0.9968548
0.9898214
0.9788024
0.9638422
0.9450008
0.9223543
0.8959938
0.8660254
0.8325699
0.7957618
0.7557496
0.7126942
0.666769
0.6181590
0.5670599
0.5136774
0.4582265
0.4009305
0.3420201
0.2817326
0.2203105
0.1580014
0.0950560
0.0317279
- 0.0317279
- 0.0950560
- 0.1580014
- 0.2203105
- 0.2817326
- 0.3420201
- 0.4009305
- 0.4582265
- 0.5136774
- 0.5670599
- 0.6181590
- 0.666769
- 0.7126942
- 0.7557496
- 0.7957618
- 0.8325699
- 0.8660254
- 0.8959938
- 0.9223543
- 0.9450008
- 0.9638422
- 0.9788024
- 0.9898214
- 0.9968548
- 0.9998741
- 0.9988673
- 0.9938385
- 0.9848078
- 0.9718116
- 0.9549022
- 0.9341479
- 0.909632
- 0.8814534
- 0.8497254
- 0.8145760
- 0.7761465
- 0.7345917
- 0.6900790
- 0.6427876
- 0.5929079
- 0.5406408
- 0.4861967
- 0.4297949
- 0.3716625
- 0.3120334
- 0.2511480
- 0.1892512
- 0.1265925
- 0.0634239
- 2.449D-16

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

24.- Determine el rea de la regin entre la curva dada y el eje x:


a)
t=linspace(-1,2)';
x=2*t+1;
y=t^2+3;
w=[x,y];
plot2d(t,w)
//la funcin es
function w=f(t)
w=(2*t+1)-( t^2+3);
endfunction
intg(-1,2,f)
ans = - 6.

b)
t=linspace(o,10)';
x=exp(t);
y=exp(-t);
w=[x,y];
plot2d(t,w);

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

>t=linspace(0,%pi/2)';
x=3*sin(t) ;
y=4*cos(t);
w=[x,y];
plot2d(t,w)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

t=linspace(0,1)';
x=cosh(t);
y=sinh(t);
w=[x,y];
plot2d(t,w)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

40. Calcule la curvatura en los puntos indicados

t=linspace(0,*%pi/2);
param3d(2*cos(2*t),2*sin(2*t),3*t)

t=linspace(0,*%pi/2);
param3d(cos(2*t),2*sin(2*t),4*t)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

t=linspace(0,2);
param3d(t,t,t^2-1)

t=linspace(0,2);
param3d(2*t-1,t+2,t-3)

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

x=linspace(-1,1)';
plot2d(x,sqrt(1-x^2))

x=linspace(-1,1)';
plot2d(x,sqrt(4*x))

CALCULO III

LIC. JOSE QUINTANA

UNIVERSIDADJOSE CARLOS MARIATEGUI

2014

x=linspace(-1,1)';
plot2d(x,9-z^2))

x=linspace(-1,1)';
plot2d(x,sin(y)))

CALCULO III

LIC. JOSE QUINTANA

Vous aimerez peut-être aussi