Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_repr_ description of sum morphisms #37704

Open
grhkm21 opened this issue Mar 31, 2024 · 3 comments
Open

_repr_ description of sum morphisms #37704

grhkm21 opened this issue Mar 31, 2024 · 3 comments

Comments

@grhkm21
Copy link
Contributor

grhkm21 commented Mar 31, 2024

It seems that the repr of sum and composite morphisms are different. Is that intentional?

sage: set_random_seed(13337)
....: E = EllipticCurve(GF(103), [31, 84])
....: assert E.order() % 7 == 0
....: P = E.random_point() * (E.order() // 7)
....: assert P.order() == 7
....: phi = E.isogeny(P)
sage: phi
Isogeny of degree 7 from Elliptic Curve defined by y^2 = x^3 + 31*x + 84 over Finite Field of size 103 to Elliptic Curve defined by y^2 = x^3 + 42*x + 35 over Finite Field of size 103

sage: phi + phi
Sum morphism:
  From: Elliptic Curve defined by y^2 = x^3 + 31*x + 84 over Finite Field of size 103
  To:   Elliptic Curve defined by y^2 = x^3 + 42*x + 35 over Finite Field of size 103
  Via:  (Isogeny of degree 7 from Elliptic Curve defined by y^2 = x^3 + 31*x + 84 over Finite Field of size 103 to Elliptic Curve defined by y^2 = x^3 + 42*x + 35 over Finite Field of size 103, Isogeny of degree 7 from Elliptic Curve defined by y^2 = x^3 + 31*x + 84 over Finite Field of size 103 to Elliptic Curve defined by y^2 = x^3 + 42*x + 35 over Finite Field of size 103)

sage: E1 = phi.codomain()
....: psi = E1.isogeny(E1.random_point())
....: psi * phi
Composite morphism of degree 49 = 7^2:
  From: Elliptic Curve defined by y^2 = x^3 + 31*x + 84 over Finite Field of size 103
  To:   Elliptic Curve defined by y^2 = x^3 + 11*x + 52 over Finite Field of size 103

I think the "Via: " part should be hidden away. What do you think @yyyyx4

@yyyyx4
Copy link
Member

yyyyx4 commented Mar 31, 2024

Indeed, unifying and streamlining the repr() and str() of various types of elliptic-curve morphisms (i.e., EllipticCurveHom children) has been an item on my list for a long time. Feel free to take care of it if you like.

@grhkm21
Copy link
Contributor Author

grhkm21 commented Apr 1, 2024

I'll remove the via part & move all str/repr methods to SchemeMorphism (or higher) in #37705 then.

@grhkm21
Copy link
Contributor Author

grhkm21 commented Apr 2, 2024

Nevermind, as described in the PR, EllipticCurveHom cannot be merged with SchemeMorphism right now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants