I am new to SAGE. While attempting to substitute finite field element into polynomial over finite field instead of variable i get positive characteristic not allowed in symbolic computations
error. How am i supposed to substitute in this case? Sage notebook 8.5. Not working code:
x,y=var('x'),var('y')
fx=PolynomialRing(GF(32),x)(x^2+x)
fx.substitute(x==1)
Thanks in advanse fot answer.