Folleto - Calculo - Diferencial - Con - MATLAB PDF
Folleto - Calculo - Diferencial - Con - MATLAB PDF
Folleto - Calculo - Diferencial - Con - MATLAB PDF
COLABORADORES:
MAYO 2009
GUAYAQUIL-ECUADOR
1
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Introduccin
2
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
AGRADECIMIENTOS
En primer lugar, y por sobre todas las cosas a DIOS creador del
Universo, a la UPS sede Guayaquil y sus directivos por su confianza
y apoyo.
Vctor Huilcapi S.
3
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
CAPTULO 1
Geometra Analtica
1.1 Sistemas de coordenadas rectangulares.
1.2 Distancia entre dos puntos.
1.3 Punto medio de un segmento.
1.4 Divisin de un segmento.
1.5 Pendiente y ngulo de inclinacin de una recta.
1.6 Criterios de paralelismo y perpendicularidad.
1.7 ngulo entre dos rectas.
1.8 Ecuacin de una lnea recta.
1.9 Circunferencia.
1.10 Parbola.
1.11 Elipse.
1.12 Hiprbola.
1.13 Ejercicios adicionales.
4
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x= Abcisa
y= Ordenada
Ejes coordenados
Eje X: Eje de las abscisas
Eje Y: Eje de las ordenadas
Ejemplos:
5
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
%SISTEMA DE COORDENADAS RECTANGULARES
%Graficar los siguientes puntos en el sistema de coordenadas
%rectangulares (3,4);(-2,3);(-5,-2);(5,-4);(sqrt(2),4);(-2sqrt(3),2)
clc
clf
%ejes
d=0.2;
eje=-10:1:10;
ceros = zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%grfica
plot(3,4,'r*-')
plot(-2,3,'r*-')
plot(-5,-2,'r*-')
plot(5,-4,'r*-')
plot(sqrt(2),4,'r*-')
plot(-2*sqrt(3),2,'r*-')
text(3+d,4+d,'P1(3,4)')
text(-2+d,3+d,'P2(-2,3)')
text(-5+d,-2+d,'P3(-5,-2)')
text(5+d,-4+d,'P4(5,-4)')
text(sqrt(2)+d,4+d,'P5')
text(-2*sqrt(3)+d,2+d,'P6')
grid on
grid minor
axis([-10 10 -10 10])
axis square
6
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% Graficar el polgono que se forma al unir consecutivamente los
% puntos: (1,1); (0,4); (2,2); (3,3); (4,2); (6,4); (5,1)
clc
clf
%ejes
eje=-10:1:10;
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%grfica
p=[1 0 2 3 4 6 5 1];
q=[1 4 2 3 2 4 1 1];
plot(p,q,'r.-')
%etiquetas
text(1,1,'P1(1,1)')
text(0,4,'P2(0,4)')
text(2,2,'P3(2,2)')
text(3,3,'P4(3,3)')
text(4,2,'P5(4,2)')
text(6,4,'P6(6,4)')
text(5,1,'P7(5,1)')
grid on
axis([-2 7 -2 5])
axis square
7
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
R ( x, y) / x , 2 x 2, y 2 x
X Y ELEMENTOS
-2 y=2(-2)=-4 P1(-2,-4)
-1 y=2(-1)=-2 P2(-1,-2)
0 y=2(0)=0 P3(0,0)
1 y=2(1)=2 P4(1,2)
2 y=2(2)=4 P5(2,4)
8
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% Graficar los elementos que forman la siguiente RELACION,
% utilizando el plano cartesiano:
% R={(x,y)/x e Z, -2<=x<=2, y=2x}
clc
clf
%ejes
eje=-10:1:10;
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%grfica
x= -2:1:2;
y= 2*x;
plot(x,y,'b*-')
grid on
axis([-3 3 -5 5])
axis square
9
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Observe el grfico.
como , y el punto
%MATLAB
% DISTANCIA ENTRE DOS PUNTOS
% Calcule la distancia entre los puntos (-3,-2); (3,4).
clc
% ejes
eje=-10:1:10;
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
% Distancia
% P1=(-3,-2)
% P2=(3,4)
d=sqrt((-3-3)^2 + (-2-4)^2)
% grfica
p=[-3 3];
q=[-2,4];
plot(p,q,'b*-')
text(-3,-2,'P1(-3,-2)')
text(3,4,'P2(3,4)')
text(0,1,'d')
grid on
axis([-5 5 -5 5])
axis square
10
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
d AB x2 x1 2 y2 y2 2 x2 x1 2 0 x2 x1
d AB x2 x1 y2 y1 6 (4) 2 2 100 10
2 2 2 2
11
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
P1 P2 x2 x1 2 y 2 y1 2 2 42 5 22 4 49 53
P2 P3 x3 x2 2 y3 y2 2 6 22 2 52 64 9 73
P1 P3 x3 x1 2 y3 y1 2 6 42 2 22 100 16 116 2 29
Permetro 53 73 2 29 26.6u
H 2 a2 b2
12
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
d AC x2 x1 2 y2 y1 2 5 (2) 2 y 12 49 ( y 1) 2
d AB x2 x1 2 y2 y1 2 2 (2) 2 2 12 16 9 5
d BC x2 x1 2 y2 y1 2 5 22 y (2) 2 9 ( y 2) 2
49 ( y 1) 5 9 ( y 2)
2
2
2 2
2
Comprobacin:
d AC 49 (2 1) 2 49 1 50
( d AC ) 2 ( d AB ) 2 ( d BC ) 2
d BC 9 (2 2) 2
25 5
d AB 5 ( 50 ) 2 5 2 5 2
50 50 ( DEMOSTRADO )
13
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
d AC x2 x1 2 y2 y1 2 x 12 3 (2) 2 ( x 1) 2 1 x 2 2 x 1 1
d AC x 2 2 x 2
d BC x2 x1 2 y2 y1 2 x 42 3 12 ( x 4) 2 16 x 2 8 x 16 16
d BC x 2 8 x 32
d AC d BC
x 2
2x 2 x
2
2
8 x 32 2
Elevamos al cuadrado y simplificamos los radicales
x 2 2 x 2 x 2 8 x 32 Simplificamos x 2
2 x 8 x 32 2
6 x 30
x5
14
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Comprobacin:
d AC x 2 2 x 2 5 2 2(5) 2 25 10 2 17
d BC x 2 8 x 32 5 2 8(5) 32 25 40 32 17 ( DEMOSTRADO )
Ejemplo:
15
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x x2 y1 y 2 5 1 1 3 4 2
PM 12 1 , PM 12 , PM 12 , PM 12 2,1
2 2 2 2 2 2
x x3 y 2 y 3 1 3 3 1 4 2
PM 23 2 , PM 23 , PM 23 , PM 23 2,1
2 2 2 2 2 2
x x3 y1 y3 5 3 1 1 2 2
PM 13 1 , PM 13 , PM 13 , PM 13 1,1
2 2 2 2 2 2
16
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% PUNTO MEDIO
% Hallar el rea de la figura formada por la unin de los puntos
% medios de cada uno de los lados del tringulo que tiene como
% vrtices los puntos (-5,-1), (1,3) Y (3,-1).
clc
% coordenadas
p1=([-5,-1])
p2=([1,3])
p3=([3,-1])
% puntos medios
m1=(p1+p2)/2
m2=(p2+p3)/2
m3=(p3+p1)/2
% lados del tringulo formado por los puntos medios
a=m2-m1
b=m3-m2
c=m1-m3
% magnitud de los lados del tringulo formado por
% los puntos medios.
a=norm(a,2)
b=norm(b,2)
c=norm(c,2)
% semipermetro
s=(a+b+c)/2
% area del tringulo formado por los puntos medios
A=sqrt(s*(s-a)*(s-b)*(s-c))
17
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
;r -1
18
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplo:
1. Sean P1 3,2 y P2 5,2 los puntos extremos de un segmento de
recta. Hallar las coordenadas del punto Px, y que divide a este
segmento en la relacin r 3 .
x1 rx2 3 35 12
x 3
1 r 1 3 4
y1 ry2 2 32 4
y 1
1 r 1 3 4
%MATLAB
% DIVISION DE UN SEGMENTO
% Sean P1(-3,-2)y P2(5,2) los puntos extremos de un segmento de
% recta.
% Hallar las coordenadas del punto P(X,Y) que divide a este
% segmento en la relacin R=3.
clc
clf
format rat
% Ejes
eje=-10:1:10;
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
19
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
% Datos
p1=[-3 -2];
p2=[5 2];
x1 = p1(1);
y1 = p1(2);
x2 = p2(1);
y2 = p2(2);
r=3 ; % Esta es la relacin de divisin del segmento, puede
% cambiarse a voluntad y generar un nuevo punto P y una
%nueva grfica
% Clculo del punto P(x,y)
x=(x1+r*x2)/(1+r)
y=(y1+r*y2)/(1+r)
% Calculos auxiliares para graficar la recta empleando la ecuacin
% de la recta con dos puntos P1 Y P2.
a=x1:0.1:x2 ; %abcisas
m=(y2-y1)/(x2-x1); %pendiente
b= (a-x1)*m + y1 ; %ecuacion de la recta / ordenadas
% grfica
plot(x1,y1,'b*-')
plot(x2,y2,'b*-')
plot(x,y,'b*-')
plot(a,b,'k-')
text(x1,y1,'P1')
text(x2,y2,'P2')
text(x,y,'P')
grid on
axis([-5 6 -5 5])
axis square
3
4 0
x rx2 2 4 8
x 1
1 r 3 1
1
2 2
3
2 1 7
y ry 2 2 2 7
y 1
1 r 3 1
1
2 2
20
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
21
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
y 2 y1 3 1 4 2
m12
x2 x1 1 5 6 3
y3 y 2 1 3 4
m23 2
x3 x 2 3 1 2
y3 y1 1 1 0
m13 0
x3 x1 3 5 8
22
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
As mismo, para hallar los ngulos que las rectas forman con el eje x,
aplicamos la frmula:
tg 2 m23
tg1 m12 2 tg 1 2 tg 3 m13
2
1 tg 1 2 63.4 3 tg 1 0
3
luego 63.4 180 116.6 3 0
1 33.7
2 116.6
23
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
l1
l2
m1
m2
x
l1
90
m1
m2
x
l2
Ejemplo:
1. Demostrar que un rectngulo cuyos vrtices son los puntos
P1 3,1 , P2 3,5 , P3 5,2 y P4 1,2 est formado por lados
paralelos tanto como perpendiculares.
24
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y 2 y1 5 1 4 2
m12
x 2 x1 3 3 6 3
y3 y 2 2 5 3 3
m23
x3 x 2 5 3 2 2
y 4 y3 2 2 4 2
m34
x 4 x3 1 5 6 3
y 4 y1 2 1 3 3
m14
x 4 x1 1 3 2 2
25
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
m2 l2
m1
x
l1
26
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y2 y1 6 2 4
lA : mA
x2 x1 4 1 3
y y3 1 1 2
l B : mB 4
x4 x3 43 7
27
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
%1.7 NGULO ENTRE DOS RECTAS
%Sean dos rectas:LA,que pasa por los puntos P1(1,2)y P2(4,6); y LB,
%que pasa por los puntos P3(-3,1) y P4(4,-1).Hallar el ngulo entre
%las rectas.
clc
clf
format rat
% Ejes
eje=-10:1:10;
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
% Datos
p1=[1 2]; p2=[4 6]; p3=[-3 1]; p4=[4 -1];
x1 = p1(1); y1 = p1(2); x2 = p2(1); y2 = p2(2);
x3 = p3(1); y3 = p3(2); x4 = p4(1); y4 = p4(2);
% Clculo de las pendientes m1 y m2
m1=(y2-y1)/(x2-x1)
m2=(y4-y3)/(x4-x3)
format short
angulo=atan((m1-m2)/(1+m1*m2))*180/pi
% Calculos auxiliares para graficar las recta empleando la ecuacin
% de la recta con dos puntos.
a=-5:0.1:5 ; %abcisas
b=(a-x1)*m1 + y1 ; %ecuacin de la recta LA/ ordenadas
c=(a-x3)*m2 + y3 ; %ecuacin de la recta LB/ ordenadas
% grfica
plot(x1,y1,'b*-')
plot(x2,y2,'b*-')
plot(x3,y3,'b*-')
plot(x4,y4,'b*-')
text(x1,y1,'P1')
text(x2,y2,'P2')
text(x3,y3,'P3')
text(x4,y4,'P4')
plot(a,b,'k-')
plot(a,c,'b-')
grid on
grid minor
axis([-4 6 -2 8])
axis square
yB yA 33 6
m AB 6
xB xA 1 2 1
y yB 1 3 2
m BC C
xC xB 6 1 7
28
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
yC y A 1 3 4 1
m AC
xC x A 6 2 8 2
Luego, hallamos los ngulos comprendidos entre cada dos lados del
tringulo. Observe el siguiente grfico:
11
6 1
1 m AB m AC 1 11
A tg tg 2 tg tg 1 54
1 2
1
1 m AC m AB 1 6
4
8
2 1
44
2 6
1 m BC m AB 1 7 1 7 tg 1 44 83.5
B tg tg tg
5 5
1 m AB BC
m
1 6
2
7 7
1 2 11
m m BC 1 2 7 1 14 11
C tg 1 AC tg tg tg 1 42.5
2 1
1 mBC m AC 1
6
12
7 2 7
29
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Para hallar la ecuacin de una lnea recta tan slo se necesita un punto
determinado de la recta x 0 , y 0 y el valor de su pendiente m .
recta
ax by c 0
m
x0 , y0
x
y y0 mx x0
frmula
Ejemplos:
30
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y 2 y1 3 2 5
m
x 2 x1 5 4 9
y y 0 m x x 0
y 3 x 5
5
9
9 y 3 5x 5
9 y 27 5x 25
5x 25 9 y 27 0
5x 9 y 2 0
Observe el grfico:
2. Hallar la ecuacin de una recta que pasa por el punto P3,5 y que
es paralela a la recta 3x 4 y 12 0 .
Sea y 0 , entonces:
3x 40 12 0
3x 12
x4 Luego tenemos: P1 4,0
31
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
30 4 y 12 0
4 y 12
y 3 Luego tenemos: P2 0,3
y 2 y1 3 0 3
m
x 2 x1 0 4 4
Pues bien, como las rectas deben ser paralelas sus valores de
pendientes deben ser iguales, por lo tanto la pendiente de la recta
dada la utilizamos para asociarla a la recta pedida (junto con el punto
P3,5 por donde pasa esta recta pedida).
y y 0 m x x 0
y 5 x 3
3
4
4 y 5 3x 3
4 y 20 3x 9
3x 4 y 29 0
32
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Reordenando trminos: 6 y 5x 17
17
Sacando factor comn: 6 y 5 x
5
5 17
Despejando: y x
6 5
5 17
Tomando la forma: y 0 x
6 5
5
m1
6
m1m2 1
1
m2
m1
1
m2
5
6
6
m2
5
y y 0 m2 x x0
33
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y 3
6
x 2
5
5 y 3 6x 2
5 y 15 6x 12
6 x 5 y 27 0
Observe el grfico:
Reordenando trminos: 5 y 2x 3 ky 5x 22
3 22
Sacando factor comn: 5 y 2 x ky 5 x
2 5
2 3 5 22
Despejando: y x y x
5 2 k 5
2 3 5 22
Tomando la forma: y 0 x y 0 x
5 2 k 5
34
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2 5
m1 y m2
5 k
Pues bien, siguiendo el criterio, para que dos rectas sean perpendiculares
el producto entre sus pendientes debe resultar -1.
m1m2 1
2 5
1
5 k
2
1
k
k 2
35
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
recta
ax by c 0
pendiente
b
m
a
a1 a2
m1 m2
b1 b2
k 3
m1 m2
2 k 5
m1 m2
k 3
2 k 5
3 2 k k 5
6 k 2 5k
k 2 5k 6 0
k 3k 2 0
De aqu se observa que existen 2 valores de k .
k 3 y k 2
36
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
3x 2 y 2 0
3x 2 y 4 0
x y 2 0
x y 4 0
6. Una recta l1 pasa por los puntos A 4,1 y B11,5 , y otra recta l 2
pasa por el punto C 1,6 y el punto D cuya abscisa es 3.
a. Hallar la ordenada del punto D sabiendo que l1 es
perpendicular a l 2 .
b. Hallar la ecuacin de ambas rectas.
37
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y A yB 5 1 6 2
m1
x A x B 11 4 15 5
y D yC
m2
x D xC
5 yD 6
2 3 1
y D 4 6
5
2
y D 4 (a)
Recta l1 : Recta l 2 :
y y A m1 x x A y y C m 2 x xC
y 1 x 4
2
y 6 x 1
5
5 2
5 y 1 2x 4 2 y 6 5x 1
5 y 5 2x 8 2 y 12 5x 5
2x 5 y 3 0 5x 2 y 7 0
38
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1.9 CIRCUNFERENCIA
39
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
%MATLAB
% CIRCUNFERENCIA 1
% 1. Hallar la ecuacin de la circunferencia con centro en
% C(3,-1) y radio igual a (6)^1/2
clc
% ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
% datos
h=3;
40
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
k=-1;
r=sqrt(6);
% Circunferencia
t=0:0.1:2*pi;
x=h+r*cos(t);
y=k+r*sin(t);
% grfico
plot(x,y)
plot(h,k,'r*-')
text(h,k,'C')
grid on
grid minor
axis([-2 8 -5 5])
axis square
41
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% CIRCUNFERENCIA 2
% Hallar la ecuacin de la circunferencia con centro en C(-3,-6)
% y que pasa por el punto P(1,-1).
clc
% ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
% datos
h=-3;
k=-6;
x1=1;
y1=-1
r=sqrt((h-x1)^2+(k-y1)^2);
% Circunferencia
t=0:0.1:2*pi;
x=h+r*cos(t);
y=k+r*sin(t);
% grfico
plot(x,y)
plot(h,k,'r*-')
text(h,k,'C')
plot(1,-1,'r*-')
text(1,-1,'P')
grid on
axis([-12 6 -14 4])
axis square
x 2
6x 9 y 2 4 y 4
30
4
94
42
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 32 y 22 41
2
Como ya obtuvimos la ecuacin solicitada se puede observar que su
centro y su radio son:
41
Centro : C(3,2) y r
2
43
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 8 y 36
Luego sustituyendo este valor de x en la ecuacin de la circunferencia
dada tenemos:
x 2 y 2 36
(8 y 36) 2 y 2 36
64 y 2 576 y 1296 y 2 36 0
65 y 2 576 y 1260 0
P1 (3.2,4.9) y P2 (4.8,3.9)
%MATLAB
% CIRCUNFERENCIA 4
% 4. Una cuerda de la circunferencia x^2+y^2=36 es un segmento de
% recta cuya ecuacin es x-8y+36=0. Hallar la longitud de la cuerda.
clc
clf
% ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
44
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
plot(ceros,eje,'r+-')
% datos
syms a b real
h=0;
k=0;
r=6;
[a b]=solve('x^2+y^2=36','x-8*y+36=0')
x1=a(1)
y1=b(1)
x2=a(2)
y2=b(2)
% Circunferencia
t=0:0.1:2*pi;
x=h+r*cos(t);
y=k+r*sin(t);
% grfico
plot(x,y)
plot(h,k,'r*-')
text(h,k,'C')
% secante
d=sqrt((x2-x1)^2+(y2-y1)^2)
x=-10:0.1:10;
y=(x+36)./8;
plot(x,y)
% grfico
plot(x1,y1,'r*-')
plot(x2,y2,'r*-')
grid on
grid minor
axis([-10 10 -10 10])
axis equal
( )
( )
C (2,1)
r x2 x1 2 y2 y1 2 2 (3)2 1 52 25 16 41 6.4
45
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( x h) 2 ( y k ) 2 r 2
( x 2) 2 ( y 1) 2 ( 41) 2
( x 2) 2 ( y 1) 2 41
%MATLAB
% CIRCUNFERENCIA 5
% 5. Hallar la ecuacin de la circunferencia cuyo dimetro el
% segmento de recta que une los puntos (-3,5) y (7,-3).
clc
% ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
% datos
P1=[-3 5] %PUNTO 1
P2=[7 -3] %PUNTO 2
x1=P1(1); y1=P1(2); x2=P2(1); y2=P2(2);
%Clculos
C=(P1+P2)/2 %CENTRO
h=C(1) % h
k=C(2) % k
r=(P2-P1)/2;
r=norm(r) % r
% Circunferencia
t=0:0.1:2*pi;
x=h+r*cos(t);
y=k+r*sin(t);
% grfico
plot(x,y)
plot(h,k,'r*-')
text(h,k,'C')
% grfico
plot(x1,y1,'r*-')
46
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
plot(x2,y2,'r*-')
grid on
grid minor
axis([-10 10 -10 10])
axis equal
x 2
2x 1 y 2 6 y 9 6
5
1 9
x 12 y 32
56
5
Como ya obtuvimos la ecuacin solicitada se puede observar que su
centro y su radio son:
56
Centro : C(1,3) y r
5
47
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
30
x 2 y 2 8x 4 y
24
Luego reordenando los trminos, completando trinomios y equilibrando la
ecuacin tenemos:
x 2
8 x 16 y 2 4 y 4
30
24
16 4
x 42 y 22 75
4
Como ya obtuvimos la ecuacin solicitada se puede observar que su
centro y su radio son:
75
C(4,2) y r
4
48
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 2
10x y 2 8 y 41
x 2
10x 25 y 2 8 y 16 41 25 16
x 52 y 42 0
De esta respuesta se observa que el lugar geomtrico es el punto C 5,4 ,
ya que el valor del radio es 0.
196
x 2 y 2 10x 4 y
6
x 2
10x 25 y 2 4 y 4 32 25 4
x 52 y 22 3
49
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1.10 PARBOLA
De manera sencilla se puede decir que una parbola es una curva que se
abre desde un punto V h, k llamado vrtice de tal manera que envuelve
a otro punto f llamado foco, de donde la distancia entre el vrtice y el
foco es igual a un valor p .
50
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
y 2 4 x
De la ecuacin de la parbola se tiene que:
4 P 4
P 1
Entonces la coordenada del foco es: F (1,0) . Luego la ecuacin de la
directriz (observando el grfico) es:
x 1
La longitud del lado recto ser:
L.R 4 P
L.R 4
L.R 4
El lado recto (L.R) es un segmento de recta perpendicular al eje focal
y que une dos puntos de la parbola pasando por el foco (la longitud de
ese segmento, el lado recto, es L.R 4 P ).
51
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% PARABOLA HORIZONTAL
% 1. Dada la ecuacin de la parbola 2y^2=-8x , encontrar las
% coordenadas del foco, la ecuacin de la directriz y la longitud
% del lado recto.
clc
clf
%ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%datos
h=0;
k=0;
p=-1;
%parbola horizontal
t=0:0.1:2*pi;
x=h+p./(tan(t).*tan(t));
y=k+2*p./tan(t);
%grfico
plot(x,y)
text(h,k,'V')
text(h+p,k,'F')
%directriz
y=-10:.1:10;
x=h-p;
plot(x,y,'b.-')
%rejilla
grid on
grid minor
axis([-10 10 -10 10])
axis square
y 2 4 y 4 6 x 8 4
( y 2) 2 6 x 12
( y 2) 2 6( x 2)
1
Luego las coordenadas del foco son F ( ,2)
2
52
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
dFP dAP
De donde,
dFP x 52 y 22
dAP x x 2 y 12
Igualando las 2 distancias tenemos:
x 5 2 y 2 2 x x 2 ( y 1)
Elevando al cuadrado ambos miembros y simplificando las races
tenemos:
53
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 52 y 22 ( y 1) 2
x 2 10x 25 y 2 4 y 4 y 2 2 y 1 .
x 2 10x 25 4 y 4 2 y 1 0
Entonces la ecuacin de la parbola nos queda:
x 2 10x 6 y 28 0
( y k ) 2 4 P ( x h)
(5 2) 2 4 P (5 2)
9 12P
3
P
4
( y 2) 2 3( x 2)
54
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y 2 4 y 4 3x 6
y 2 3x 4 y 10 0
Solucin. Como nos dan las coordenadas del vrtice y del foco,
podemos obtener el valor de P (tomando las abscisas) y tenemos:
P 5 (1)
P 5 1
P4
Luego reemplazando en la ecuacin de la parbola tenemos:
( y k ) 2 4 P ( x h)
( y 2) 2 16( x 5)
Ecuacin del eje paralelo a x:
55
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y2
Ecuacin de la directriz:
x 9
3 7
De aqu se observa que el vrtice es V ( , ) , tambin que:
2 4
56
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
5
4P
3
5
P
12
3 4
Luego la coordenada del foco es F ( , )
2 3
13
La ecuacin de la directriz es y
6
5
Longitud del lado recto L.R 4 P se convierte en L.R
3
MATLAB
% PARABOLA HORIZONTAL
% 6. Dada la ecuacin de la parbola 3x^2-9x-5y-2=0, encontrar
% las coordenadas del foco, la ecuacin de la directriz y
% la longitud del lado recto.
clc
clf
%ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%datos
h=3/2;
k=-7/4;
p=5/12;
%parbola
t=0:0.1:2*pi;
x=h+2*p*tan(t);
y=k+p*tan(t).*tan(t);
%grfico
plot(x,y)
text(h,k,'V')
plot(h,k+p,'r*-')
text(h,k+p,'F')
57
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%directriz
x=-10:.1:10;
y=k-p;
plot(x,y,'b.-')
%rejilla
grid on
grid minor
axis([-10 10 -10 10])
axis square
x 2 12 y
De esta expresin obtenida se observa que:
4 P 12
P 3
Entonces la coordenada del foco es F (0,3)
y 3
L.R 4 P
L.R 12
L.R 12
58
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1.11 ELIPSE
Lado Recto
59
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
60
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y
Vrtice 1
Foco 1
Foco 2
Vrtice 2
Ejemplos.
x2 y2
1. Sea la elipse 1 . Realizar el grfico. Hallar las
36 4
coordenadas de los focos y la excentricidad.
61
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c2 a2 b2
c 2 36 4
c 4 2 .
c 2 2
e
a 3
MATLAB
% ELIPSE HORIZONTAL
% 1. Sea la elipse x^2/36 + y^2/4 =1. Realizar el grfico.
% Hallar las coordenadas de los focos y la excentricidad.
clc
clf
%ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%datos
h=0; k=0; a=6; b=2;
%elipse
c=sqrt(a^2-b^2)
t=0:.05:2*pi;
x=h+a*cos(t);
y=k+b*sin(t);
62
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%grfico
plot(x,y)
plot(h,k,'r*-')
text(h+.2,k,'C')
plot(h+c,k,'r*-')
text(h+c-.4,k,'F')
plot(h-c,k,'r*-')
text(h-c+.2,k,'F')
plot(h+a,k,'r*-')
text(h+a+.2,k,'V')
plot(h-a,k,'r*-')
text(h-a-.5,k,'V')
grid on
grid minor
axis([-10 10 -10 10])
axis square
16( x 2 6 x) ( y 2 2 y ) 129
63
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
MATLAB
% ELIPSE VERTICAL
% 2. Sea la elipse 16x^2+y^2-96x-2y+129=0. Realizar el grfico.
% Hallar las coordenadas de los focos y la excentricidad.
clc
clf
%ejes
eje=[-10:1:10];
ceros=zeros(1,21);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%datos
h=3; k=1; a=4; b=1;
%elipse
c=sqrt(a^2-b^2)
t=0:.05:2*pi;
x=h+b*cos(t);
y=k+a*sin(t);
%grfico
plot(x,y)
plot(h,k,'r*-')
text(h+.1,k,'C')
plot(h,k+c,'r*-')
text(h,k+c-.4,'F')
plot(h,k-c,'r*-')
text(h,k-c+.2,'F')
plot(h,k+a,'r*-')
text(h,k+a+.2,'V')
plot(h,k-a,'r*-')
text(h,k-a-.5,'V')
grid on
grid minor
axis([-2 8 -4 6])
axis square
64
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
8 4 c
e 0 .8
10 5 a
a5
c4
b2 a2 c2
b 2 25 16
b3
( x 2) 2 ( y 2) 2
1
25 9
65
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
FC c x2 x1 2 y2 y1 2 4 12 1 (1) 2 90 3
Entonces: c3
PC a x2 x1 2 y 2 y1 2 4 82 1 02 16 0 4
Entonces: a4
Luego por Pitgoras encontramos el valor de b :
b a2 c2 42 32 16 9 7
Luego determinamos los vrtices y el otro foco y nos queda:
V1 (h a, k ) ; V1 (4 4,1) ; V1 (8,1)
V2 (h a, k ) ; V2 (4 4,1) ; V2 (0,1)
F2 (h c, k ) ; F2 (4 3,1) ; F2 (7,1)
66
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
FC c x2 x1 2 y2 y1 2 5 52 10 62 0 16 4
a c2 b2 42 52 16 25 41 6.4
67
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1
c
de donde: c4
2 8
b a2 c2 82 42 64 16 48 2 12
Luego, considerando los valores de a, b, la ecuacin de la elipse es:
x2 y2
1
b2 a2
x2 y2
1
48 64
68
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
7. Los vrtices de una elipse son los puntos (-4 , 8) y (-4 , -4) y la
longitud de su lado recto es 3. Hallar la ecuacin de la elipse, su
excentricidad y las coordenadas de sus focos.
Solucin. Con los vrtices de la elipse que es la longitud del eje mayor
podemos encontrar el valor de a con la frmula de distancia.
69
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1.12 HIPRBOLA
La ecuacin de una hiprbola cuyo eje focal (segmento recto que une los
dos focos) es paralelo al eje x es de la forma:
70
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Lado recto:
Ejemplos.
x x 2 y1 y 2
C 1 ,
2 2
0 0 10 10
C ,
2 2
C 0,0
71
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c 10
16
b 8
2
a2 c2 b2
a 2 100 64
a6
y2 x2
Ecuacin de la hiprbola: 1
36 64
c 10 5
Excentricidad: e
a 6 3
Asntotas: by ax 0 ; by ax 0
8 y 6x 0 ; 8 y 6x 0
72
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
% MATLAB
% HIPERBOLA EJE TRANSVERSO VERTICAL
% 1. Hallar la ecuacin de la hiprbola, las coordenadas de los
% vrtices, la longitud del eje transverso y excentricidad cuyos
% focos son F1=(0,10) y F2=(0,-10), y la longitud del eje conjugado
% es igual a 16.
clc
clf
%ejes
eje=[-15:1:15];
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
hold on
plot(ceros,eje,'r+-')
%datos
h=5; k=0; c=10; b=8;
a=sqrt(c^2-b^2)
%hiprbola
t=0:0.1:2*pi;
x=h+b*tan(t); %x=h+b*tan(t)
y=k+a*sec(t); %y=k+a*sec(t)
%asntotas
x1=-10:1:10;
y1=a*(x1-h)/b+k;
y2=-a*(x1-h)/b+k;
%grfico
plot(x,y)
%CENTRO(h,k)
plot(h,k,'r*')
text(h,k,'C')
%GRAFICO ASINTOTAS
plot(x1,y1,'r--',x1,y2,'r--')
%VERTICES
plot(h,k-a,'r*',h,k+a,'r*')
text(h,k-a,'V')
text(h,k+a,'V')
%FOCOS
plot(h,k-c,'r*',h,k+c,'r*')
text(h,k-c,'C')
text(h,k+c,'C')
% EJE CONJUGADO
plot(h-b,k,'r*',h+b,k,'r*')
text(h-b,k,'b')
text(h+b,k,'b')
grid on
grid minor
axis([-15 15 -15 15])
axis square
73
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 2
2 x 16 y 2 4 y 81
x 2
2 x 1 16 y 2 4 y 4 81 1 64
x 12 16 y 22 144
y 22 x 12 1
9 144
Segn esta ecuacin se tiene que:
a 9 3
b 144 12
c2 a2 b2
c 2 9 144
c 3 17
c 3 17
Excentricidad: e 17
a 3
2b 2 2144
Longitud del lado recto: LLR 96
a 3
( y k ) ( x h)
Asntotas: 0 ;
a b
( y k ) ( x h)
0
a b
y 2 x 1 y 2 x 1
0 ; 0
3 12 3 12
74
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 4y 7 0 ; x 4y 9 0
c
En la excentricidad: e
a
5 c
3 6
c 10
Luego por Pitgoras encontramos el valor de b :
b c2 a2 102 62 100 36 64 8
Luego, considerando los valores de a, b, la ecuacin de la hiprbola es:
y2 x2
1
a2 b2
75
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y2 x2
1
36 64
Asntotas: by ax 0 ; by ax 0
8 y 6x 0 ; 8 y 6x 0
4. Los focos de una hiprbola son (-9 , 4) y (-3 , 4) y la longitud del eje
conjugado es igual a 4. Hallar la ecuacin de la hiprbola, las
coordenadas de sus vrtices y su excentricidad.
93 44
h ; k
2 2
h 6 ; k 4
C(6,4)
Luego con el centro y uno de los focos dados podemos encontrar el valor
de c con la frmula de distancia.
FC c x2 x1 y2 y1 6 (9) 4 4 90 3
2 2 2 2
76
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a c2 b2 32 22 94 5 2.2
( x h) 2 ( y k ) 2
1
a2 b2
( x 6) 2 ( y 4) 2
1
5 4
V1 (h a, k ) ; V1 (6 2.2,4) ; V1 (3.8,4)
V2 (h a, k ) ; V2 (6 2.2,4) ; V2 (8.2,4)
c 3
e
a 5
( x h) ( y k )
Asntotas: 0 ;
a b
( x h) ( y k )
0
a b
x6 y4 x6 y4
0 ; 0
5 2 5 2
2 x 5 y 3.05 0 ; 2x 5 y 20.9 0
77
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
% HIPERBOLA EJE TRANSVERSO HORIZONTAL
% 4. Los focos de una hiprbola son (-9 , 4) y (-3 , 4) y la
longitud
% del eje conjugado es igual a 4. Hallar la ecuacin de la
hiprbola,
% las coordenadas de sus vrtices y su excentricidad.
clc
clf
%ejes
eje=[-15:1:15];
ceros=zeros(1,31);
plot(eje,ceros,'r--')
hold on
plot(ceros,eje,'r--')
%datos
h=-6; k=4; c=3; b=2;
a=sqrt(c^2-b^2)
%hiprbola
t=0:0.1:2*pi;
x=h+a*sec(t); %x=h+a*sec(t
y=k+b*tan(t); %y=k+b*tan(t)
%asntotas
x1=-10:1:10;
y1=b*(x1-h)/a+k;
y2=-b*(x1-h)/a+k;
%grfico
plot(x,y)
plot(x1,y1,'r--',x1,y2,'r--')
%CENTRO(h,k)
plot(h,k,'r*')
text(h,k,'C')
%FOCOS
text(h-c,k,'F2')
text(h+c,k,'F1')
plot(h-c,k,'r*',h+c,k,'r*')
78
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
% EJE CONJUGADO
plot(h,k-b,'r*',h,k+b,'r*')
text(h,k-b,'b')
text(h,k+b,'b')
grid on
grid minor
axis([-15 15 -15 15])
axis square
En V (4,0) ; a4
En F (7,0) ; c7
b c2 a2 7 2 42 49 36 13
c 7
e
a 4
Asntotas: bx ay 0 ; bx ay 0
13x 4 y 0 ; 13x 4 y 0
79
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y2 x2
6. Dada la ecuacin de la hiprbola 1 , determinar las
16 9
coordenadas del centro, vrtices y focos, excentricidad, las longitudes de
los ejes transversos y conjugados, y del lado recto.
c 5
Excentricidad: e
a 4
80
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2b 2 29 9
Longitud del lado recto: LLR
a 4 2
Asntotas: by ax 0 ; by ax 0
3 y 4x 0 ; 3 y 4x 0
FC c x2 x1 2 y2 y1 2 9 32 7 7 2 36 0 6
c6
En la excentricidad:
c
e
a
6
3
a
a2
81
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
b c2 a2 62 22 36 4 32
Luego, considerando los valores de a, b y las coordenadas del centro, la
ecuacin de la hiprbola es:
( x h) 2 ( y k ) 2
1
a2 b2
( x 3) 2 ( y 7) 2
1
4 32
V1 (h a, k ) ; V1 (3 2,7) ; V1 (5,7)
V2 (h a, k ) ; V2 (3 2,7) ; V2 (1,7)
F2 (h c, k ) ; F2 (3 6,7) ; F2 (3,7)
x3 y 7 x3 y 7
0 ; 0
2 32 2 32
82
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
4 x 2 4 y 2 28x 8 y 53 0
53
x2 y 2 7x 2 y
4
Luego reordenando los trminos, completando trinomios y equilibrando la
ecuacin tenemos:
2 49
53 49
x 7x y 2 y 1 1
2
4 4 4
83
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2
7
x y 1 0
2
9 x 2 16 y 2 18x 64 y 199 0
9 x 2 2 x 16 y 2 4 y 199
9x 2
2 x 1 16 y 2 4 y 4 199 9 64
x 12 16 y 22 144
x 12 y 22 1
16 9
c 5
Excentricidad: e
a 4
84
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2b 2 29 9
Longitud del lado recto: LLR
a 4 2
( x h) ( y k )
Asntotas: 0 ;
a b
( x h) ( y k )
0
a b
x 1 y 2 x 1 y 2
0 ; 0
4 3 4 3
3x 4 y 5 0 ; 3x 4 y 11 0
A. La excentricidad de x 2 y 6 , es 3. (FALSO)
2 2
85
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a 6
b 3
c2 a2 b2
c2 6 3
c3
Luego su excentricidad est dada por:
c 3
e
a 6
B. La directriz de 2 x 2 y 6 ; es y 3 . (FALSO)
1
x2 ( y 6)
2
De esta expresin obtenida se observa que:
1
4P
2
1
P
8
Luego la ecuacin de la directriz:
y P
1
y
8
86
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
3 x2 2x 2 y 2 2 y 6 1
3x 2
2 x 1 2 y 2 y 1 7 3 2
2
3 x 1 2 y 1 12
2 2
x 12 y 12 1
4 6
Segn esta ecuacin se tiene que:
a 6
b 4 2
c2 a 2 b2
c2 6 4
c 2
3x y 5 0 y 3x 5 m1 3
1 1 1
2x 6 y 1 0 y x m2
3 6 3
RECUERDE!: Que para que 2 rectas sean PARALELAS sus pendientes
tienen que ser iguales (es decir m1 m2 ).
Entonces tenemos que:
m1 m2
1
3
3
x 2 y 2 8 y 16 0
x 2 y 4 16
2
87
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
r 4
RECUERDE!: Que el rea del crculo est dada por la siguiente formula
A r2
A. x 2 4 y 2 6 x 16 y 21 0
( x 2 6 x) 4( y 2 4 y ) 21
( x 2 6 x 9) 4( y 2 4 y 4) 21 9 16
( x 3) 2 4( y 2) 2 4
( x 3) 2 ( y 2) 2
1
4 1
88
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c 3
Excentricidad: e
a 2
2b 2 21
Longitud del lado recto: LLR 1
a 2
B. y 2 4 y 8 x 28 0
Solucin. Pasando la expresin 8x 28 al segundo miembro,
completamos trinomios cuadrados y equilibrando la ecuacin tenemos:
y 2 4 y 4 8 x 28 4
( y 2) 2 8 x 32
89
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( y 2) 2 8( x 4)
C. y 2 4 y 6 x 13 0
Solucin. Pasando la expresin 6 x 13 al segundo miembro,
completamos trinomios cuadrados y equilibrando la ecuacin tenemos:
90
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y 2 4 y 4 6 x 13 4
( y 2) 2 6 x 9
9
( y 2) 2 6( x )
6
3
( y 2) 2 6( x )
2
3
De esta ecuacin se observa que el vrtice es V ( ,2)
2
L.R 4 P
L.R 6
91
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
D. 4 y2 x2 8 y 6x 4 0
Solucin. Reordenando trminos, agrupando, completando trinomio y
factorizando se tiene:
4 y 2 2 y x 2 6 x 4
4 y 2 2 y 1 x 2 6 x 9 4 4 9
4 y 1 x 3 1
2 2
x 32 y 12 1
1 1
4
Segn esta ecuacin se tiene que:
a 1 1
1 1
b
4 2
c2 a2 b2
1
c2 1
4
5
c
4
92
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
5 5
Coordenadas de los focos: f1 ( 3 ,1) y f 2 ( 3 ,1)
4 4
5
c 5
Excentricidad: e 4
a 1 4
1
2 2
2b 4 1
Longitud del lado recto: LLR
a 1 2
( x h) ( y k ) ( x h) ( y k )
Asntotas: 0 ; 0
a b a b
x 3 y 1 x 3 y 1
0 ; 0
1 1 1 1
2 2
x 2y 5 0 ; x 2y 1 0
93
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
E. 4 x 2 9 y 2 32x 18 y 37 0
Solucin. Reordenando los trminos, despejando el trmino
independiente y factorizando, se tiene:
4( x 2 8 x) 9( y 2 2 y ) 37
Completando trinomios y equilibrando la ecuacin:
4( x 2 8 x 16) 9( y 2 2 y 1) 37 64 9
4( x 4) 2 9( y 1) 2 36
( x 4) 2 ( y 1) 2
1
9 4
Segn esta ecuacin se tiene que:
a 9 3
b 4 2
c2 a2 b2
c2 9 4
c 5
c 5
Excentricidad: e
a 3
2b 2 24 8
Longitud del lado recto: LLR
a 3 3
94
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
F. 9 x 2 9 y 2 27 x 18 y 1 0
Solucin. Pasando el trmino independiente al segundo miembro y
dividiendo toda la ecuacin para (9) tenemos:
1
x 2 y 2 3x 2 y
9
Luego reordenando los trminos, completando trinomios y equilibrando la
ecuacin tenemos:
2 9
1 9
x 3x y 2 y 1 1
2
4 9 4
2
3
x y 1
2 113
2 36
3 113
C ( ,1) y r
2 36
95
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a) x 4 y 10 x 4 y 1 0
2 2
( x 2 10 x) 4( y 2 y ) 1
1
( x 2 10x 25) 4( y 2 y ) 1 25 1
4
1
( x 5) 2 4( y ) 2 25
2
1
( y )2
( x 5) 2
2 1
25 25
4
96
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a 25 5
25 5
b
4 2
c2 a2 b2
25
c 2 25
4
75
c
4
97
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
b) x 2 1 2 y 2 2( x 2 y )
x2 1 2 y 2 2x 4 y 0
x 2
2 x 2 y 2 2 y 1
x 2
2 x 1 2 y 2 y 1 1 1 2
2
x 12 2 y 12 2
y 12 x 12 1
1 2
Segn esta ecuacin se tiene que:
a 1 1
b 2
c2 a2 b2
c2 1 2
c 3
c 3
Excentricidad: e 3
a 1
2b 2 22
Longitud del lado recto: LLR 4
a 1
Asntotas:
98
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( y k ) ( x h) ( y k ) ( x h)
0; 0
a b a b
y 1 x 1 y 1 x 1
0 ; 0
1 2 1 2
x 2y 1 0 ; x 2y 3 0
c) 5 x 2 y x 5
1 99
De aqu se observa que el vrtice es V ( , ) , tambin que:
10 20
1
4P
5
99
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1
P
20
1
Luego la coordenada del foco es F ( ,5)
10
49
La ecuacin de la directriz es y
10
1
Longitud del lado recto L.R 4 P se convierte en L.R
5
9 x 2 4 y 2 72 x 16 y 124 0
a) Hiprbola C 1,2 ; a 3 ; b 2; c 7
b) Circunferencia C 1,2 ; r 1
c) Parbola V 2,2 ; P
5 5 5
; LD : x 2 ; F (2 ,2)
4 4 4
d) Elipse C 4,2 ; a 3 ; b 2 ; c 5
100
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
9( x 2 8 x ) 4( y 2 4 y ) 124
c 5
Excentricidad: e
a 3
2b 2 24 8
Longitud del lado recto: LLR
a 3 3
101
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
ELIPSE (D).
a) Hiprbola C 1,2 ; a 3 ; b 2; c 7
b) Circunferencia C 1,2 ; r 1
c) Parbola V 2,2 ; P
5 5 5
; LD : x 2 ; F (2 ,2)
4 4 4
d) Elipse C 4,2 ; a 3 ; b 2 ; c 5
y 2 4 y 4 5x 6 4
( y 2) 2 5 x 10
( y 2) 2 5( x 2)
102
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
4P 5
5
P
4
3
Luego las coordenadas del foco son: F (h P, k ) , F ( ,2)
4
PARBOLA (C).
103
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a) Hiprbola C 1,2 ; a 3 ; b 2; c 7
b) Circunferencia C 1,2 ; r 1
c) Parbola V 2,2 ; P
5 5 5
; LD : x 2 ; F (2 ,2)
4 4 4
d) Elipse C 4,2 ; a 3 ; b 2 ; c 5
x 2 y 2 2 x 4 y 2
Centro : C(1,2) y r 3
104
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a) Hiprbola C 1,2 ; a 3 ; b 2; c 7
b) Circunferencia C 1,2 ; r 1
c) Parbola V 2,2 ; P
5 5 5
; LD : x 2 ; F (2 ,2)
4 4 4
d) Elipse C 4,2 ; a 3 ; b 2 ; c 5
4 x 2 2 x 3 y 2 4 y 20
4x 2
2 x 1 3 y 4 y 4 20 4 12
2
4x 1 3 y 2 12
2 2
x 12 y 22 1
3 4
Segn esta ecuacin se tiene que:
a 3
b 4 2
c2 a2 b2
c2 3 4
c 7
105
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c 7
Excentricidad: e
a 3
2b 2 24 8
Longitud del lado recto: LLR
a 3 3
Asntotas:
( x h) ( y k ) ( x h) ( y k )
0 ; 0
a b a b
x 1 y 2 x 1 y 2
0 ; 0
3 2 3 2
2x 3 y 1.46 0 ; 2x 3 y 5.46 0
HIPRBOLA (A).
106
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
CAPTULO 2
FUNCIONES
2.1 Funciones de una variable real.
2.2 Dominio y rango de una funcin.
2.3 Clasificacin de funciones.
2.4 Tipos de funciones.
2.5 Anlisis bsico de la funcin cuadrtica.
2.6 Ejercicios adicionales.
107
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ej.:
a. y x 5
b. y 2 x 3 7 x 2 12x 5
c.
x 32 y 52 1
4 9
d. z 3t 8
e. z 16 x 2 y 2
108
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x y
-3,0 -14,8
-2,0 -7,4
-1,0 -3,6
0 -2,2
1,0 -2,0
2,0 -1,8
3,0 -0,4
4,0 3,4
109
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
110
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Rango
(altura)
x
Dominio (ancho)
111
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Recta
horizontal
Recta vertical
Parte del rango no
utilizado por la funcin
112
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Dems ejemplos:
Es inyectiva Es inyectiva
Es sobreyectiva No es sobreyectiva
Es biyectiva No es biyectiva
Es inyectiva
Es sobreyectiva
Es biyectiva
No es inyectiva No es funcin
Es sobreyectiva
No es biyectiva
113
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Observe la
simetra con
respecto al
origen
Funcin
impar
Funcin par:
Funcin impar:
114
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
f x f x
3x 2 4 3 x 4
2
3x 2 4 3x 2 4
Entonces, la funcin es par.
f x f x
3 x 4 3x 2 4
2
3x 2 4 3x 2 4
Entonces, la funcin no es impar.
115
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2. Indicar si la funcin f x
1 3
x 4 x ; es par, impar o ninguna.
3
f x f x
x 4 x x 4 x
1 3 1 3
3 3
1 3 1
x 4x x 3 4x
3 3
f x f x
1
x 3 4 x 1 x 3 4 x
3 3
1 1
x 3 4x x 3 4x
3 3
116
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
f x f x
2 x 3 5x 2 3x 1 2 x 5 x 3 x 1
3 2
2x 3 5x 2 3x 1 2x 3 5x 2 3x 1
f x f x
2 x 5 x 3 x 1 2 x 3 5x 2 3x 1
3 2
2x 3 5x 2 3x 1 2x 3 5x 2 3x 1
Entonces, la funcin no es impar.
117
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
MATLAB
% FUNCIONES
%1. Sea la funcin f(x)=3x^2-4, determinar si es par, impar o
ninguna.
%2. Indicar si la funcin f(x)=(x^3)/3 - 4x ; es par, impar o
ninguna.
%3 Indicar si la funcin f(x)=2x^3-5x^2+3x-1; es par, impar o
ninguna.
clc
clf
%funcion
x=-15:0.1:15;
y1=3*x.^2-4;
y2=x.^3/3-4*x;
y3=2*x.^3-5*x.^2+3*x-1;
%grfica 1
subplot(1,3,1); plot(x,y1)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
%grfica 2
subplot(1,3,2); plot(x,y2)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
%grfica 3
subplot(1,3,3); plot(x,y3)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
si x2 x1 y f x2 f x1 creciente
si x2 x1 y f x2 f x1 decreciente
118
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
119
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
constante
creciente creciente
decreciente
CONSTANTE: De la forma f x a
Ejemplo:
f x 2
120
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
LINEAL: De la forma f x mx b
Ejemplo:
f x 3x 1
Ejemplo:
f x 2 x 2 8 x 7
121
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplo
f x x3 3x 2 x 3
Ejemplo:
122
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
MATLAB
% FUNCIONES CONSTANTE, LINEAL, CUADRATICA Y CUBICA
clc
clf
%funcin
x=-15:0.1:15;
y1=2*ones(length(x));
y2=3*x-1;
y3=2*x.^2-8*x+7;
y4=x.^3-3*x.^2-x+3;
%grfica 1
subplot(2,2,1); plot(x,y1,'b-')
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
%grfica 2
subplot(2,2,2); plot(x,y2)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
%grfica 3
subplot(2,2,3); plot(x,y3)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
%grfica 4
subplot(2,2,4); plot(x,y4)
hold on
eje=-15:1:15;
ceros=zeros(1,31);
plot(eje,ceros,'r+-')
plot(ceros,eje,'r+-')
grid on
grid minor
axis([-5 5 -5 5])
axis square
123
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplo:
f x
2
x3
(Observe que se trata de una grfica doble y que posee una asntota en x 3)
124
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a 1
Solucin. Por la forma de la funcin se tiene que b 4
c 2
Primero hallamos el vrtice x, y de la parbola, donde x
b
,
2a
entonces:
b 4
x 2
2a 21
f 2 2 4 2 2 y 4 8 2 2
2
b b 2 4ac 4 42 412 4 8
x 2 2
2a 21 2
yc2
125
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
126
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
127
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
b. Graficar la funcin f x 2 x 2 4 x 1 .
f x 2 x 2 4 x 1
f x 2x 2 x 1
2
f x 2 x 2 2 x 1 1 2
128
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ntese que el valor absoluto del factor multiplicador al ser mayor que 1
(2>1), produce una compresin lateral en el grfico; esto hace pensar
que si el valor absoluto del factor multiplicador fuera menor que 1 (k<1),
el grfico tiende a ser ms ancho lateralmente.
129
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1 x2
;x 0
2
f x x 2 ;0 x 4
x 22 3 ;x 4
Determine:
c. Intervalos de monotona.
Solucin.
a. Observe el grfico
130
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2x2 ;x0
131
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Determine:
c. Intervalos de monotona.
Solucin.
a. Observe el grfico
b. Dom , y Rg [0, )
5 x 23 ;x 4
Determine:
a. El grfico de la funcin.
132
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
b. Dominio y rango.
Solucin.
a. Observe el grfico.
b. Dom , y Rg
133
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
a. Observe el grfico.
1 3
b. Dom ,y Rg (, ] ( , )
2 2
c. Calificando verdadero con V y falso con F:
1
C F
El rango de la funcin es ,1
2
La funcin es par en el intervalo 1,1 F
La funcin es inyectiva, pero no sobreyectiva F
1
C V
La funcin es decreciente en 0,
2
Ninguna de las anteriores es verdadera F
134
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
135
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
136
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
CAPTULO 3
lmites
3.1 Definicin de lmite.
3.2 Teoremas y propiedades de los lmites.
3.3 Lmites de funciones polinmicas y racionales.
3.4 Lmites indeterminados.
3.5 Lmites unilaterales.
3.6 Lmites trigonomtricos.
3.7 Lmites con funciones exponenciales.
3.8 Lmites con funciones logartmicas.
3.9 Lmites con valor absoluto.
3.10 Ejercicios adicionales.
137
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Debe comprenderse que el valor del lmite L de una funcin exista sin la
necesidad de que la funcin exista en dicho valor x a . Esto es que, no
necesariamente debe existir f a , sino que, ms bien se debe observar la
tendencia, aproximacin o acercamiento de la funcin en dicho valor.
138
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1. ;
2. ;
3. ;
4. ;
5. ;
6. , siendo ;
7. ;
139
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1. lim2 x 7 25 7 3
x 5
Demostracin grfica
2. lim x 2 x 6 02 0 6 6
x0
Demostracin grfica
140
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
3.
x4
lim x 2 2 x 8 4 24 8 0
2
Demostracin grfica
4.
x1
lim x3 7 x 2 4 x 12 1 7 1 4 1 12 0
3 2
Demostracin grfica
141
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 3 7 x 10 3 73 10 4
3
5. lim 0.8
x3 x2 3 2 5
Demostracin grfica
%MATLAB
%LIMITES
%Hallar el valor de los siguientes lmites:
clc
syms x
%lim(2x-7)
%x->5
L1=limit(2*x-7,x,5)
%lim(x^2+x-6)
%x->0
L2=limit(x^2+x-6,x,0)
%lim(x^2-2x-8)
%x->4
L3=limit(x^2-2*x-8,x,4)
%lim(x^3-7x^2+4x+12)
%x->-1
L4=limit(x^3-7*x^2+4*x+12,x,-1)
%lim(x^3-7x-10)/(x+2)
%x->3
L5=limit( (x^3-7*x-10)/(x+2),x,3)
142
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
De la forma 0/0
lim
t 2 81
lim
t 9t 9 limt 9 18
t 9 t 9 t 9 t 9 t 9
143
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
lim
m 2 m 20
lim
m 5m 4 lim m 4 9
2.
m5 m5 m5 m5 m5
Demostracin grfica
3. lim
u7
lim
u 7 u 7
lim u 7 2 7
u 7 u 7 u7 u 7 u 7
Demostracin grfica
144
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
4. lim
3x3 12x 2 36x
lim
3x x 2 4 x 12 3
lim x 2 4 x 12
9
x0 16x x0 16x 16 x0 4
Demostracin grfica
1 1
x x
3 lim 3 1 1
5.
lim1 lim 3
1 x 1 1 2 1 1 x 1 2 1 1 1
3 x 3 x x
x
3 x x x
3
27 3 3 9 3 9 3
Demostracin grfica
145
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
De la forma /
Ejemplos:
x
1. lim
x 5 x 2 x
x
lim
x 5 x 2 x 5
2
x 1 1
lim x
x x2 0
lim 2 lim 2 0
x 5 x x x 5 x x x 5 1 5 1 5 0
x2 x2 x
146
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Demostracin grfica
x3 6 6
1
x 6
3
x 3
x 3
x 3 1 0 1
lim 2 lim 2 lim
2. x x 2 x 5 x x 2 x 5 x 1 2 5 0 0 0 0
x3 x3 x3 x x2 x3
Demostracin grfica
20 y
0 x
-10 0 10 20 30 40 50
147
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
4x 2 3 3
2 4 3
4x 3
2 2
x 40 4 2
lim 2 lim 2x x lim
3. x 2 x 5 x 8 x 2 x 5 x 8 x 2 5 8 2 0 0 2
x2 x2 x2 x x2
Demostracin grfica
8x 4 3 3 3
8 8
8x 3
4
x4 x 4 lim x4 80 8
lim lim
4. x 5 x 4 x 5 x4 x 5
5
0 1
1 1
x4 x4 x4
Demostracin grfica
148
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
%LIMITES INDETERMINADOS
%Hallar el valor de los siguientes lmites:
clc
syms m t u x
% DE LA FORMA 0/0
%lim(t^2-81)/(t-9)
%t->9
L1=limit((t^2-81)/(t-9),t,9)
%lim(m^2+m-20)/(m+5)
%m->-5
L2=limit((m^2+m-20)/(m+5),m,-5)
%lim(u-7)/(u^(1/2)-7^(1/2))
%u->7
L3=limit((u-7)/(u^(1/2)-7^(1/2)),u,7)
%lim(3x^3-12x^2-36x)/16x
%x->0
L4=limit((3*x^3-12*x^2-36*x)/16*x,x,0)
%lim(x+1/3)/(x^3+1/27)
%x->-1/3
L5=limit((x+1/3)/(x^3+1/27),x,-1/3)
% DE LA FORMA INFINITO/INFINITO
%lim x/(5x^2+x)
%x->infinito
L1=limit(x/(5*x^2+x),x,inf)
%lim (x^3+6)/(x^2-2x+5)
%x->infinito
L2=limit((x^3+6)/(x^2-2*x+5),x,inf)
%lim (4x^2-3)/(2x^2+5x-8)
%x->infinito
L3=limit((4*x^2-3)/(2*x^2+5*x-8),x,inf)
%lim (8x^4-3)/(5+x^4)
%x->infinito
L4=limit((8*x^4-3)/(5+x^4),x,inf)
149
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Hasta aqu se ha trabajado con lmites cuyo valor existe en la funcin. Sin
embargo, en esta seccin se verificar (grficamente) la existencia del
lmite sin necesidad de que la funcin exista en determinado valor de la
variable independiente.
Una funcin puede poseer una tendencia al valor de un lmite tanto por el
lado izquierdo como por el derecho.
Ejemplos:
1.
x 3
2
lim x 3 2 3 3 2 2
2
Demostracin grfica
150
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1 1 1
lim
2. x 2 x 2 22 0 (observe la grfica)
Demostracin grfica
2 2 2
lim 2 2
3. x 1 x 1 1 1 0 (observe la grfica)
Demostracin grfica
151
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x2 2x 2 ; x 1
4. Hallar el lmite de f x , cuando x
3 x ; x 1
tiende a 1, tanto por izquierda como por derecha.
x 1 x 1
lim f x lim x 2 2 x 2 1 21 2 3
2
lim f x lim 3 x 3 1 2
x 1 x 1
Demostracin grfica
%MATLAB
%LIMITES UNILATERALES
clc
syms m t u x
%Hallar el valor de los siguientes lmites:
%lim (x-3)^2+2
%x->3+
L1=limit((x-3)^2+2,x,3,'right')
%lim [1/(x+2)]
%x->2-
L2=limit(1/(x+2),x,-2,'left')
152
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%lim [2/(x^2-1)]
%x->1+
L3=limit(2/(x^2-1),x,1,'right')
% Dada la funcin
% _
% | x^2-2x-2; x<=1
%f(x)= |
% |_3-x ; x>1
% Hallar el limite de f(x) cuando x tiende a 1, tanto por izquierda
% como por derecha.
%lim f(x)
%x->1-
L4a=limit(x^2-2*x-2,x,1,'left')
%lim f(x)
%x->1+
L4b=limit(3-x,x,1,'right')
2 ; x 4
5. Hallar el lmite de f x 3 2 x x 2 ;4 x 1 , cuando
x3
;x 1
2
x tiende al valor de -4 y de 1, tanto por izquierda como por derecha.
lim f x lim 2 2
x 4 x 4
x 4 x 4
lim f x lim 3 2 x x 2 3 2 4 4 5
2
x 1 x 1
lim f x lim 3 2 x x 2 3 21 1 0
2
x 3 1 3
lim f x lim 1
x 1 x 1 2 2
153
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Demostracin grfica
154
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Adems del uso de estos lmites notables a veces son necesarias tambin
algunas identidades trigonomtricas.
155
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1 sen2 x cos2 x 1
senx
csc x
1 1 tan 2 x sec2 x
cos x
sec x
senx 1 cot2 x csc2 x
tan x
cos x sen2x 2senxcos x
cos x
cot x
senx cos2x 2 cos2 x 1
Ejemplos:
senx 1 senx
lim
1. x 0
x0 2 x0
lim lim 1
x x
3
x
Demostracin grfica
y
la grfica se vuelve al infinto
4
mientras el valor de x se hace 0
0 x
-6 -4 -2 0 2 4 6
156
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2.
lim
x 0
sen3 x
x
lim sen 2 x lim
x 0
senx
x 0 x
0 1 0
Demostracin grfica
y
0 x
-2 -1 0 1 2 3 4 5
cuando el valor x tiende a 0 la grfica
se acerca al origen
-1
P(2,0.333)
0 u
-2 -1 0 1 2 3 4 5
-1
157
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
t
lim cos t lim 2 11 2 1
t 0
t 0 sent
Demostracin grfica
f(t)
1
0 t
-3 -2 -1 0 1 2 3
-1
P(0,-1)
-2
x
La expresin lim 1 , es otro lmite notable. Observe el
x0 senx
siguiente grfico:
158
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Figura 3.4 Lmite notable 3.
1 cos 2u
5. lim Utilizando identidades trigonomtricas:
u 0 u sen(u )
1 cos 2u 1 (2 cos2 u 1) 1 2 cos2 u 1 2 1 cos2 u 2sen2u
se tiene que
2 P(0,2)
0 u
-6 -4 -2 0 2 4 6
-2
%MATLAB
%LIMITES TRIGONOMETRICOS
clc
syms t u x
%lim sen(x)/x
%x->0
a=limit(sin(x)/x,x,0)
%lim (1-cos(x))/x
%x->0
b=limit((1-cos(x))/x,x,0)
%lim x/sen(x)
%x->0
c=limit(x/sin(x),x,0)
%lim sen(x)/x^3
%x->0
L1=limit(sin(x)/x^3,x,0)
159
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%lim sen^3(x)/x
%x->0
L2=limit((sin(x))^3/x,x,0)
%lim sen(u-2)/(3u-6)
%u->2
L3=limit(sin(u-2)/(3*u-6),u,2)
%lim (t-2sen(t)/tan(t)
%t->0
L4=limit((t-2*sin(t))/tan(t),t,0)
%lim (1-cos(2u))/u*sen(u)
%u->0
L5=limit((1-cos(2*u))/(u*sin(u)),u,0)
Ejemplos:
1.
lim 2 x 2
1
1
0
x 2
Demostracin grfica
160
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
lim 1 e x 3 1 e 33 1 e 0 1 1 0
2. x 3
Demostracin grfica
3. lim
x 0
3 3
senx sen 0
30 1
Demostracin grfica
161
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
%LIMITES CON FUNCIONES EXPONENCIALES
%Hallar el valor de los siguientes lmites:
clc
syms x
%lim 2^x
%x->-inf
L1=limit(2^x,x,-inf)
%lim (1-exp(x-3))
%x->3
L2=limit(1-exp(x-3),x,3)
%lim 3^sen(x)
%x->0
L3=limit(3^sin(x),x,0)
Ejemplos:
1. limlog x log1 0
x 1
Demostracin grfica
162
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Demostracin grfica.
Demostracin grfica
163
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%MATLAB
%LIMITES CON FUNCIONES LOGARITMICAS
%Hallar el valor de los siguientes lmites:
clc
syms x
%lim log(x)
%x->1
L1=limit(log10(x),x,1)
%lim [1-ln(x)]
%x->e
limit(1-(log(x)),x,exp(1));
L2=round(ans) % redondea el ltimo resultado
%lim [2+ln(x-3)]
%x->4
L3=limit(2+log(x-3),x,4)
Ejemplos:
1. lim x 3 33 0 0
x 3
Demostracin grfica
164
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
2. lim x 2 3 1 2 3 3 3 3 3 0
x1
Demostracin grfica
%MATLAB
%LIMITES CON VALOR ABSOLUTO
%Hallar el valor de los siguientes lmites:
clc
syms x
%lim |x-3|
%x->3
L1=limit(abs(x-3),x,3)
%lim ||x-2|-3|
%x->-1
L2=limit(abs(abs(x-2)-3),x,-1)
165
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
-3 -2 -1
-1
b. lim f x -1 f. lim f x 0
x 0 x 3
c. lim f x No existe g. f 0 0
x 0
d. lim f x 0 h. f 2 1
x 2
-3 -2 -1 1 2 3 4
x
-1
166
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c. lim f x 1 g. f 3 0
x 1
d. lim f x 2 h. f 2 2
x 2
1 3 2 1
3. lim lim 3senx 2 tan x
x 0 x csc x
ctgx
x 0 x
3senx 2 tan x
lim lim
x 0
x x 0 x
senx tan x
3 lim 2 lim
x 0 x x 0 x
31 21
1
1 senx
4. lim
2
x
2
x
2
Haciendo el cambio de variable u x ; as, si x , entonces u 0 .
2 2
Adems x u . Luego, tenemos:
2
1 sen u
1 senx 2
lim lim
u2
2 u 0
x
2
x
2
1 sen cos u senu cos
lim
2 2
u 0 2
u
1 cos u
lim
u 0 u2
1 cos u 1 cos u
lim
u 0 u2 1 cos u
1 cos2 u
lim 2
u 0 u 1 cos u
167
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
sen2 u
lim 2
u 0 u 1 cos u
1 sen2 u
lim lim 2
u 0 1 cos u u 0 u
2
1 senu
lim
2 u 0 u
1
1 2
2
1
2
5. lim
x2 x 2
lim
x 2x 1 lim x 1 3
x 2 x2 x2 x 2 x 2
x2 x 1 4x 3 4x 2 x
2
6. lim lim 3
x x 2 x 2 x 1 x x x 2 4 x 4
4x3 4x 2 x 4 1
3 3 4 2
3
x x 400
lim 3x 2 x x lim 4
x x x 4x 4 x 1 4 4 1 0 0 0
1 2 3
x3 x3 x3 x3 x x x
2 x 2 2 x 2 2 x 2
7. lim lim
x 0 x x 0 x 2 x 2
2 x 2
2 2
lim
2 x2
lim
1
1
x 2 x 2
lim
x 0 x 0
x 2 x 2 x 0
2 x 2 2 2
x 3 6 x 2 11x 6
8. lim
x 1 x 1
+1 -6 +11 -6 +1
+1 -5 +6
+1 -5 +6 //
Entonces:
lim
x 3 6 x 2 11x 6
lim
x 1 x 2 5x 6
lim x 2 5x 6 2
x 1 x 1 x 1 x 1 x 1
168
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
9. Dada la funcin:
2
x 3 x ;x 0
f x e x 2 ;0 x 4
1
2 x 1 ;x 4
Determine:
a. El grfico de la funcin, dominio y rango.
c. f 4, f 0, f 2
Desarrollo
a. Observe el grfico
e6
e2
-1 4
x
-1
-4
b. lim f x e
2
x 0
lim f x 0
x 0
lim f x no existe
x 4
169
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
c. f 4 1
f 0 e 2
f 2 e 4
10. lim
n 2
1 n 3n 4
lim
n 4 n 3 12n 2 n 2 n 12
nn 2 n 4 6n 3 12n 2 8n
n 3 n
n 4 n 3 11n 2 n 12 1 11 1 12 1 11 1 12
4 4 4 4 1 2 3 4 1
4
lim n 4 n 3 n n n lim n n n n 1
n n 6n 12n 2 8n n 6 12 8 6 12 8
4 4 4 1 2 3 1
n 4
n n n n n n
6x 1 1 1
6 6
6x 1 6
11. lim lim x x lim x
x x x
x 5
2
x 2
5 5 5
2 1 2 1
x 2
x x
2
3
x 1 3
x 1 3
x 3 x 1 4
x 1 x 1
12. lim lim 4 4
x 1 x 1 x 1 x 1
x 1 4 x 1 2
3
x 3 x 1
x 14 x 1 x 1 lim 4
x 1 1 11 1 4
x 1
lim
x 1
x 13 x 2 3 x 1 x 1 3
x2 3 x 1 111 3
f x h f x
13. Sea f x 3 x , hallar f x lim
h 0 h
xh 3 x
3
f x lim
h 0 h
f x lim
xh 3 x
3
3
xh
2
3
xh x x
3 3
2
h 0 h 3
x h
2
3
x h x x
3 3
2
xhx
f x lim
h 0
h 3
xh
2
3
xh x x
3 3
2
f x lim
h
h 0
h 3
xh
2
3
xh x x
3 3
2
170
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
f x lim
1
h 0 3
xh
2
3
xh x x
3 3
2
f x
1
x x x x
3
2
3 3 3
2
f x
1
33 x
2
Gt h Gt
14. Sea Gt
t
, determine el lmite lim
t4 h0 h
th t
G t h G t
lim lim t h 4 t 4
h 0 h h 0 h
t 4t ht 4h t 2 ht 4t
2
lim
t h 4t 4
h 0 h
4h
lim
t h 4t 4
h 0 h
4
lim
h0 t h 4t 4
4
t 42
lim f 2 x 3 g x lim f 2 x lim 3 g x
x 3 x 3 x 3
lim f x 3 lim g x
2
x 3 x 3
4 8
2 3
16 2
32
171
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
CAPTULO 4
DERIVADAS
Derivadas de funciones algebraicas.
Derivadas de funciones trigonomtricas.
Derivadas de funciones trigonomtricas inversas.
Derivada de funciones compuestas. Regla de la Cadena.
Derivacion implicita
172
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1. Dx k 0
2. Dx x 1
3. Dx k f ( x ) k Dx f ( x )
4. Dx ( f ( x) g ( x)) Dx f ( x) Dx g ( x)
5. Dx ( f ( x) g ( x)) Dx f ( x) Dx g ( x)
6. Dx ( f ( x) g ( x)) f ( x) Dx g ( x) g ( x) Dx f ( x)
f ( x) g ( x) Dx f ( x) f ( x) Dx g ( x)
Dx
7.
g ( x) g ( x)2
8. Dx x n nxn1
Ejemplos:
1. y 8
y, 0
2. y 10x
y , 10
3. y 20x 5
y , 20 0
y , 20
4. y x 25x
y , 1 25
y , 26
173
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
5. y x2
y , 2 x 21
y, 2x
6. y 4 x 4 x3
y , 16 x 41 3 x 31
y , 16 x 3 3 x 2
7. y 6 x 3
y , 3(6) x 31
y , 18x 4
8. y
x
y ( x 1 )
y , (1x 11 )
y , ( x 2 )
y,
x2
3
9. y 3
x 2
x
y 3 x 3 x 2
y , 3(3) x 31 (2) x 21
y , 9 x 4 2 x 3
9 2
y, 4 3
x x
174
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1
10. y 2x
5x
1 1
y x 2x
5
1
y , 1( ) x 11 2
5
1
y , x 2 2
5
1
y, 2 2
5x
11. y 2 x 2 7 x5
y , (2 x 2 ) Dx (7 x5 ) (7 x5 ) Dx (2 x 2 )
y , 2 x 2 (35x 5 1 ) 7 x 5 (4 x 2 1 )
y , 2 x 2 (35x 4 ) 7 x 5 (4 x)
y , 70 x 6 28x 6
y , 98x 6
12. y ( x 2 2) ( x 3 1)
y , ( x 2 2) Dx ( x3 1) ( x3 1) Dx ( x 2 2)
y , ( x 2 2)(3 x 2 ) ( x 3 1)(2 x)
y , 3x 4 6 x 2 2 x 4 2 x
y, 5x4 6x2 2x
y , x(5 x 3 6 x 2)
13. y (2 x 1) 2
y , 2(2 x 1) 21 (2 0)
y , 2(2 x 1) 2
y , 4(2 x 1)
y, 8x 4
175
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x 1
14. y
x 1
( x 1) Dx ( x 1) ( x 1) Dx ( x 1)
y,
( x 1)2
( x 1)(1) ( x 1)(1)
y,
( x 1)2
x 1 x 1
y,
( x 1) 2
2
y,
( x 1) 2
2
15. y
x2 5
( x 2 5) Dx (2) (2) Dx ( x 2 5)
y
,
( x 2 5) 2
( x 2 5)(0) (2)(2 x)
y
,
( x 2 5) 2
4x
y, 2
( x 5)2
16. y ( x 1) ( x 4)
y , ( x 1) Dx ( x 4) ( x 4) Dx ( x 1)
y , ( x 1)(1) ( x 4)(1)
y, x 1 x 4
y, 2x 3
17. y ( x 3 2 x) (3x 1)
y , ( x3 2 x) Dx (3x 1) (3x 1) Dx ( x3 2 x)
y , ( x 3 2 x)(3) (3x 1)(3x 2 2)
176
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
y , 3x3 6 x 9 x 3 3x 2 6 x 2
y , 12 x 3 3 x 2 12 x 2
18. y (5 x 6) ( x 8 x 2 )
y , (5x 6) Dx ( x 8x 2 ) ( x 8x 2 ) Dx (5x 6)
y , (5 x 6)(1 16x) ( x 8 x 2 )(5)
y , 80 x 2 91x 6 5 x 40 x 2
y , 120x 2 86x 6
19. y ( 2 x 2 ) ( x 9)
y , (2 x 2 ) Dx ( x 9) ( x 9) Dx (2 x 2 )
y , (2 x 2 )(1) ( x 9)(2 x)
y , 2 x 2 2 x 2 18x
y , 3 x 2 18x 2
20. y (1 x 2 3 x 3 ) (1 2 x 5 )
y , (1 x 2 3x3 ) Dx (1 2 x5 ) (1 2 x5 ) Dx (1 x 2 3x3 )
y , (1 x 2 3x 3 )(10x 4 ) (1 2 x 5 )(2 x 9 x 2 )
y , 10 x 4 10x 6 30 x 7 2 x 9 x 2 4 x 6 18x 7
y , 48x 7 14 x 6 10 x 4 9 x 2 2 x
5x 4
21. y
2 x3 1
(2 x 3 1) Dx (5 x 4) (5 x 4) Dx (2 x 3 1)
y
,
(2 x 3 1) 2
(2 x 3 1)(5) (5 x 4)(6 x 2 )
y
,
(2 x 3 1) 2
177
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
(2 x 3 1) 2
20 x 3 24 x 2 5
y
,
(2 x 3 1) 2
x3 1
22. y
x3
( x 3) Dx ( x 3 1) ( x 3 1) Dx ( x 3)
y
,
( x 3) 2
( x 3)(3 x 2 ) ( x 3 1)(1)
y
,
( x 3) 2
3x3 9 x 2 x3 1
y
,
( x 3) 2
2 x3 9 x 2 1
y
,
( x 3) 2
4 x4
23. y
1 x2
(1 x 2 ) Dx (4 x 4 ) (4 x 4 ) Dx (1 x 2 )
y
,
(1 x 2 ) 2
(1 x 2 )(4 x 3 ) (4 x 4 )(2 x)
y
,
(1 x 2 ) 2
4 x3 4 x5 8 x 2 x5
y
,
(1 x 2 ) 2
2 x5 4 x3 8x
y
,
(1 x 2 ) 2
2 x( x 4 2 x 2 4)
y
,
(1 x 2 ) 2
178
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x3 x 2
24. y
3x 5
(3 x 5) Dx ( x 3 x 2 ) ( x 3 x 2 ) Dx (3 x 5)
y
,
(3 x 5) 2
(3 x 5)(3 x 2 2 x) ( x 3 x 2 )(3)
y
,
(3 x 5) 2
9 x 3 21x 2 10 x 3 x 3 3 x 2
y
,
(3 x 5) 2
6 x 3 18x 2 10x
y
,
(3x 5) 2
2 x(3 x 2 9 x 5)
y
,
(3 x 5) 2
x2 x 1
25. y
x3 1
( x 3 1) Dx ( x 2 x 1) ( x 2 x 1) Dx ( x 3 1)
y
,
( x 3 1) 2
( x 3 1)(2 x 1) ( x 2 x 1)(3 x 2 )
y
,
( x 3 1) 2
2 x 4 x 3 2 x 1 3x 4 3x 3 3x 2
y
,
( x 3 1) 2
x 4 2 x 3 3x 2 2 x 1
y
,
( x 3 1) 2
%MATLAB
%DERIVADAS DE FUNCIONES ALGEBRAICAS
%Hallar la primera derivada dy/dx de las siguientes funciones:
clc
syms x
%1. y=8
D1=diff(8,x,1)
179
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%2. y=10x
D2=diff(10*x,x,1)
%3. y=20x-5
D3=diff(20*x-5,x,1)
%4. y= x+25x
D4=diff(x+25*x,x,1)
%5. y= x^2
D5=diff(x^2,x,1)
%6. y= 4x^4+x^3
D6=diff(4*x^4+x^3,x,1)
%7. y= 6x^(-3)
D7=diff(6*x^(-3),x,1)
%8. y= pi/x
D8=diff(pi/x,x,1)
%10. y= 1/5x + 2x
D10=diff(1/(5*x) + 2*x,x,1)
%12. y= (x^2+2)*(x^3+1)
D12=diff((x^2+2)*(x^3+1),x,1);
D12=simplify(D12) %simplifica la respuesta
%13. y= (2x+1)^2
D13=diff((2*x+1)^2,x,1)
%14. y= (x-1)/(x+1)
D14=diff((x-1)/(x+1),x,1);
D14=simplify(D14) %simplifica la respuesta
%15. y= 2/(x^2+5)
D15=diff(2/(x^2+5),x,1)
%16. y= (x+1)*(x-4)
D16=diff((x+1)*(x-4),x,1)
%17. y= (x^3-2x)*(3x-1)
D17=diff((x^3-2*x)*(3*x-1),x,1);
D17=simplify(D17) %simplifica la respuesta
%18. y= (5x+6)*(x-8x^2)
D18=diff((5*x+6)*(x-8*x^2),x,1);
D18=simplify(D18) %simplifica la respuesta
%19. y= (2-x^2)*(x-9)
D19=diff((2-x^2)*(x-9),x,1);
180
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
D19=simplify(D19) %simplifica la respuesta
%20. y= (1-x^2+3x^3)*(1-2x^5)
D20=diff((1-x^2+3*x^3)*(1-2*x^5),x,1);
D20=expand(D20) % expande la respuesta
pretty(D20)
%21. y= (5x-4)/(2x^3-1)
D21=diff((5*x-4)/(2*x^3-1),x,1);
D21=simplify(D21) %simplifica la respuesta
pretty(D21)
%22. y= (x^3-1)/(x-3)
D22=diff((x^3-1)/(x-3),x,1);
D22=simplify(D22) %simplifica la respuesta
pretty(D22)
%23. y= (4-x^4)/(1-x^2)
D23=diff((4-x^4)/(1-x^2),x,1);
D23=simplify(D23) %simplifica la respuesta
pretty(D23)
%24. y= (x^3+x^2)/(3x+5)
D24=diff((x^3+x^2)/(3*x+5),x,1);
D24=simplify(D24) %simplifica la respuesta
pDetty(D24)
%25. y= (x^2-x+1)/(x^3-1)
D25=diff((x^2-x+1)/(x^3-1),x,1);
D25=simplify(D25) %simplifica la respuesta
pretty(D25)
1. Dx Sen( x ) Cos ( x)
2. DxCos ( x) Sen( x)
3. DxTan( x) Sec2 ( x)
4. DxCot ( x) Csc 2 ( x)
5. Dx Sec( x) Sec( x) Tan( x)
6. DxCsc ( x) Csc ( x) Cot ( x)
181
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
1. y Cos(2x)
u 2 x Dx u 2
y Cos(u ) Du y Sen(u )
Dx y 2 Sen( 2 x)
2. y Sen(4x) Cos(6x)
y , Cos(4 x) (4) Sen(6 x) (6)
y , 4Cos(4 x) 6 Sen(6 x)
3. y Sen4 ( x) Cos 4 ( x)
u Sen( x) Dxu Cos( x)
Sen ( x)
4
y u 4
D u y 4u 3
u Cos( x) Dxu Sen( x)
Cos ( x)
4
y u 4
D u y 4 u 3
Dx y 4Sen3 ( x) Cos( x) 4Cos3 ( x) Sen( x)
4. y Sen2 (3 x)
y Sen(3x)
2
5. y Tan 4 (5 x )
y Tan(5 x)
4
182
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
6. y Sen(3x) Cos(2x)
y , Sen(3x) DxCos(2 x) Cos(2 x) Dx Sen(3x)
y , Sen(3x) Sen(2 x)(2) Cos(2 x) Cos(3x)(3)
y , 2Sen(3x) Sen(2 x) 3Cos(2 x)Cos(3 x)
7. y x 2 Tan( x)
y , x 2 DxTan( x) Tan( x) Dx x 2
y , x 2 Sec2 ( x) Tan( x) 2 x
y , x 2 Sec2 ( x) (2 x)Tan( x)
8.
y Sen Cos ( x 3 )
u Cos( x3 ) Dxu 3x 2 Sen( x3 )
y Sen(u ) Du y Cos(u )
Dx y 3x 2 Sen( x3 ) Cos(u)
Dx y 3x 2 Sen( x3 )Cos Cos( x3 )
4x2
9.
y Tan
x 1
4x2
u
x 1
y Tan(u) Du y Sec2 (u)
183
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( x 1) Dx 4 x 2 4 x 2 Dx ( x 1)
Dx u
( x 1) 2
( x 1)(8 x) 4 x 2 (1)
Dx u
( x 1) 2
8x2 8x 4 x2
Dxu
( x 1) 2
4x2 8x
Dx u
( x 1) 2
4 x( x 2)
Dxu
( x 1) 2
4 x( x 2)
Dx y Sec2 (u )
( x 1) 2
4 x 2 4 x( x 2)
Dx y Sec 2
2
x 1 ( x 1)
Sen( x)
10. y
x2 1
( x 2 1) Dx Sen( x) Sen( x) Dx ( x 2 1)
y
,
( x 2 1) 2
( x 2 1)Cos( x) Sen( x)(2 x)
y
,
( x 2 1) 2
x 2Cos( x) Cos( x) 2 xSen( x)
y
,
( x 2 1) 2
%MATLAB
%DERIVADAS DE FUNCIONES TRIGONOMETRICAS
%Hallar la primera derivada dy/dx de las siguientes funciones:
clc
syms x
%1. y=cos(2x)
D1=diff(cos(2*x),x,1)
184
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
%2. y=sen(4x)- cos(6x)
D2=diff(sin(4*x)- cos(6*x),x,1);
pretty(D2)
%4. y= (sen(3x))^2
D4=diff((sin(3*x))^2,x,1)
%5. y= (tan(5x))^4
D5=diff((tan(5*x))^4,x,1)
D5=simplify(D5)
%6. y= sen(3x)*cos(2x)
D6=diff(sin(3*x)*cos(2*x),x,1)
%7. y= (x^2)*tan(x)
D7=diff((x^2)*tan(x),x,1)
%8. y= sen[cos(x^3)]
D8=diff(sin(cos(x^3)),x,1)
pretty(D8)
%9. y= tan[(4x^2)/(x+1)]
D9=diff(tan((4*x^2)/(x+1)),x,1);
D9=simplify(D9)
pretty(D9)
%10. y= sen(x)/(x^2-1)
D10=diff(sin(x)/(x^2-1),x,1);
D10=simplify(D10)
pretty(D10)
185
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1
1.
Dx Sen1 (u ) Dxu
1 u 2
1
2.
DxCos 1 (u ) Dxu
1 u 2
1
3. DxTan 1 (u ) Dxu
1 u 2
1
4. DxCot 1 (u ) Dxu
1 u 2
1
5.
Dx Sec1 (u ) Dxu
u u 1
2
1
6.
DxCsc 1 (u ) Dxu
u u 1 2
Ejemplos:
1. y x Sen1 (4 x)
y , xDx Sen1 (4 x) Sen1 (4 x) Dx x
1
y, x (4) Sen1 (4 x) (1)
1 (4 x) 2
4x
y, Sen1 (4 x)
1 16x 2
2. y x 2 Tan 1 ( x)
y , x 2 DxTan1 ( x) Tan1 ( x) Dx x 2
1
y, x2 Tan 1 ( x) (2 x)
1 x 2
186
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
x2
y ,
(2 x)Tan1 ( x)
1 x 2
1
3. y Cos ( 2 x ) x
3
y , DxCos 1 (2 x3 ) Dx x
1
y, (6 x 2 ) 1
1 (2 x 3 ) 2
6x2
y ,
1
1 4x 6
4. y Sec1 (2 x) 5Csc 1 ( x)
y , Dx Sec1 (2 x) 5DxCsc 1 ( x)
1 1
y ,
(2) 5
2 x (2 x) 1
2
x x 1
2
1 5
y,
x 4x2 1 x x2 1
5. y Sen1 Sen(2 x)
u Sen(2 x) Dxu 2Cos(2 x)
1
Dx Sen1 (u ) Dxu
1 u 2
1
y, 2Cos(2 x)
1 ( Sen2 x) 2
1
y, 2Cos(2 x)
1 Sen (2 x)
2
1
y, 2Cos(2 x)
2
Cos (2 x)
187
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
1
y, 2Cos(2 x)
Cos(2 x)
y, 2
%MATLAB
%DERIVADAS DE FUNCIONES TRIGONOMETRICAS INVERSAS
%Hallar la primera derivada dy/dx de las siguientes funciones:
clc
syms x
%1. y=x*arcsin(4x)
D1=diff(x*asin(4*x),x,1)
pretty(D1)
%2. y=(x^2)*arctan(x)
D2=diff((x^2)*atan(x),x,1)
pretty(D2)
%3. y= arccos(2x^3)+x
D3=diff(acos(2*x^3)+x,x,1)
pretty(D3)
%4. y= arcsec(2x)-5arccsc(x)
D4=diff(asec(2*x)-5*acsc(x),x,1)
pretty(D4)
%5. y= arcsen(sen(2x))
D5=diff(asin(sin(2*x)),x,1)
%D5=simplify(D5)
pretty(D5)
%6. y= sen(3x)*cos(2x)
D6=diff(sin(3*x)*cos(2*x),x,1)
%7. y= (x^2)*tan(x)
D7=diff((x^2)*tan(x),x,1)
%8. y= sen[cos(x^3)]
D8=diff(sin(cos(x^3)),x,1)
pretty(D8)
%9. y= tan[(4x^2)/(x+1)]
D9=diff(tan((4*x^2)/(x+1)),x,1);
D9=simplify(D9)
pretty(D9)
%10. y= sen(x)/(x^2-1)
D10=diff(sin(x)/(x^2-1),x,1);
D10=simplify(D10)
pretty(D10)
188
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( )( ) ( ( )) ( )
Ejemplos:
1. ( )
( )( ) ( ( )) ( ) ( ) ( )
2.
Si se consideran ( ) y ( ) , entonces ( ) y
( )
( )( ) ( ( )) ( ) ( ) ( )
3. ( )
Si se consideran ( ) y ( ) , entonces ( )
y ( )
( )( ) ( ( )) ( )
( ) ( )
4. ( )
Si se consideran ( ) y ( ) , entonces ( ) y
( ) ( )
( )( ) ( ( )) ( ) ( ) ( )
189
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
5. ( )
Si se consideran ( ) y ( ) , entonces ( ) y
( ) ( )
( ) ( )
( )( ) ( ( )) ( ) ( ) ( )
( )
( )
6. ( )
Si se consideran ( ) y ( ) , entonces ( ) y
( )
( )( ) ( ( )) ( ) ( ) ( )
( ) ( )
7. ( )
Si se consideran ( ) y ( ) , entonces y
( ) ( ) ( ( )) ( ) [ ( )]
190
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
8. ( )
Si se consideran ( ) , ( ) y ( )
Entonces , y
( ( )) ( ) ( )
( ) ( )
( ) ( )
Al despejar se obtiene:
Ejemplos:
1. Utilice la derivacin implcita para determinar la pendiente de la
recta tangente a la curva en el punto (1,2). Encuentre una
ecuacin de la recta tangente y grafique.
Solucin:
Al derivar implcitamente con respecto a x se obtiene:
191
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
En el punto (1,2),
2. Dada , calcule
( ) ( )
( )
( ) ( )( )
( )( )
( )
192
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplo:
1. Encuentre todas las derivadas de la funcin definida por :
( )
( )
( )
( )
( )
( )
( )
193
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
CAPTULO 5
APLICACIONES DE LA
DERIVADA
Tasas de variacin relacionadas
Mximos y minimos.
Regla de LHospital
194
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Ejemplos:
Datos:
x pies
S=25 ;dx/dt= 3 pies/s ; x=15 pies ; dy/dt=?
Despejando dy/dt:
195
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
profundidad?
h
Datos:
( )
196
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Datos:
z km y km
x km
Ejemplos:
1. Un fabricante de cajas de cartn quiere elaborar x x
cajas abiertas a partir de trozos rectangulares con
dimensiones de 10 x 17 pulg cortando cuadrados en
las cuatro esquinas y doblando los lados hacia arriba. 17
17-2x
Se desea determinar la longitud del lado de los
cuadrados que se deben cortar de modo que la caja
tenga el mayor volumen posible. 10-2x
x x
Si x es la longitud de los lados de los cuadrados, el volumen
10
197
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
de la caja es:
( ) ( )( )
( )
Para obtener los numeros criticos se calcula V(x) y se determinan los
valores de x para los que V(x)=0.
( )
De donde se obtiene y , de modo que el nico valor critico
de V es 2.03 ya que x no puede ser superior a 5, por lo tanto:
( )
Que es el volumen mximo cuando .
y
A fin de expresar el rea en trminos de
Una sola variable despejamos y en la ultima ecuacin y la sustituimos en
la ecuacin del rea:
( ) ( )
( )
Y por consiguiente
198
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
Por lo tanto el terreno de mayor rea posible que se puede cercar con
$5400 de cerca tiene un rea de 16 875 pie2 , cuando la longitud del lado
paralelo al ro mide 150 pies y la longitud de cada lado no paralelo al rio
es de 112.5 pie.
5 cm
Sustituimos esta expresin en la frmula del volumen,
derivamos e igualamos a cero la derivada.
( ) ( )
( ) ( )
( )
( )
199
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
( )
( )
( ) y ( )
( ) y ( )
( ) ( )
( ) ( )
Ejemplos:
1. Encuentre
Indeterminacin
( )
( )
2. Encuentre
Indeterminacin
( )
Indeterminacin
( )
( )
( )
3. Encuentre
Indeterminacin
( )
( )
200
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
4. Encuentre
Indeterminacin
( )
Indeterminacin
( )
( )
( )
201
FOLLETO DE CLCULO DIFERENCIAL
Ing. Vctor Huilcapi
BIBLIOGRAFIA
Clculo; Purcell, Varberg, Rigdon; Novena edicin
202