q^n
说,我想要一个包含一些元素的有限域prime q
和positive n
。如何得到它的原始元素?
问问题
782 次
1 回答
3
您可以使用以下代码获取一些原始元素:
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
> 1。否则,函数会minpoly
崩溃(使用 PARI/GP 2.7.2 32 位测试)。
于 2016-02-01T22:05:52.577 回答