-
-
Notifications
You must be signed in to change notification settings - Fork 480
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
convenience methods for field embeddings #38487
convenience methods for field embeddings #38487
Conversation
One minor (relevant) error with tests/docs/CI. |
Thanks, should be fixed. |
b3429d2
to
1e82473
Compare
Tiny comment about documentation, otherwise looks good to me. |
Indeed, thanks, done. |
Test fail |
Co-authored-by: Giacomo Pope <[email protected]>
…nical ...hence the output here would be more or less meaningless. We should fail instead, until algebraic closures of non-prime finite fields are supported "properly". (reverts part of 87e912b)
61fe1af
to
a2fdcc9
Compare
Thanks for the review, @S17A05! I think I've addressed all your comments. |
Documentation preview for this PR (built with commit a2fdcc9; changes) is ready! 🎉 |
Thanks for the changes, looks good to me now! (For the record: The timeout in the long [p-z] tests is unrelated) |
Currently, the best(?) way to compute embeddings between fields is somewhat hidden inside the `Hom` object. In this patch we add helper methods to access such embeddings. In addition, we add an `.algebraic_closure()` method to non-prime finite fields. These seem useful. URL: sagemath#38487 Reported by: Lorenz Panny Reviewer(s): Giacomo Pope, Sebastian A. Spindler
Currently, the best(?) way to compute embeddings between fields is somewhat hidden inside the
Hom
object. In this patch we add helper methods to access such embeddings. In addition, we add an.algebraic_closure()
method to non-prime finite fields.These seem useful.