On Mon, Sep 3, 2012 at 9:50 AM, Aaron Meurer <[email protected]> wrote: > I don't think it's possible to isolate P in this case (unless you > don't mind having P**-1 in the result, but SymPy doesn't consider that > to be isolated). > > By the way, is solve() even non-commutative aware?
Inasmuch as it didn't return a solution for this, yes. But it looks like it doesn't like to solve for them: >>> solve(A*x + B, A) [] >>> solve(A*x + B, x) [-B*A**(-1)] -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
