Hello,
when defining a ring over a finite field, e.g.
Code:
ring rng = (49,a),x,dp;
basering;
// # ground field : 49
// primitive element : a
// minpoly : 1*a^3+6*a^2+4*a^0
// number of vars : 1
// block 1 : ordering dp
// : names x
// block 2 : ordering C
howto
- check, that the coefficient ring is a (finite) field
- get a generator of the finite coefficient field
- get the cardinality of the finite coefficient field
(without parsing the string output above)
?