| 1 | initial version |
The following should do the job:
X -= X.constant_coefficient() # remove current free term
X += X.subs( {x:t, y:t^2} ) # adding the required free term
| 2 | No.2 Revision |
The following should do the job:
X -= X.constant_coefficient() # remove current free term
X += X.subs( {x:t, y:t^2} ) # adding the required free term
| 3 | No.3 Revision |
The following should do the job:
X -= X.constant_coefficient() # remove current free term
X += X.subs( {x:t, y:t^2} ) # adding the required free term
| 4 | No.4 Revision |
The following should do the job:
X -= X.constant_coefficient() # remove removing the current free term
X += X.subs( {x:t, y:t^2} ) # adding the required free term
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.