#17674: xgcd is badly named on non PID domains
-----------------------------+----------------------------
   Reporter:  vdelecroix     |            Owner:
       Type:  PLEASE CHANGE  |           Status:  new
   Priority:  major          |        Milestone:  sage-6.5
  Component:  PLEASE CHANGE  |         Keywords:
  Merged in:                 |          Authors:
  Reviewers:                 |  Report Upstream:  N/A
Work issues:                 |           Branch:
     Commit:                 |     Dependencies:
   Stopgaps:                 |
-----------------------------+----------------------------
 Over non PID domains, the method xgcd might not (and can not in general)
 return the gcd as its first argument
 {{{
 sage: x = polygen(ZZ)
 sage: (x+2).gcd(x+4)  # no common factor but...
 1
 sage: (x+2).xgcd(x+4) # ... the ideal (x+2, x+4) is not principal
 (2, -1, 1)
 }}}

 See [https://groups.google.com/forum/#!topic/sage-devel/JV8fCPUqTzo this
 sage-devel thread]  where it was suggested to change the method name to
 `pseudo_xgcd` or `_resultant_xgcd`.

 See also #17671 that fix some compatibility issues for gcd/xgcd over PID.

--
Ticket URL: <http://trac.sagemath.org/ticket/17674>
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