Interpolate polynomial over a finite field
问题 I want to use python interpolate polynomial on points from a finite-field and get a polynomial with coefficients in that field. Currently I'm trying to use SymPy and specifically interpolate (from sympy.polys.polyfuncs ), but I don't know how to force the interpolation to happen in a specific gf. If not, can this be done with another module? Edit: I'm interested in a Python implementation/library. 回答1: SymPy's interpolating_poly does not support polynomials over finite fields. But there are