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