↧
Answer by rburing for For each integer $i$ there is an polynomial...
The alternative solution from an answer to [a previous question](https://ask.sagemath.org/question/46076/how-to-access-serial-number-corresponding-to-each-element-in-gf23/) applies: sage: F. = GF(3^15)...
View ArticleWhat is the way of integer representation of an element in $GF(3^{15})$
For each integer $i$ there is an polynomial representation in $GF(3^{15})$ by for i in srange(F.cardinality()): print(i, '=>', F(i.digits(3))) As for example $4 \implies x + 1$. What is the reverses...
View Article