You can also use the symbolic ring: sage: var('x,y,z,A,B,k,i,j,m') (x, y, z, A, B, k, i, j, m) sage: solve([x == A*i + B*j, y == A*k + B*m, z == B*(j-m) + A*(i-k)], [z,i,m]) [[z == x - y, i == -(B*j - x)/A, m == -(A*k - y)/B]]
-- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org