Question: how I can dsolve this differential equation

hi...

how I can dsolve this differential equations. parameter p is unkown.

I want to gain w(x) and u(x) and psi(x) and p.

thanks

sade.mw
 

restart; eq1 := (diff(psi(x), x))^2+(diff(u(x), x)+(8*(1/2))*(diff(w(x), x))^2)((diff(psi(x), x))^2)+3*(diff(w(x), x, x))+5*(diff(w(x), x, x))*(diff(psi(x), x))-7*(diff(u(x), x, x, x)+(8*(1/2))*(diff(w(x), x, x))^2+(3/2)*(diff(w(x), x, x, x))*(diff(w(x), x)))+3 = p

(diff(psi(x), x))^2+(diff(u(x), x))((diff(psi(x), x))^2)+4*(diff(w(x), x))((diff(psi(x), x))^2)^2+3*(diff(diff(w(x), x), x))+5*(diff(diff(w(x), x), x))*(diff(psi(x), x))-7*(diff(diff(diff(u(x), x), x), x))-28*(diff(diff(w(x), x), x))^2-(21/2)*(diff(diff(diff(w(x), x), x), x))*(diff(w(x), x))+3 = p

(1)

eq2 := (51-31)(diff(psi(x), x, x))+(52-2)(diff(w(x), x, x, x))+8*(diff(psi(x), x, x, x, x))-7*(diff(w(x), x)-psi(x)) = 0

70+8*(diff(diff(diff(diff(psi(x), x), x), x), x))-7*(diff(w(x), x))+7*psi(x) = 0

(2)

eq3 := 4*(diff(w(x), x, x)-(diff(psi(x), x)))+(23+11)(diff(psi(x), x, x, x))+(14+12)*(diff(w(x), x, x, x, x)) = 0

4*(diff(diff(w(x), x), x))-4*(diff(psi(x), x))+34+26*(diff(diff(diff(diff(w(x), x), x), x), x)) = 0

(3)

dsys3 := {eq1, eq2, eq3, psi(0) = 0, psi(1) = 0, u(0) = 0, u(1) = 0, w(0) = 0, w(1) = 0, ((D@@1)(psi))(0) = 0, ((D@@1)(psi))(1) = 0, ((D@@1)(w))(0) = 0, ((D@@1)(w))(1) = 0}; dsol5 := dsolve(dsys3, 'maxmesh' = 1200, numeric, abserr = .1, output = array([.5]))

Error, (in dsolve/numeric/bvp/convertsys) too few boundary conditions: expected 12, got 10

 

dsolve({eq2, eq3}, {psi(x), w(x)}):

with(PDEtools, casesplit, declare);

[casesplit, declare]

(4)

 


 

Download sade.mw

 

Please Wait...