File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change 11r """
22Laurent 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 \c dot 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+
410EXAMPLES::
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 \c dot 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-
4744AUTHORS:
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 \c dot f ` where `f ` is a
97- power series.
93+ We consider a Laurent series of the form `f = t^ n \c dot u ` where `u ` is a
94+ power series with nonzero constant term .
9895
9996 INPUT:
10097
You can’t perform that action at this time.
0 commit comments