collecting terms in a Differential Equation in Maple

109 Views Asked by At

Is there anyway to make maple collect terms in a differential equation? say for example $\dot{y}+y=3\dot{y}-7y$ so I get automatically $2\dot{y}-8y=0$

1

There are 1 best solutions below

0
On BEST ANSWER
[> s:=y'(x)+y(x)=3y'(x)-7y(x):
   t:=lhs(s)-rhs(s);


                                -2y'(x)+8y(x)=0