#13645: PolynomialRing variables are not generic symbolic variables
-------------------------+--------------------------------------------------
Reporter: llpamies | Owner: burcin
Type: defect | Status: new
Priority: major | Milestone: sage-5.4
Component: symbolics | Keywords:
Work issues: | Report Upstream: N/A
Reviewers: | Authors:
Merged in: | Dependencies:
Stopgaps: |
-------------------------+--------------------------------------------------
Consider the following Sage code:
{{{
sage: a,b=var('a,b')
sage: solve([a+b+a*b == 1], a)
[a == -(b - 1)/(b + 1)]
}}}
If I want to do something similar with elements of a PolynomialRing the
code crashes:
{{{
sage: poly.<a,b> = PolynomialRing(RR)
sage: solve([a+b+a*b == 1], a)
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13645>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.