> In the mean time, you can accomplish your computations without using SR:
> sage: R.<x>=QQ[[]]
> sage: (1 - x - sqrt(1 - 6*x + x^2))/(2*x)
> 1 + 2*x + 6*x^2 + 22*x^3 + 90*x^4 + 394*x^5 + ...

Does this only work in interactive mode? As soon as I try to
capture it in a function it doesn't work anymore.

    def SERIES(s):
        R.<x> = QQ[[]]
        return s

    SERIES(LargeSchroeder)
    -1/2*(x + sqrt(x^2 - 6*x + 1) - 1)/x

How do I have to write such a wrapper? Using QQ[[]] is OK for 
me, no generality intended.

> which is probably why the state of "series" is so abysmal: 
> people don't use it.

What people use depends on their background: I guess that someone
who comes from Maple or Mathematica almost automatically writes
'series' and thinks in terms of SR.


-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to