#17399: fix coefficients for symbolic series
-----------------------------+------------------------
       Reporter:  rws        |        Owner:
           Type:  defect     |       Status:  new
       Priority:  major      |    Milestone:  sage-6.5
      Component:  symbolics  |   Resolution:
       Keywords:             |    Merged in:
        Authors:             |    Reviewers:
Report Upstream:  N/A        |  Work issues:
         Branch:             |       Commit:
   Dependencies:             |     Stopgaps:
-----------------------------+------------------------
Description changed by rws:

Old description:

> There is no SR.function that gets the coefficients of SR.series; rather,
> `coeffs()` etc give confusing results; `truncate()` must be prepended
> manually.
> {{{
> sage: x=var('x')
> sage: s=(1/(1-x)).series(x,6)
> sage: s.coeffs()
> [[x^5 + x^4 + x^3 + x^2 + x + Order(x^6) + 1, 0]]
> sage: s.coefficient(4)
> 0
> }}}
> Working around with `s.truncate()` is only a fig leaf.

New description:

 There is no SR.function that gets the coefficients of SR.series; rather,
 `coeffs()` etc give confusing results; `truncate()` must be prepended
 manually.
 {{{
 sage: x=var('x')
 sage: s=(1/(1-x)).series(x,6)
 sage: s.coeffs()
 [[x^5 + x^4 + x^3 + x^2 + x + Order(x^6) + 1, 0]]
 sage: s.coefficient(4)
 0
 }}}
 Working around with `s.truncate()` is only a fig leaf.

 Extracted from http://ask.sagemath.org/question/24968/coefficients-in-
 polynomial-ring-over-symbolic-ring/

--

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

Reply via email to