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

Extending non-standard valuations on function fields to finite extension not implemented #53

Open
swewers opened this issue May 29, 2018 · 0 comments
Assignees
Labels

Comments

@swewers
Copy link
Contributor

swewers commented May 29, 2018

The following code raises a NotimplementedError:

sage: R.<x> = QQ[]
sage: v0 = GaussValuation(R, QQ.valuation(2)).augmentation(x,1)
sage: F.<x> = FunctionField(QQ)
sage: v1 = F.valuation(v0)
sage: v = F.valuation((v1, F.hom([~x]), F.hom([~x])))
sage: S.<y> = F[]
sage: F1.<y> = F.extension(y^2-x^3-1)
sage: v.extension(F1)

The workaround in mclf is to use v.mac_lane_approximants(y^2-x^3-1), which is what an internal implementation would do anyway. So this is not an urgent matter.

@saraedum saraedum self-assigned this May 29, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants