#20400: Conversion NumberField -> QQbar should always work for rationals
-------------------------------------+------------------------
       Reporter:  vdelecroix         |        Owner:
           Type:  defect             |       Status:  new
       Priority:  major              |    Milestone:  sage-7.2
      Component:  number fields      |   Resolution:
       Keywords:                     |    Merged in:
        Authors:  Vincent Delecroix  |    Reviewers:
Report Upstream:  N/A                |  Work issues:
         Branch:                     |       Commit:
   Dependencies:  #14485             |     Stopgaps:
-------------------------------------+------------------------

Old description:

> After #14485 we have
> {{{
> sage: NF.<alpha> = NumberField(x^5 + 7*x + 3)
> sage: QQbar(alpha**5 + 7*alpha)
> Traceback (most recent call last):
> ...
> ValueError: need a real or complex embedding to convert number field
> element to algebraic number
> }}}
> but rationals are non ambiguous with respect to their embeddings.

New description:

 After #14485 we have
 {{{
 sage: NF.<alpha> = NumberField(x^5 + 7*x + 3)
 sage: QQbar(alpha**5 + 7*alpha)
 Traceback (most recent call last):
 ...
 ValueError: need a real or complex embedding to convert number field
 element to algebraic number
 }}}
 but rationals are non ambiguous with respect to their embeddings.

 See also the related #4621

--

Comment (by vdelecroix):

 I propose
 {{{
 @@ -2373,8 +2374,7 @@ cdef class NumberFieldElement(FieldElement):
          """
          emb = self._parent.coerce_embedding()
          if emb is None:
 -            raise ValueError("need a real or complex embedding to convert
 "
 -                             "number field element to algebraic number")
 +            return parent(self._rational_())
 }}}
 And also to wait for the next beta...

--
Ticket URL: <http://trac.sagemath.org/ticket/20400#comment:1>
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 https://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to