Sei sulla pagina 1di 3

Laboratorio de Ecuaciones Diferenciales #01 21/08/2012

Santiago Herrera Palacio


20101231027
Grupo: #01

dy
1). ( 1+ x ) =y
dx

syms x y
dsolve('Dy=(y)/(1+x)','x')
ezplot(y,[-1 2])

dy
2). =e 3 x+2 y
dx
syms x y
dsolve('Dy=exp(3*x+2*y)','x')
ezplot(log(1/(26 - 2*exp(3*x)))/2 + log(3)/2,[-10 0])
dN
3). + N=Nt e t +2
dt
syms N t
dsolve('DN=N*t*exp(t+2)-N','t')
ezplot(32*exp(t*exp(t + 2) - exp(t + 2) - t),[-10 0])

dy
4). dx −3 y=6

syms x y
dsolve('Dy=6+3*y','x')
ezplot(18*exp(3*x) - 2,[-10 0])
2 dy
5). ( x −9 ) dx + xy=0

syms x y
dsolve('Dy=(-x*y)/(x^2-9)','x')
ezplot(24/(x^2 - 9)^(1/2),[-10 0])

Potrebbero piacerti anche