On Friday, March 20, 2015 at 9:32:14 AM UTC-7, Ralf Stephan wrote: > > Hello, > is this a bug? Do power series really count as numeric? >
sage: R.<t> = QQ[[]] sage: A=SR(t^2+O(t^6)) sage: A.operator() sage: A.operands() [] sage: A.pyobject() t^2 + O(t^6) This isn't really a "symbolic power series". It's just a "sage object stuffed into SR". Thus as far as pynac is concerned, it's just an object you can do arithmetic with that is not a symbolic variable. Apparently, that's called a "numeric". -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
