Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
12 views

X 2 + 7 X + 5 FT 49 2) : 1) Hallamos El Limtite Syms F X 2+7 x+5 FT Limit (F, x,4)

The document contains 10 math problems involving limits, derivatives, and partial derivatives using symbolic math in MATLAB. For each problem, the function is defined, then differentiated with respect to one or more variables. The solutions show the steps to find the derivatives of various functions with respect to x, y, and other variables.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

X 2 + 7 X + 5 FT 49 2) : 1) Hallamos El Limtite Syms F X 2+7 x+5 FT Limit (F, x,4)

The document contains 10 math problems involving limits, derivatives, and partial derivatives using symbolic math in MATLAB. For each problem, the function is defined, then differentiated with respect to one or more variables. The solutions show the steps to find the derivatives of various functions with respect to x, y, and other variables.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

ALAIN VILLAVICENCIO BAUTISTA

CODIGO:1310469

1) Hallamos el limtite
syms x
f= x^2+7*x+5
ft=limit(f,x,4)
x^2 + 7*x + 5
ft = 49

2)
syms x a
n=x
d=(a^2+x^2)^1/2
D=n/d
ft=diff(D)

ft = 1/(a^2/2 + x^2/2) - x^2/(a^2/2 + x^2/2)^2

3)
syms x
n=4*x+6
d=(x^2+3*x+4)^1/2
D=n/d
ft=diff(D)
ft = 4/(x^2/2 + (3*x)/2 + 2) - ((4*x + 6)*(x + 3/2))/(x^2/2 + (3*x)/2 + 2)^2

DERIVADAS PARCIALES

4)

syms x y
d=(x^2)*y+(y^1/2)*x
diff(d,x)
diff(d,y)
ans = y/2 + 2*x*y
ans = x^2 + x/2

5)

syms xy
d=sin(x)*cos(y)
a=diff(d,x)
b=diff(d,y)

a = cos(x)*cos(y)

b = -sin(x)*sin(y)
6) NUMEROS COMPLEJOS

syms x y
n= x^2+j*(y^2)
h=diff(n,y)

h = y*2*sqrt(-1) // sqrt(-1)=i

7)
syms x y z
d=x^3*z + j*y^2 + - xy
t=diff(d,x)
t1=diff(d,y)
t2=diff(d,z)

t = 3*x^2*z

t1 = y*2*sqrt(-1)

t2 =x^3

8)
syms x y
d=3*x^2*y +8*x*y
t=diff(d,x)
t1=diff(d,y)

t = 8*y + 6*x*y
t1 = 3*x^2 + 8*x

9)
syms x y
d=cos(x)^5 +j*tan(x*y)
t=diff(d,x)

t = y*(tan(x*y)^2 + 1)*sqrt(-1) - 5*cos(x)^4*sin(x)

10) syms x y
d=exp(x*y)+j*cos(x)
u=diff(d,x)

u =y*exp(x*y) - sin(x)*sqrt(-1)

You might also like