Vous êtes sur la page 1sur 8

TALLER 2 DE FUNCIONES VECTORIALES

PRESENTADO A:

ING. ISAIAS OLARTE

PRESENTADO POR:

JULIANA ALEXANDRA PEREZ VIDAL


SANDRA PATRICIA ARCINIEGAS ROA

UNIVERSIDAD COOPERATIVA DE COLOMBIA


SEDE VILLAVICENCIO
10-03-20
1. Graficar los ejemplos y ejercicios que hay en las páginas 44 a la
49.
2. Hallar la ecuación cartesiana
3. Hallar las rectas tangentes horizontales y verticales

𝟏
1. EJERCICIO r (t) = (x =√𝒕 ; y= )
𝒕

x=0:0.1:30;
y=1./x.^2;
plot(x,y)

1
 𝑥 = √𝑡 𝑦=
𝑡

1
𝑡=
𝑦

√𝟏
𝐱= ECUACION CARTESIANA
𝐲
2. EJERCICIO= r(t) = ( 3cos t; 2 sent ; con t ∈ (𝟎, 𝟐𝛑)

 𝒙 = 𝟑 𝒄𝒐𝒔 𝒕 𝒚 = 𝟐𝒔𝒆𝒏𝒕

𝑑𝑥 𝑑𝑦
= -3 sen t = 2𝑐𝑜𝑠 𝑡
𝑑𝑡 𝑑𝑡

x=-3:0.1:3;
y=2.*sqrt(9-x.^2)./3;
plot(x,y); hold on; grid on;
plot(x,-y);

 RECTAS TANGENTES HORIZONTALES:

π 3π
𝒙 = 3 cos( ) x = 3 cos( )
2 2

X=0 X=0
𝒙 = 𝟑𝒄𝒐𝒔 𝒕 𝒚 = 𝟐𝒔𝒆𝒏𝒕

𝒙 𝒚
= 𝒄𝒐𝒔 𝒕 = 𝒔𝒆𝒏𝒕
𝟑 𝟐

𝒙 𝒚
( )𝟐 = 𝒄𝒐𝒔 𝟐 𝒕 ( )𝟐 = 𝒔𝒆𝒏𝟐 𝒕
𝟑 𝟐

𝒙𝟐 𝒚
= 𝒄𝒐𝒔𝟐 t ( )𝟐 = 𝒔𝒆𝒏𝟐 𝒕
𝟗 𝟐

𝒙𝟐 𝒚𝟐
+ = (𝒄𝒐𝒔𝟐 𝒕 + 𝒔𝒆𝒏𝟐 𝒕)
𝟗 𝟒

𝐱𝟐 𝐲𝟐
+ =𝟏 ECUACION CARTESIANA
𝟗 𝟒

3. EJERCICIO: r (t)= ( 2+3t ; 5t )


( x=2+3t; y = 5t )
x=-20:0.1:25;
y=(5*x-10)./3;
plot(x,y)
𝒙 = 𝟐 + 𝟑𝒕 𝒚 = 𝟓𝒕
𝒙−𝟐 𝒙−𝟐
𝒕= 𝒚 = 𝟓( )
𝟑 𝟑

𝒙−𝟐
𝒕=
𝟑
𝟓𝒙−𝟏𝟎
𝒚= ECUACION CARTESIANA
𝟑

4. Ejercicio = r(t) = (t; √𝟑𝟐 + 𝒕𝟐 )


= ( 𝒙 = 𝒕 ; 𝒚 = √𝟑𝟐 + 𝒕𝟐 )

x=-10:0.1:10;
y=sqrt(x.^2+9);
plot(x,y)

x=t 𝑦 = √32 + 𝑡 2

𝑦 = √9 + 𝑥 2 ECUACION CARTESIANA
5. t=0:0.1:4*pi;
plot(2*t-2*sin(t),2-2*cos(t));

6. t=0:0.1:4*pi;
plot(2*t-pi*sin(t),2-pi*cos(t));
7. x=-1:0.1:14;
y=2+sqrt(x+1);
plot(x,y); hold on; grid on;
plot(x,-y+4);

8. x=-1:0.1:14;
y=2-sqrt(x+1);
plot(x,y); hold on; grid on;
plot(x,-y+4);
9. x=0:0.1:6;
y=sqrt(6*x-x.^2)+2;
plot(x,y);hold on; grid on;
plot(x,-y+4);

10.t=0:0.1:45;
plot3(t.*cos(pi.*t),t,t.*sin(pi.*t));

Vous aimerez peut-être aussi