restart;read("Jets.s");Di\357\254\203etiescoordinates([t,x], [u], 6);equation(u_t = u_xxx + 6*u*u_x);u_t;u_tx;u_tt;u_xxx;equation();u_t;What can be on the left-hand side?Every equation must be resolved with respect to a leading derivative q_X. This means that neither q_X nor either of its derivatives q_XY occurs on the right-hand side:equation('u_x' = (u_t - u_xxx)/6*u); # forbidden!u_xx;equation(); Equations dependent on functions dependence(f(x,u)); equation('u_t' = u_xxx + f*u_x); u_tx;f := x*u;u_tx;eval(u_tx);refresh();u_tx;Multiple equationscoordinates([t,x], [u,v], 6);equation(u_t = F, v_x=G);u_t, v_x;u_tx, v_tx;