$EllipticCurve:y^2=x^3+x+300 \pmod{8111} $ has order $8269$
This curve on $\mathbb{F}_{8111}$
If expand this equation to $\mathbb{F}_{8111^3}$
The elliptic curve is defined as : $y^2=x^3+x+300 \pmod{8111^3} $ and Polynomial : $x^3+4x-11$
On the SAGECODE :
F. = GF(8111)[]
K. = GF(8111^3, name='x', modulus=x^3 + 4*x - 11)
E = EllipticCurve(GF(8111), [1,300])
E_ = EllipticCurve(K, [1,300])
The questions are:
How did you choose $\mathbb{F}_{8111^3}$ Polynomial??
And how do I expand to $\mathbb{F}_{8111^2}$
.
I did not speak English well and I used a translator. I am really sorry if the question was rude.
thanks you for read
Let us do things in sage then.
The elliptic curve is
Note that sage is choosing the same modulus. If we want to specify explicitly the modulus of the field extension $\Bbb F_{p^3}$, $p=8111$, then we can do this as follows:
The curve $E/K$ can be introduced either directly, or after a base extension,
E.base_extend(K),A very good sage support is provided by asksage.