Ask Your Question
1

Working with formal power series

asked 2013-09-20 10:17:18 +0200

This is a simplified version of my previous question.

1) Is it possible to define a formal power series in sage by giving an expression for the n-th coefficient, e.g. as the expression "n" defines the power series 0 + 1 x + 2 x^2 + 3 x^3 + ... n x^n + ... ?

2) Does sage know how to multiply such objects by convolving the terms? Can it anti-differentiate them symbolically?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-09-20 12:31:58 +0200

Luca gravatar image

Your example is an easy one for maxima:

sage: var('x,i')
(x, i)
sage: S = sum(i*x^i, i, 0, infinity)
sage: S
x/(x^2 - 2*x + 1)
sage: S.integral()
-1/(x - 1) + log(x - 1)
sage: (S^2).integral()
-1/3*(3*x^2 - 3*x + 1)/(x^3 - 3*x^2 + 3*x - 1)

But I don't think there is a way to ask for a closed form expression for the coefficients of S, or S^2. Even S.power_series() isn't very useful, as it refuses to work with anything else than polynomials.

If your expression is seriously more complicated than $\sum_i ix^i$, then I don't think Sage can give any useful answer.

edit flag offensive delete link more

Comments

Thank you for the prompt response!

anilbv gravatar imageanilbv ( 2013-09-20 12:58:16 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2013-09-20 10:17:18 +0200

Seen: 709 times

Last updated: Sep 20 '13