说,我想要一个包含q^n
和prime q
positive n
元素的有限字段。如何获取其原始元素?
答案 0 :(得分:2)
您可以使用以下代码获取一些原始元素:
var = 'x; \\ sets a variable in the polynomial representation of finite field
f = ffgen(ffinit(q, n)); \\ GF(q^n) ~ GF(q)[x]/<f(x)>. Note `f` is just an irreducible
a = ffprimroot(f); \\ gets a root `a` of `f`
poly = minpoly(a, var); \\ finds a minimal polynomial for `a`
primitive_elt = ffgen(poly, var); \\ finds a root of the minimal polynomial
\\ assertion: check the order
fforder(primitive_elt) == q^n-1
注意,有限域可以具有某些原始元素。上面的代码随机找到任何。请注意,上面的代码假定为n
&gt; 1.否则,函数minpoly
崩溃(使用PARI / GP 2.7.2 32位测试)。