Question: Help solving a system of differential equations

Hi guys, I am trying to solve a system of differential equations, I have done the hand written calculations and I know the answer however I need to put it in a maple code for a generic system which I will work on over time. Here is what I have so far, 

restart;

eqn[1]:=-1/8*D[4](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[2]:=-1/8*D[5](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[3]:=-1/8*D[6](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[4]:=-1/8*D[7](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[5]:=-1/8*D[8](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[6]:=-1/8*D[9](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[7]:=-1/8*D[10](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

eqn[8]:=-1/8*D[11](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))-1/2=0;

eqn[9]:=-1/8*D[12](a)(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t))=0;

dsolve({seq(eqn[i],i=1..9)},a(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(u(x, y, t), x, x), diff(u(x, y, t), y, x), diff(u(x, y, t), x, t), diff(u(x, y, t), y, t), diff(u(x, y, t), t, t)));

Then I get an error return which says:

Error, (in dsolve) too many arguments; some or all of the following are wrong: [{u(x, y, t)}, a(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(diff(u(x, y, t), x), x), diff(diff(u(x, y, t), x), y), diff(diff(u(x, y, t), t), x), diff(diff(u(x, y, t), t), y), diff(diff(u(x, y, t), t), t))].

 

I know that if I replace u(x,y,t) with a dummy variable U, and its derivative with Ux,Uy,... and so on then it will work, but I need the function u(x,y,t) to be part of the solution.

I know the solution should give me:

a(x, y, t, u(x, y, t), diff(u(x, y, t), x), diff(u(x, y, t), y), diff(u(x, y, t), t), diff(diff(u(x, y, t), x), x), diff(diff(u(x, y, t), x), y), diff(diff(u(x, y, t), t), x), diff(diff(u(x, y, t), t), y), diff(diff(u(x, y, t), t), t)) = -4*diff(u(x,y,t),x,x) + F(x,y,t),

where F(x,y,t) is the constant function.

Please any help would be great!!
 

Please Wait...