#16360: Conversion of function field elements to pari
-------------------------------------------------+-------------------------
       Reporter:  saraedum                       |        Owner:
           Type:  defect                         |       Status:
       Priority:  major                          |  needs_review
      Component:  commutative algebra            |    Milestone:  sage-6.3
       Keywords:  pari, resultant, function      |   Resolution:
  field                                          |    Merged in:
        Authors:  Julian Rueth                   |    Reviewers:
Report Upstream:  N/A                            |  Work issues:
         Branch:  u/saraedum/ticket/16360        |       Commit:
   Dependencies:                                 |     Stopgaps:
-------------------------------------------------+-------------------------
Changes (by {'newvalue': u'Julian Rueth', 'oldvalue': ''}):

 * status:  new => needs_review
 * author:   => Julian Rueth


Old description:

> The resultant does not work for function fields if the variable names are
> not chosen wisely:
> {{{
> sage: K.<x> = FunctionField(QQ)
> sage: R.<y> = K[]
> sage: y.resultant(y+x)
> PariError: variable must have higher priority in gtopoly
> }}}
>
> The resultant is wrong over extensions of function fields:
> {{{
> sage: K.<a> = FunctionField(QQ)
> sage: R.<b> = K[]
> sage: L.<b> = K.extension(b^2-a)
> sage: R.<x> = L[]
> sage: f=x^2-a
> sage: g=x-b
> sage: f.resultant(g)
> -b + a^2 # should be 0 since f and g have the common root b
> }}}

New description:

 The resultant does not work for function fields if the variable names are
 not chosen wisely
 {{{
 sage: K.<x> = FunctionField(QQ)
 sage: R.<y> = K[]
 sage: y.resultant(y+x)
 PariError: variable must have higher priority in gtopoly
 }}}

 The resultant is wrong over extensions of function fields
 {{{
 sage: K.<a> = FunctionField(QQ)
 sage: R.<b> = K[]
 sage: L.<b> = K.extension(b^2-a)
 sage: R.<x> = L[]
 sage: f=x^2-a
 sage: g=x-b
 sage: f.resultant(g)
 -b + a^2 # should be 0 since f and g have the common root b
 }}}

--

--
Ticket URL: <http://trac.sagemath.org/ticket/16360#comment:2>
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 unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to