Sunteți pe pagina 1din 3

GRAFICAS DEL DEBER

Table of Contents
Ejercicio 12 Limites funcion y = (x^3+8)/(x+2) ........................................................................ 1
Ejercicio 55 Derivadas y = x^4-3x^2+2 .................................................................................. 1
Ejercicio 56 Derivadas y = 2/(x)^(3/4) .................................................................................... 2

Autor : Edgar Gallegos

Ejercicio 12 Limites funcion y = (x^3+8)/(x+2)


x = -6: 0.1 : 6;
y = (x.^3+8)./(x+2);
figure
plot(x,y);
axis([-5 5 0 14])

Ejercicio 55 Derivadas y = x^4-3x^2+2


x = -6:0.1:6; % Definimos el vector

1
GRAFICAS DEL DEBER

y = x.^4-3*x.^2+2; % Función
figure
plot(x,y);
axis([-3 5 -3 5])
y1 = -2*x+2; % Tangente en el punto (1,0)
hold on
plot(x,y1);

Ejercicio 56 Derivadas y = 2/(x)^(3/4)


x = -5:0.1:5; % Definimos el vector
y2 = 2./(x).^(3./4); % Función
figure
plot(x,y2);
axis([-4 5.5 0 10])
hold on
y3 = -3*x./(2)+7./2; % Tangente en el punto (1,2)
plot(x,y3);

Warning: Imaginary parts of complex X and/or Y arguments ignored

2
GRAFICAS DEL DEBER

Published with MATLAB® R2017b

S-ar putea să vă placă și