Question: isolate command

Using a command in succession can coax maple into different outputs. 

eq:=(a*x+b)/(c*x+d)=1
                                
Getting rid of the denominator is probably the most deciding factor in how maple displays an output.

isolate(eq,b)
                      

isolate(%,x,1)
                      

Using the isolate command, you couldn't arrive at that output without using it twice. 

Please Wait...