First time here? Check out the FAQ!
answered 11 years ago
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.