You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#16203 deals with conversion from Expression.series to PowerSeries but this should work too:
sage: R.<x> = LaurentSeriesRing(QQ)
sage: (1/(1-y)).series(y,5)
1 + 1*y + 1*y^2 + 1*y^3 + 1*y^4 + Order(y^5)
sage: _.subs(y=x)
TypeError: no canonical coercion from Laurent Series Ring in x over Rational Field to Symbolic Ring
or:
sage: (1/(1-y)).series(x,5)
(same error)
#16203 deals with conversion from
Expression.series
toPowerSeries
but this should work too:Component: symbolics
Issue created by migration from https://trac.sagemath.org/ticket/18500
The text was updated successfully, but these errors were encountered: