First time here? Check out the FAQ!
answered 2013-07-23 16:39:23 +0100
One way to obtain x + f(x) is as follows:
x + f(x)
sage: import sympy sage: f = sympy.Function('f') sage: g(x) = x sage: f(x) + g(x) x + f(x)
I'm not sure how to mix this with your finite field problem.