0

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 Answers1

2
[> s:=y'(x)+y(x)=3y'(x)-7y(x):
   t:=lhs(s)-rhs(s);


                                -2y'(x)+8y(x)=0
Mikasa
  • 67,374