Ask Your Question
0

$2i$ map of an the elliptic curve over $F_p^2$ defined by $y^2=x^3+x$

asked 2024-07-16 10:00:46 +0200

I am trying to compute the endomorphism $[2i]$ of the elliptic curve map of The elliptic curve over $F_p^2$ defined by $y^2=x^3+x$ such that [2i] o [2i] = [-4]

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

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2024-07-16 16:27:34 +0200

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
edit flag offensive delete link more

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: 2024-07-16 09:59:49 +0200

Seen: 122 times

Last updated: Jul 16