I'm (very) new to Sage, but am confused about why I can't get it to solve a simple system like this:
var('x, y, z') eqns = [ x^2 + y^2 == z, x == y]
but solve(eqns, z) gives an empty list back instead of my desired z = 2y^2
| 1 | initial version |
I'm (very) new to Sage, but am confused about why I can't get it to solve a simple system like this:
var('x, y, z') eqns = [ x^2 + y^2 == z, x == y]
but solve(eqns, z) gives an empty list back instead of my desired z = 2y^2
| 2 | No.2 Revision |
I'm (very) new to Sage, but am confused about why I can't get it to solve a simple system like this:
var('x, y, z')
eqns = [ x^2 + y^2 == z, x == but solve(eqns, z) gives an empty list back instead of my desired z = 2y^2
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.