Question: Isolating variable quotient

Hi, is it possible for maple to isolate a variable quotient (with one command)?

i.e. for the expression

eq:= 0 = g-b*v_t/m

-> b/m = g/v_t

I tried this:

isolate(eq, b/m);
 

and got

"Error, (in isolate) 0 = g-b*vt/m does not contain b/m"

if however I isolate for b and then divide by m i get whats required:

isolate(0 = g-b*v_t/m, b)/m;
b/m = g/v_t

is there a more direct way?

 

Please Wait...