Ejercicios Laboratorio Computacional: Syms X y F (X Y) / (X 2-Y 2)

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Ejercicios Laboratorio Computacional

1)
>> syms x y
>> f=(x*y)/(x^2-y^2)
f = (x*y)/(x^2 - y^2)
>> fy=diff(f,y)
fy = x/(x^2 - y^2) + (2*x*y^2)/(x^2 - y^2)^2
>> fx=diff(f,x)
fx = y/(x^2 - y^2) - (2*x^2*y)/(x^2 - y^2)^2

2)
>> syms x y
>> f=(log(x^y+x^2+2^y))^5
f = log(x^y + x^2 + 2^y)^5
>> fy=diff(f,y)
fy = (5*log(x^y + x^2 + 2^y)^4*(x^y*log(x) + 2^y*log(2)))/(x^y + x^2 + 2^y)
>> fx=diff(f,x)
fx = (5*log(x^y + x^2 + 2^y)^4*(2*x + x^(y - 1)*y))/(x^y + x^2 + 2^y)

3)
>> syms x y
>> f=(x*y+atan(y/x))^0.5
f =(atan(y/x) + x*y)^(1/2)

5)
>> syms x y

>> f=-0.92*x+1.03*y+0.02
f =(103*y)/100 - (23*x)/25 + 1/50
>> dx=diff(f,x)
dx =-23/25
>> dy=diff(f,y)
dy = 103/100

6)
>> syms t h
>> f=0.885*t-22.4*h+1.20*t*h-0.544
f = (177*t)/200 - (112*h)/5 + (6*h*t)/5 - 68/125
>> ft=diff(f,t)
ft = (6*h)/5 + 177/200

You might also like