1 | initial version |
Your answer is just one of the ones for this.
sage: r1=-62/3675
sage: -10*r1-1/25
473/3675
sage: 25*r1+2/5
-16/735
Maxima returns a solve like this when there is a parameter. In this case, one parameter, r1
, which can be any real number. Are you sure your matrix has non-zero determinant?
Or did you intend
sage: solve([g1,g2,g3,g4],[a,b,c,d])
instead of
sage: solve([g1,g2,g3,g3],[a,b,c,d])
Actually, I think this is the real issue - typos trip us all up :(