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
For example in src/sage/rings/number_field/number_field.py
src/sage/rings/number_field/number_field.py
sage: K.<a> = NumberField(x^2 - 2)
This leads to numerous errors when sage.symbolic is not available (#32601).
sage.symbolic
CC: @tscrim @orlitzky
Component: refactoring
Issue created by migration from https://trac.sagemath.org/ticket/32721
The text was updated successfully, but these errors were encountered:
Many NumberField and FiniteField definitions use a polynomial in x.
NumberField
FiniteField
x
The corresponding documentation examples would be improved by first defining x as:
sage: x = polygen(ZZ)
Sorry, something went wrong.
Many calculus and plotting examples use a symbolic variable x.
sage: x = SR.var('x')
Perhaps, but that's not in the scope of this ticket.
Some of these fixes are done in #32609.
Successfully merging a pull request may close this issue.
For example in
src/sage/rings/number_field/number_field.py
This leads to numerous errors when
sage.symbolic
is not available (#32601).CC: @tscrim @orlitzky
Component: refactoring
Issue created by migration from https://trac.sagemath.org/ticket/32721
The text was updated successfully, but these errors were encountered: