Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Replacing an expression by another in the ring of polynomials

asked 0 years ago

hamouda gravatar image

updated 0 years ago

Let f=xy2+x+y+zZ[x,y,z] I want to replace xy2 by z. Is there a single command to do this with using the ring Z[x,y,z] to get x+y+2z. (Without using symbolic variables, I need to use this ring in my situation) ???

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
3

answered 0 years ago

Max Alekseyev gravatar image

f % (x*y^2 - z) will do the job:

K.<x,y,z> = ZZ[]
f = x*y^2 + x + y + z
print( f % (x*y^2 - z) )
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

2 followers

Stats

Asked: 0 years ago

Seen: 183 times

Last updated: Jun 28 '24