Quantcast
Channel: ASKSAGE: Sage Q&A Forum - RSS feed
Browsing all 4 articles
Browse latest View live

Comment by BSFU for See the documentation of GF; the different...

@rburing tank you very much for your solution.

View Article


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

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 Article

Why 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
Browsing all 4 articles
Browse latest View live