We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sage: A.<n> = AsymptoticRing('n^ZZ', QQ, default_prec=3) sage: n n sage: _.subs(n=1/(2-1/n)) 1/2 + 1/4*n^(-1) + 1/8*n^(-2) + O(n^(-3)) sage: _.subs(n=1/(2-1/n)) O(1)
is wrong (the two substitutions are equal to the identity).
Similarly,
sage: n.subs(n=1/(2-1/n)) 1/2 + 1/4*n^(-1) + 1/8*n^(-2) + O(n^(-3)) sage: _.subs(n=A(1/2)) O(1)
Aim: add a check 1/f is o(1) to .subs(n=f).
1/f
o(1)
.subs(n=f)
CC: @cheuberg @behackl
Component: asymptotic expansions
Issue created by migration from https://trac.sagemath.org/ticket/22414
The text was updated successfully, but these errors were encountered:
No branches or pull requests
is wrong (the two substitutions are equal to the identity).
Similarly,
Aim: add a check
1/f
iso(1)
to.subs(n=f)
.CC: @cheuberg @behackl
Component: asymptotic expansions
Issue created by migration from https://trac.sagemath.org/ticket/22414
The text was updated successfully, but these errors were encountered: