↧
Comment by BSFU for See the documentation of GF; the different...
@rburing tank you very much for your solution.
View ArticleAnswer by rburing for I would like to generate elements of finite filed...
See the [documentation of GF](http://doc.sagemath.org/html/en/reference/finite_rings/sage/rings/finite_rings/finite_field_constructor.html); the different implementations depending on the size are the...
View ArticleComment by Sébastien for I would like to generate elements of finite filed...
You may just iterate on F directly: sage: F. = GF(3^15) sage: for a in F: ....: print(a) ....: [...]
View ArticleWhy is SageMath fail to generate elements in finite field $GF(3^{15})$
I would like to generate elements of finite filed $GF(3^{15})$. To do so I have used the following code : F. = GF(3^15) for i in range(3^15): print i,"=>", F.fetch_int(i) But this code failed to...
View Article
More Pages to Explore .....