Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
18098: cosmetics; fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rwst committed Apr 2, 2015
1 parent e95e2d5 commit 9dfb869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/en/constructions/calculus.rst
Expand Up @@ -107,7 +107,7 @@ Formal power series expansions of functions can be had with the
sage: (1/(2-cos(x))).series(x,7)
1 + (-1/2)*x^2 + 7/24*x^4 + (-121/720)*x^6 + Order(x^7)

Such series lack the ability to be fully manipulatable at the moment,
Certain manipulations on such series are hard to perform at the moment,
however. There are two alternatives: either use the Maxima subsystem of
Sage for full symbolic functionality::

Expand All @@ -117,7 +117,7 @@ Sage for full symbolic functionality::
sage: maxima(f).powerseries(x,0)._sage_()
sum(2^(2*i4 - 1)*(-1)^i4*x^(2*i4)*bern(2*i4)/(i4*factorial(2*i4)), i4, 1, +Infinity)

Or you can use one the formal power series rings for fast computation.
Or you can use the formal power series rings for fast computation.
These are missing symbolic functions, on the other hand::

sage: R.<w> = QQ[[]]
Expand Down

0 comments on commit 9dfb869

Please sign in to comment.