| 1 | initial version |
OK, after more googling I found a link to manipulating symbolic expressions which seems to cover what I want. Here'tis for any others that may be interested. <url>http://www.sagemath.org/doc/reference/sage/symbolic/relation.html</url>
| 2 | No.2 Revision |
OK, after more googling I found a link to manipulating symbolic expressions which seems to cover what I want. Here'tis for any others that may be interested.
<url>http://www.sagemath.org/doc/reference/sage/symbolic/relation.html</url>interested.
http://www.sagemath.org/doc/reference/sage/symbolic/relation.html
| 3 | No.3 Revision |
OK, after more googling I found a link to manipulating symbolic expressions which seems to cover what I want. Here'tis for any others that may be interested.
http://www.sagemath.org/doc/reference/sage/symbolic/relation.html
Good point Evgeny! So here's a simple example
var('x,y,z') assume(z, 'integer') eqn = x == y**z solve(eqn, y)
Note: this will fail without the assume statement (see this response from kcrisman http://ask.sagemath.org/question/318/failure-on-symbolic-solve ).
| 4 | No.4 Revision |
OK, after more googling I found a link to manipulating symbolic expressions which seems to cover what I want. Here'tis for any others that may be interested.
http://www.sagemath.org/doc/reference/sage/symbolic/relation.html
Good point Evgeny! So here's a simple example
var('x,y,z')
var('x,y,z')
assume(z, 'integer')
'integer')
eqn = x == y**z
y**z
solve(eqn, y)
Note: this will fail without the assume statement (see this response from kcrisman http://ask.sagemath.org/question/318/failure-on-symbolic-solve ).
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.