can sage stop ordering terms?
Noob question incoming...
sage: var('A B C x y')
(A, B, C, x, y)
sage: y == (C - Ax) / B
y == -(Ax - C)/B
What I would like/expect to get here is y == (C - Ax)/B
. Is there a way to tell Sage to stop ordering terms?
Rationale - the expression ultimately goes to latex()
and I'd like to be able to control how the result looks like.