Skip to content

Sometimes conversion from Laurent series to rational function field raise error #39712

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

Open
user202729 opened this issue Mar 15, 2025 · 0 comments

Comments

@user202729
Copy link
Contributor

user202729 commented Mar 15, 2025

This is not perfect yet. Ideally it should change_ring the Laurent series to the target field before doing the approximation.

R.<x> = QQ[]
T.<t> = R[[]]
f = 1 + (x + 1)*t + (x^2 + 2*x + 1)*t^2 + (x^3 + 3*x^2 + 3*x + 1)*t^3 + O(t^4)  # belong to R[[t]], not Frac(R)[[t]]
Frac(Frac(R)[t])( f )  # error!
Frac(Frac(R)[t])( Frac(R)[[t]]( f ) )  # work

We want the # error! line to work just like the last line.

Originally posted by @user202729 in #39485 (comment)

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

No branches or pull requests

1 participant