Skip to content

Conversion of power series to symbolic ring #14693

@eviatarbach

Description

@eviatarbach

Converting a power series to the symbolic ring doesn't work as expected:

sage: R.<t> = PowerSeriesRing(QQ)
sage: p = R([1,2,3])
sage: SR(p).variables()
()
sage: diff(SR(p))
0

Perhaps it could be converted to a polynomial first and then converted to the symbolic ring?

sage: SR(p.polynomial()).variables()
(t,)
sage: diff(SR(p.polynomial()))      
6*t + 2

Or maybe just raise an error (as per #13360)?

Component: symbolics

Issue created by migration from https://trac.sagemath.org/ticket/14693

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions