Está en la página 1de 7

MATEMTICA SIMBLICA

Ejercicio 1:

>> syms x t
>> y = x^2;
>> ezplot(y)
>>title('f(x) = x^2')
>> xlabel('x (variable independiente)')
>> ylabel('y = f(x) (variable dependiente)')
>> axis([-8 8 -2 50])
>> grid on

Ejercicio 2:

>> s=sym('s');
>> f1=s;
>> f2=s^2;
>> figure
>> ezplot(f1,[-4 0])
>> hold on
>> grid on
>> ezplot(f2,[0.0001 4])
>> title('FUNCIN COMPUESTA')
>> axis([-5 5 -5 5])

Ejercicio 3:
>> syms x y
>> y=sqrt(x^2-9);
>> hold on
>> ezplot(y,[-8 8])
>> xlabel('x(variable independiente)')
>> ylabel('y=f(x)(variable dependiente)')
>> grid

Ejercicio 4:
>> syms x
>> y=x^2;
>> ezplot(y)
>> title('f(x)=x^2')
>> xlabel('x(variable independiente)')
>> ylabel('y(variable dependiente)')
>> axis([-8 8 -2 50])
>> grid on
>> y1=sqrt(x^2-9);
>> hold on

>> ezplot(y1,[-8 8])


>> figure
>> ezplot(y1,[-8 8])
>> grid

Ejercicio 5:
>> syms x
>> q=x^4+x^3+2*x-4;
>> p=factor(q);
>> hold on
>> grid on
>> f=(10*x+5)/q;
>> ezplot(f,[-5 5])
>> hold of

Ejercicio 6:
>>syms x;hold on;
>> subplot(2,2,1)
>> ezplot(abs(x),[-3 3])
>> subplot(2,2,2)
>> ezplot(x^2,[-3 3])
>> subplot(2,2,3)
>> ezplot(cos(x))
>> subplot(2,2,4)
>> ezplot(x^3)

También podría gustarte