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

Mumford coordinates are not always reduced for even degree model #37093

Closed
2 tasks done
GiacomoPope opened this issue Jan 18, 2024 · 1 comment
Closed
2 tasks done

Mumford coordinates are not always reduced for even degree model #37093

GiacomoPope opened this issue Jan 18, 2024 · 1 comment
Labels

Comments

@GiacomoPope
Copy link
Contributor

Steps To Reproduce

When summing divisors for even degree models, the cantor reduction sometimes does not finish the reduction process. This seems to be due to a TODO left in the code.

sage: F = GF(163)
sage: R.<x> = PolynomialRing(F)
sage: f = x^6 + x^2 + 1
sage: H = HyperellipticCurve(f)
sage: J = H.jacobian()
sage: Ps = H.points()
sage: Ds = [J(P) for P in Ps]
sage: sum(choice(Ds) for _ in range(7))
Returning ambiguous form of degree genus+1.
Returning ambiguous form of degree genus+1.
Returning ambiguous form of degree genus+1.
(x^3 + 11*x^2 + 104*x + 136, y + 95*x^2 + 144*x + 156)

Expected Behavior

The mumford polynomials are reduced.

Actual Behavior

The mumford polynomials are not reduced

Additional Information

No response

Environment

- **OS**: MacOS
- **Sage Version**: SageMath 10.2

Checklist

  • I have searched the existing issues for a bug report that matches the one I want to file, without success.
  • I have read the documentation and troubleshoot guide
@GiacomoPope
Copy link
Contributor Author

Combined into the issue #37109 as the fix is identical.

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

Successfully merging a pull request may close this issue.

1 participant