Skip to content

Commit 0e54be2

Browse files
committed
Apply suggestions
1 parent a18857c commit 0e54be2

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

src/sage/rings/laurent_series_ring_element.pyx

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
r"""
22
Laurent Series
33
4+
Laurent series in Sage are represented internally as a power of the variable
5+
times the power series part. If a Laurent series `f` is represented as
6+
`f = t^n \cdot u` where `t` is the variable and `u` has nonzero constant term,
7+
`u` can be accessed through :meth:`valuation_zero_part` and `n` can be accessed
8+
through :meth:`valuation`.
9+
410
EXAMPLES::
511
612
sage: R.<t> = LaurentSeriesRing(GF(7), 't'); R
@@ -35,15 +41,6 @@ Saving and loading.
3541
sage: loads(K.dumps()) == K # needs sage.rings.real_mpfr
3642
True
3743
38-
IMPLEMENTATION: Laurent series in Sage are represented internally
39-
as a power of the variable times the unit part (which need not be a
40-
unit - it's a polynomial with nonzero constant term). The zero
41-
Laurent series has unit part 0.
42-
43-
For a Laurent series internally represented as `t^n \cdot f` where
44-
`t` is the variable, `f` can be accessed through :meth:`valuation_zero_part`
45-
and `n` can be accessed through :meth:`valuation`.
46-
4744
AUTHORS:
4845
4946
- William Stein: original version
@@ -93,8 +90,8 @@ cdef class LaurentSeries(AlgebraElement):
9390
r"""
9491
A Laurent Series.
9592
96-
We consider a Laurent series of the form `t^n \cdot f` where `f` is a
97-
power series.
93+
We consider a Laurent series of the form `f = t^n \cdot u` where `u` is a
94+
power series with nonzero constant term.
9895
9996
INPUT:
10097

0 commit comments

Comments
 (0)