You are on page 1of 3

EJERCICIOS

24-.Grafique la funcin e indique si tiene o no punto de discontinuidad en x=0. Si hay una


discontinuidad, diga si es removible o no removible.
g(x)=x/x-2
MATLAB
>> x=-5:0.1:5;
>> y=x./(x-2);
Warning: Divide by zero.
>> plot(x,y),grid on

25

20

15

10

-5

-10

-15

-20
-5

-4

-3

-2

-1

32.-Grafique la funcin e identifique intervalos en la que la funcin es creciente, decreciente o


constante h(x)=0.58(x+2)2 -1
MATLAB
x=-6:0.1:3;
>> y=(((x-2).^2)./2)-1;
>> plot(x,y),grid on
>> x=-6:0.1:3;
>> y=0.5.*(x+2).^2-1;

>> plot(x,y),grid on
>> fminbnd('0.5.*(x+2).^2-1',-3,-1)
ans =
-2

12

10

-2
-6

-5

-4

-3

-2

-1

45.- Utilice un graficador para determinar todas las mximos y mnimos locales y los valores de x
en donde aparecen.
MATLAB
>> x=-4:0.1:4;
>> y=x.^2.*sqrt(x+4);
>> plot(x,y),grid on
>> fminbnd('-[x.^2.*sqrt(x+4)]',-4,-2)
ans =
-3.20
>> fminbnd('x.^2.*sqrt(x+4)',-5,-3)
ans =
-4.00
>> fminbnd('x.^2.*sqrt(x+4)',-1,1)
ans =
0.00

50
45
40
35
30
25
20
15
10
5
0
-4

-3

-2

-1

53.-Establezca si la funcin es impar, par o ninguna de ellas. Apoye su respuesta en forma grfica
y confrmela en forma algebraica.
MATLAB
>> x=-3:0.1:3;
>> y=2.*x.^3-3.*x;
>> plot(x,y),grid on
>> axis([-3 3 -15 15])

15

10

-5

-10

-15
-3

-2

-1

62.-Utilice un mtodo de su eleccin para determinar todas las asntotas horizontales y verticales
de la funcin.
20

15

10

-5

-10

-15

-20
-5

-4

MATLAB
>> x=-6:0.1:4;
>> y=(2.*x-4)./(x.^2-4);
Warning: Divide by zero.
>> plot(x,y),grid on
>> axis([-5 3 -20 20])

-3

-2

-1

You might also like