↧
'," f(i.digits(3)))="" though="" it="" kind="" pointless="" to="" print="" gigantic="" list="" when="" you="" already="" understand="" mapping.also,="" suppose="" a="" fetch_int="" method="" could="" be="" added="" pari="" implementation="" convenience."="">Comment by BSFU for See the documentation of GF; the different...
@rburing tank you very much for your solution.
View Article"," produces:="" 0=">" 1=">" 2=">" 3=">" x="" 4=">" +="" 5=">" 6=">" 2*x="" 7=">" 8=">" 2.="" where="" is="" problem?"="">Answer 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 Article"," produces:="" 0=">" 1=">" 2=">" 3=">" x="" 4=">" +="" 5=">" 6=">" 2*x="" 7=">" 8=">" 2.="" where="" is="" problem?"="">Comment 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