Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
Ask Your Question
0

2i map of an the elliptic curve over F2p defined by y2=x3+x

asked 0 years ago

I am trying to compute the endomorphism [2i] of the elliptic curve map of The elliptic curve over F2p defined by y2=x3+x such that [2i] o [2i] = [-4]

but I do not know how. the result should be an isogeny

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 0 years ago

yx7 gravatar image
sage: F = GF(127^2)
sage: E = EllipticCurve(F, [1,0])
sage: i = E.automorphisms()[-1]
sage: assert i^2 == -1
sage: endo = 2 * i
sage: assert endo in End(E)
sage: assert endo^2 == -4
sage: endo
Composite morphism of degree 4 = 1*4:
  From: Elliptic Curve defined by y^2 = x^3 + x over Finite Field in z2 of size 127^2
  To:   Elliptic Curve defined by y^2 = x^3 + x over Finite Field in z2 of size 127^2
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 0 years ago

Seen: 188 times

Last updated: Jul 16 '24