Streams#

This module provides lazy implementations of basic operators on streams. The classes implemented in this module can be used to build up more complex streams for different kinds of series (Laurent, Dirichlet, etc.).

EXAMPLES:

Streams can be used as data structure for lazy Laurent series:

sage: L.<z> = LazyLaurentSeriesRing(ZZ)
sage: f = L(lambda n: n, valuation=0)
sage: f
z + 2*z^2 + 3*z^3 + 4*z^4 + 5*z^5 + 6*z^6 + O(z^7)
sage: type(f._coeff_stream)
<class 'sage.data_structures.stream.Stream_function'>

There are basic unary and binary operators available for streams. For example, we can add two streams:

sage: from sage.data_structures.stream import *
sage: f = Stream_function(lambda n: n, True, 0)
sage: [f[i] for i in range(10)]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
sage: g = Stream_function(lambda n: 1, True, 0)
sage: [g[i] for i in range(10)]
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
sage: h = Stream_add(f, g)
sage: [h[i] for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

We can subtract one stream from another:

sage: h = Stream_sub(f, g)
sage: [h[i] for i in range(10)]
[-1, 0, 1, 2, 3, 4, 5, 6, 7, 8]

There is a Cauchy product on streams:

sage: h = Stream_cauchy_mul(f, g)
sage: [h[i] for i in range(10)]
[0, 1, 3, 6, 10, 15, 21, 28, 36, 45]

We can compute the inverse corresponding to the Cauchy product:

sage: ginv = Stream_cauchy_invert(g)
sage: h = Stream_cauchy_mul(f, ginv)
sage: [h[i] for i in range(10)]
[0, 1, 1, 1, 1, 1, 1, 1, 1, 1]

Two streams can be composed:

sage: g = Stream_function(lambda n: n, True, 1)
sage: h = Stream_cauchy_compose(f, g)
sage: [h[i] for i in range(10)]
[0, 1, 4, 14, 46, 145, 444, 1331, 3926, 11434]

There is a unary negation operator:

sage: h = Stream_neg(f)
sage: [h[i] for i in range(10)]
[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]

More generally, we can multiply by a scalar:

sage: h = Stream_lmul(f, 2)
sage: [h[i] for i in range(10)]
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]

Finally, we can apply an arbitrary functions to the elements of a stream:

sage: h = Stream_map_coefficients(f, lambda n: n^2)
sage: [h[i] for i in range(10)]
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

AUTHORS:

  • Kwankyu Lee (2019-02-24): initial version

  • Tejasvi Chebrolu, Martin Rubey, Travis Scrimshaw (2021-08): refactored and expanded functionality

class sage.data_structures.stream.Stream(sparse, true_order)#

Bases: object

Abstract base class for all streams.

INPUT:

  • sparse – boolean; whether the implementation of the stream is sparse

  • true_order – boolean; if the approximate order is the actual order

Note

An implementation of a stream class depending on other stream classes must not access coefficients or the approximate order of these, in order not to interfere with lazy definitions for Stream_uninitialized.

If an approximate order or even the true order is known, it must be set after calling super().__init__.

Otherwise, a lazy attribute \(_approximate_order\) has to be defined. Any initialization code depending on the approximate orders of input streams can be put into this definition.

However, keep in mind that (trivially) this initialization code is not executed if \(_approximate_order\) is set to a value before it is accessed.

is_nonzero()#

Return True if and only if this stream is known to be nonzero.

The default implementation is False.

EXAMPLES:

sage: from sage.data_structures.stream import Stream
sage: CS = Stream(True, 1)
sage: CS.is_nonzero()
False
class sage.data_structures.stream.Stream_add(left, right)#

Bases: sage.data_structures.stream.Stream_binaryCommutative

Operator for addition of two coefficient streams.

INPUT:

  • leftStream of coefficients on the left side of the operator

  • rightStream of coefficients on the right side of the operator

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_add, Stream_function)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: 1, True, 0)
sage: h = Stream_add(f, g)
sage: [h[i] for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
sage: u = Stream_add(g, f)
sage: [u[i] for i in range(10)]
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_add)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: n^2, True, 0)
sage: h = Stream_add(f, g)
sage: h.get_coefficient(5)
30
sage: [h.get_coefficient(i) for i in range(10)]
[0, 2, 6, 12, 20, 30, 42, 56, 72, 90]
class sage.data_structures.stream.Stream_binary(left, right, is_sparse)#

Bases: sage.data_structures.stream.Stream_inexact

Base class for binary operators on coefficient streams.

INPUT:

  • leftStream for the left side of the operator

  • rightStream for the right side of the operator

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_add, Stream_sub)
sage: f = Stream_function(lambda n: 2*n, True, 0)
sage: g = Stream_function(lambda n: n, True, 1)
sage: h = Stream_add(f, g)
sage: [h[i] for i in range(10)]
[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
sage: h = Stream_sub(f, g)
sage: [h[i] for i in range(10)]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
class sage.data_structures.stream.Stream_binaryCommutative(left, right, is_sparse)#

Bases: sage.data_structures.stream.Stream_binary

Base class for commutative binary operators on coefficient streams.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_add)
sage: f = Stream_function(lambda n: 2*n, True, 0)
sage: g = Stream_function(lambda n: n, True, 1)
sage: h = Stream_add(f, g)
sage: [h[i] for i in range(10)]
[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
sage: u = Stream_add(g, f)
sage: [u[i] for i in range(10)]
[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
sage: h == u
True
class sage.data_structures.stream.Stream_cauchy_compose(f, g)#

Bases: sage.data_structures.stream.Stream_binary

Return f composed by g.

This is the composition \((f \circ g)(z) = f(g(z))\).

INPUT:

EXAMPLES:

sage: from sage.data_structures.stream import Stream_cauchy_compose, Stream_function
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_function(lambda n: 1, True, 1)
sage: h = Stream_cauchy_compose(f, g)
sage: [h[i] for i in range(10)]
[0, 1, 3, 8, 20, 48, 112, 256, 576, 1280]
sage: u = Stream_cauchy_compose(g, f)
sage: [u[i] for i in range(10)]
[0, 1, 3, 8, 21, 55, 144, 377, 987, 2584]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function, Stream_cauchy_compose
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_function(lambda n: n^2, True, 1)
sage: h = Stream_cauchy_compose(f, g)
sage: h[5] # indirect doctest
527
sage: [h[i] for i in range(10)] # indirect doctest
[0, 1, 6, 28, 124, 527, 2172, 8755, 34704, 135772]
class sage.data_structures.stream.Stream_cauchy_invert(series, approximate_order=None)#

Bases: sage.data_structures.stream.Stream_unary

Operator for multiplicative inverse of the stream.

INPUT:

  • series – a Stream

  • approximate_orderNone, or a lower bound on the order of Stream_cauchy_invert(series)

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_invert, Stream_function)
sage: f = Stream_function(lambda n: 1, True, 1)
sage: g = Stream_cauchy_invert(f)
sage: [g[i] for i in range(10)]
[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_invert, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_cauchy_invert(f)
sage: g.get_coefficient(5)
0
sage: [g.get_coefficient(i) for i in range(10)]
[-2, 1, 0, 0, 0, 0, 0, 0, 0, 0]
is_nonzero()#

Return True if and only if this stream is known to be nonzero.

An assumption of this class is that it is nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_invert, Stream_function)
sage: f = Stream_function(lambda n: n^2, False, 1)
sage: g = Stream_cauchy_invert(f)
sage: g.is_nonzero()
True
iterate_coefficients()#

A generator for the coefficients of self.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_invert, Stream_function)
sage: f = Stream_function(lambda n: n^2, False, 1)
sage: g = Stream_cauchy_invert(f)
sage: n = g.iterate_coefficients()
sage: [next(n) for i in range(10)]
[1, -4, 7, -8, 8, -8, 8, -8, 8, -8]
class sage.data_structures.stream.Stream_cauchy_mul(left, right)#

Bases: sage.data_structures.stream.Stream_binary

Operator for multiplication of two coefficient streams using the Cauchy product.

We are not assuming commutativity of the coefficient ring here, only that the coefficient ring commutes with the (implicit) variable.

INPUT:

  • leftStream of coefficients on the left side of the operator

  • rightStream of coefficients on the right side of the operator

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_mul, Stream_function)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: 1, True, 0)
sage: h = Stream_cauchy_mul(f, g)
sage: [h[i] for i in range(10)]
[0, 1, 3, 6, 10, 15, 21, 28, 36, 45]
sage: u = Stream_cauchy_mul(g, f)
sage: [u[i] for i in range(10)]
[0, 1, 3, 6, 10, 15, 21, 28, 36, 45]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_cauchy_mul)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: n^2, True, 0)
sage: h = Stream_cauchy_mul(f, g)
sage: h.get_coefficient(5)
50
sage: [h.get_coefficient(i) for i in range(10)]
[0, 0, 1, 6, 20, 50, 105, 196, 336, 540]
is_nonzero()#

Return True if and only if this stream is known to be nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function,
....:     Stream_cauchy_mul, Stream_cauchy_invert)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_cauchy_mul(f, f)
sage: g.is_nonzero()
False
sage: fi = Stream_cauchy_invert(f)
sage: h = Stream_cauchy_mul(fi, fi)
sage: h.is_nonzero()
True
class sage.data_structures.stream.Stream_derivative(series, shift)#

Bases: sage.data_structures.stream.Stream_inexact

Operator for taking derivatives of a stream.

INPUT:

  • series – a Stream

  • shift – a positive integer

is_nonzero()#

Return True if and only if this stream is known to be nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_exact, Stream_derivative
sage: f = Stream_exact([1,2], False)
sage: Stream_derivative(f, 1).is_nonzero()
True
sage: Stream_derivative(f, 2).is_nonzero() # it might be nice if this gave False
True
class sage.data_structures.stream.Stream_dirichlet_convolve(left, right)#

Bases: sage.data_structures.stream.Stream_binary

Operator for the Dirichlet convolution of two streams.

INPUT:

  • leftStream of coefficients on the left side of the operator

  • rightStream of coefficients on the right side of the operator

The coefficient of \(n^{-s}\) in the convolution of \(l\) and \(r\) equals \(\sum_{k | n} l_k r_{n/k}\).

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_dirichlet_convolve, Stream_function, Stream_exact)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_exact([0], True, constant=1)
sage: h = Stream_dirichlet_convolve(f, g)
sage: [h[i] for i in range(1, 10)]
[1, 3, 4, 7, 6, 12, 8, 15, 13]
sage: [sigma(n) for n in range(1, 10)]
[1, 3, 4, 7, 6, 12, 8, 15, 13]

sage: u = Stream_dirichlet_convolve(g, f)
sage: [u[i] for i in range(1, 10)]
[1, 3, 4, 7, 6, 12, 8, 15, 13]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_dirichlet_convolve, Stream_function, Stream_exact)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_exact([0], True, constant=1)
sage: h = Stream_dirichlet_convolve(f, g)
sage: h.get_coefficient(7)
8
sage: [h[i] for i in range(1, 10)]
[1, 3, 4, 7, 6, 12, 8, 15, 13]
class sage.data_structures.stream.Stream_dirichlet_invert(series)#

Bases: sage.data_structures.stream.Stream_unary

Operator for inverse with respect to Dirichlet convolution of the stream.

INPUT:

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_dirichlet_invert, Stream_function)
sage: f = Stream_function(lambda n: 1, True, 1)
sage: g = Stream_dirichlet_invert(f)
sage: [g[i] for i in range(10)]
[0, 1, -1, -1, 0, -1, 1, -1, 0, 0]
sage: [moebius(i) for i in range(10)]
[0, 1, -1, -1, 0, -1, 1, -1, 0, 0]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_exact, Stream_dirichlet_invert)
sage: f = Stream_exact([0, 3], True, constant=2)
sage: g = Stream_dirichlet_invert(f)
sage: g.get_coefficient(6)
2/27
sage: [g[i] for i in range(8)]
[0, 1/3, -2/9, -2/9, -2/27, -2/9, 2/27, -2/9]
class sage.data_structures.stream.Stream_exact(initial_coefficients, is_sparse, constant=None, degree=None, order=None)#

Bases: sage.data_structures.stream.Stream

A stream of eventually constant coefficients.

INPUT:

  • initial_values – a list of initial values

  • is_sparse – boolean; specifies whether the stream is sparse

  • order – integer (default: 0); determining the degree of the first element of initial_values

  • degree – integer (optional); determining the degree of the first element which is known to be equal to constant

  • constant – integer (default: 0); the coefficient of every index larger than or equal to degree

Warning

The convention for order is different to the one in sage.rings.lazy_series_ring.LazySeriesRing, where the input is shifted to have the prescribed order.

is_nonzero()#

Return True if and only if this stream is known to be nonzero.

An assumption of this class is that it is nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_exact
sage: s = Stream_exact([2], False, order=-1, degree=2, constant=1)
sage: s.is_nonzero()
True
order()#

Return the order of self, which is the minimum index n such that self[n] is nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_exact
sage: s = Stream_exact([1], False)
sage: s.order()
0
class sage.data_structures.stream.Stream_function(function, is_sparse, approximate_order, true_order=False)#

Bases: sage.data_structures.stream.Stream_inexact

Class that creates a stream from a function on the integers.

INPUT:

  • function – a function that generates the coefficients of the stream

  • is_sparse – boolean; specifies whether the stream is sparse

  • approximate_order – integer; a lower bound for the order of the stream

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function
sage: f = Stream_function(lambda n: n^2, False, 1)
sage: f[3]
9
sage: [f[i] for i in range(10)]
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

sage: f = Stream_function(lambda n: 1, False, 0)
sage: n = f.iterate_coefficients()
sage: [next(n) for _ in range(10)]
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1]

sage: f = Stream_function(lambda n: n, True, 0)
sage: f.get_coefficient(4)
4
class sage.data_structures.stream.Stream_inexact(is_sparse, true_order)#

Bases: sage.data_structures.stream.Stream

An abstract base class for the stream when we do not know it is eventually constant.

INPUT:

  • sparse – boolean; whether the implementation of the stream is sparse

  • approximate_order – integer; a lower bound for the order of the stream

Todo

The approximate_order is currently only updated when invoking order(). It might make sense to update it whenever the coefficient one larger than the current approximate_order is computed, since in some methods this will allow shortcuts.

is_nonzero()#

Return True if and only if the cache contains a nonzero element.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function
sage: CS = Stream_function(lambda n: 1/n, False, 1)
sage: CS.is_nonzero()
False
sage: CS[1]
1
sage: CS.is_nonzero()
True
iterate_coefficients()#

A generator for the coefficients of self.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function, Stream_cauchy_compose
sage: f = Stream_function(lambda n: 1, False, 1)
sage: g = Stream_function(lambda n: n^3, False, 1)
sage: h = Stream_cauchy_compose(f, g)
sage: n = h.iterate_coefficients()
sage: [next(n) for i in range(10)]
[1, 9, 44, 207, 991, 4752, 22769, 109089, 522676, 2504295]
order()#

Return the order of self, which is the minimum index n such that self[n] is nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function
sage: f = Stream_function(lambda n: n, True, 0)
sage: f.order()
1
class sage.data_structures.stream.Stream_iterator(iter, approximate_order, true_order=False)#

Bases: sage.data_structures.stream.Stream_inexact

Class that creates a stream from an iterator.

INPUT:

  • iter – a function that generates the coefficients of the stream

  • approximate_order – integer; a lower bound for the order of the stream

Instances of this class are always dense.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_iterator
sage: f = Stream_iterator(iter(NonNegativeIntegers()), 0)
sage: [f[i] for i in range(10)]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

sage: f = Stream_iterator(iter(NonNegativeIntegers()), 1)
sage: [f[i] for i in range(10)]
[0, 0, 1, 2, 3, 4, 5, 6, 7, 8]
class sage.data_structures.stream.Stream_lmul(series, scalar)#

Bases: sage.data_structures.stream.Stream_scalar

Operator for multiplying a coefficient stream with a scalar as self * scalar.

INPUT:

  • series – a Stream

  • scalar – a scalar

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_lmul, Stream_function)
sage: W = algebras.DifferentialWeyl(QQ, names=('x',))
sage: x, dx = W.gens()
sage: f = Stream_function(lambda n: x^n, True, 1)
sage: g = Stream_lmul(f, dx)
sage: [g[i] for i in range(5)]
[0, x*dx, x^2*dx, x^3*dx, x^4*dx]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_lmul, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_lmul(f, 3)
sage: g.get_coefficient(5)
15
sage: [g.get_coefficient(i) for i in range(10)]
[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
class sage.data_structures.stream.Stream_map_coefficients(series, function, approximate_order=None, true_order=False)#

Bases: sage.data_structures.stream.Stream_inexact

The stream with function applied to each nonzero coefficient of series.

INPUT:

  • series – a Stream

  • function – a function that modifies the elements of the stream

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_map_coefficients, Stream_function)
sage: f = Stream_function(lambda n: 1, True, 1)
sage: g = Stream_map_coefficients(f, lambda n: -n)
sage: [g[i] for i in range(10)]
[0, -1, -1, -1, -1, -1, -1, -1, -1, -1]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_map_coefficients, Stream_function)
sage: f = Stream_function(lambda n: n, True, -1)
sage: g = Stream_map_coefficients(f, lambda n: n^2 + 1)
sage: g.get_coefficient(5)
26
sage: [g.get_coefficient(i) for i in range(-1, 10)]
[2, 0, 2, 5, 10, 17, 26, 37, 50, 65, 82]

sage: R.<x,y> = ZZ[]
sage: f = Stream_function(lambda n: n, True, -1)
sage: g = Stream_map_coefficients(f, lambda n: R(n).degree() + 1)
sage: [g.get_coefficient(i) for i in range(-1, 3)]
[1, 0, 1, 1]
class sage.data_structures.stream.Stream_neg(series)#

Bases: sage.data_structures.stream.Stream_unary

Operator for negative of the stream.

INPUT:

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_neg, Stream_function)
sage: f = Stream_function(lambda n: 1, True, 1)
sage: g = Stream_neg(f)
sage: [g[i] for i in range(10)]
[0, -1, -1, -1, -1, -1, -1, -1, -1, -1]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_neg, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_neg(f)
sage: g.get_coefficient(5)
-5
sage: [g.get_coefficient(i) for i in range(10)]
[0, -1, -2, -3, -4, -5, -6, -7, -8, -9]
is_nonzero()#

Return True if and only if this stream is known to be nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_neg, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_neg(f)
sage: g.is_nonzero()
False

sage: from sage.data_structures.stream import Stream_cauchy_invert
sage: fi = Stream_cauchy_invert(f)
sage: g = Stream_neg(fi)
sage: g.is_nonzero()
True
class sage.data_structures.stream.Stream_plethysm(f, g, p, ring=None, include=None, exclude=None)#

Bases: sage.data_structures.stream.Stream_binary

Return the plethysm of f composed by g.

This is the plethysm \(f \circ g = f(g)\) when \(g\) is an element of a ring of symmetric functions.

INPUT:

  • f – a Stream

  • g – a Stream with positive order, unless f is of Stream_exact.

  • p – the ring of powersum symmetric functions containing g

  • ring (optional, default None) – the ring the result should be in, by default p

  • include – a list of variables to be treated as degree one elements instead of the default degree one elements

  • exclude – a list of variables to be excluded from the default degree one elements

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function, Stream_plethysm
sage: s = SymmetricFunctions(QQ).s()
sage: p = SymmetricFunctions(QQ).p()
sage: f = Stream_function(lambda n: s[n], True, 1)
sage: g = Stream_function(lambda n: s[[1]*n], True, 1)
sage: h = Stream_plethysm(f, g, p, s)
sage: [h[i] for i in range(5)]
[0,
 s[1],
 s[1, 1] + s[2],
 2*s[1, 1, 1] + s[2, 1] + s[3],
 3*s[1, 1, 1, 1] + 2*s[2, 1, 1] + s[2, 2] + s[3, 1] + s[4]]
sage: u = Stream_plethysm(g, f, p, s)
sage: [u[i] for i in range(5)]
[0,
 s[1],
 s[1, 1] + s[2],
 s[1, 1, 1] + s[2, 1] + 2*s[3],
 s[1, 1, 1, 1] + s[2, 1, 1] + 3*s[3, 1] + 2*s[4]]

This class also handles the plethysm of an exact stream with a stream of order \(0\):

sage: from sage.data_structures.stream import Stream_exact
sage: f = Stream_exact([s[1]], True, order=1)
sage: g = Stream_function(lambda n: s[n], True, 0)
sage: r = Stream_plethysm(f, g, p, s)
sage: [r[n] for n in range(3)]
[s[], s[1], s[2]]
compute_product(n, la)#

Compute the product c * p[la](self._right) in degree n.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_plethysm, Stream_exact, Stream_function, Stream_zero
sage: s = SymmetricFunctions(QQ).s()
sage: p = SymmetricFunctions(QQ).p()
sage: f = Stream_exact([1], False) # irrelevant for this test
sage: g = Stream_exact([s[2], s[3]], False, 0, 4, 2)
sage: h = Stream_plethysm(f, g, p)
sage: A = h.compute_product(7, Partition([2, 1])); A
1/12*p[2, 2, 1, 1, 1] + 1/4*p[2, 2, 2, 1] + 1/6*p[3, 2, 2]
 + 1/12*p[4, 1, 1, 1] + 1/4*p[4, 2, 1] + 1/6*p[4, 3]
sage: A == p[2, 1](s[2] + s[3]).homogeneous_component(7)
True

sage: p2 = tensor([p, p])
sage: f = Stream_exact([1], True) # irrelevant for this test
sage: g = Stream_function(lambda n: sum(tensor([p[k], p[n-k]]) for k in range(n+1)), True, 1)
sage: h = Stream_plethysm(f, g, p2)
sage: A = h.compute_product(7, Partition([2, 1]))
sage: B = p[2, 1](sum(g[n] for n in range(7)))
sage: B = p2.element_class(p2, {m: c for m, c in B if sum(mu.size() for mu in m) == 7})
sage: A == B
True

sage: f = Stream_exact([1], True) # irrelevant for this test
sage: g = Stream_function(lambda n: s[n], True, 0)
sage: h = Stream_plethysm(f, g, p)
sage: B = p[2, 2, 1](sum(s[i] for i in range(7)))
sage: all(h.compute_product(k, Partition([2, 2, 1])) == B.restrict_degree(k) for k in range(7))
True
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import Stream_function, Stream_plethysm
sage: s = SymmetricFunctions(QQ).s()
sage: p = SymmetricFunctions(QQ).p()
sage: f = Stream_function(lambda n: s[n], True, 1)
sage: g = Stream_function(lambda n: s[[1]*n], True, 1)
sage: h = Stream_plethysm(f, g, p)
sage: s(h.get_coefficient(5))
4*s[1, 1, 1, 1, 1] + 4*s[2, 1, 1, 1] + 2*s[2, 2, 1] + 2*s[3, 1, 1] + s[3, 2] + s[4, 1] + s[5]
sage: [s(h.get_coefficient(i)) for i in range(6)]
[0,
 s[1],
 s[1, 1] + s[2],
 2*s[1, 1, 1] + s[2, 1] + s[3],
 3*s[1, 1, 1, 1] + 2*s[2, 1, 1] + s[2, 2] + s[3, 1] + s[4],
 4*s[1, 1, 1, 1, 1] + 4*s[2, 1, 1, 1] + 2*s[2, 2, 1] + 2*s[3, 1, 1] + s[3, 2] + s[4, 1] + s[5]]
stretched_power_restrict_degree(i, m, d)#

Return the degree d*i part of p([i]*m)(g).

EXAMPLES:

sage: from sage.data_structures.stream import Stream_plethysm, Stream_exact, Stream_function, Stream_zero
sage: s = SymmetricFunctions(QQ).s()
sage: p = SymmetricFunctions(QQ).p()
sage: f = Stream_exact([1], False) # irrelevant for this test
sage: g = Stream_exact([s[2], s[3]], False, 0, 4, 2)
sage: h = Stream_plethysm(f, g, p)
sage: A = h.stretched_power_restrict_degree(2, 3, 6)
sage: A == p[2,2,2](s[2] + s[3]).homogeneous_component(12)
True

sage: p2 = tensor([p, p])
sage: f = Stream_exact([1], True) # irrelevant for this test
sage: g = Stream_function(lambda n: sum(tensor([p[k], p[n-k]]) for k in range(n+1)), True, 1)
sage: h = Stream_plethysm(f, g, p2)
sage: A = h.stretched_power_restrict_degree(2, 3, 6)
sage: B = p[2,2,2](sum(g[n] for n in range(7)))  # long time
sage: B = p2.element_class(p2, {m: c for m, c in B if sum(mu.size() for mu in m) == 12})  # long time
sage: A == B  # long time
True
class sage.data_structures.stream.Stream_rmul(series, scalar)#

Bases: sage.data_structures.stream.Stream_scalar

Operator for multiplying a coefficient stream with a scalar as scalar * self.

INPUT:

  • series – a Stream

  • scalar – a scalar

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_rmul, Stream_function)
sage: W = algebras.DifferentialWeyl(QQ, names=('x',))
sage: x, dx = W.gens()
sage: f = Stream_function(lambda n: x^n, True, 1)
sage: g = Stream_rmul(f, dx)
sage: [g[i] for i in range(5)]
[0, x*dx + 1, x^2*dx + 2*x, x^3*dx + 3*x^2, x^4*dx + 4*x^3]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_rmul, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_rmul(f, 3)
sage: g.get_coefficient(5)
15
sage: [g.get_coefficient(i) for i in range(10)]
[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
class sage.data_structures.stream.Stream_scalar(series, scalar)#

Bases: sage.data_structures.stream.Stream_inexact

Base class for operators multiplying a coefficient stream by a scalar.

Todo

This does not inherit from Stream_unary, because of the extra argument scalar. However, we could also override Stream_unary.hash(), Stream_unary.__eq__(). Would this be any better?

is_nonzero()#

Return True if and only if this stream is known to be nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_rmul, Stream_function)
sage: f = Stream_function(lambda n: n, True, 1)
sage: g = Stream_rmul(f, 2)
sage: g.is_nonzero()
False

sage: from sage.data_structures.stream import Stream_cauchy_invert
sage: fi = Stream_cauchy_invert(f)
sage: g = Stream_rmul(fi, 2)
sage: g.is_nonzero()
True
class sage.data_structures.stream.Stream_shift(series, shift)#

Bases: sage.data_structures.stream.Stream_inexact

Operator for shifting the stream.

INPUT:

  • series – a Stream

  • shift – an integer

is_nonzero()#

Return True if and only if this stream is known to be nonzero.

An assumption of this class is that it is nonzero.

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_cauchy_invert, Stream_function)
sage: f = Stream_function(lambda n: n^2, False, 1)
sage: g = Stream_cauchy_invert(f)
sage: g.is_nonzero()
True
class sage.data_structures.stream.Stream_sub(left, right)#

Bases: sage.data_structures.stream.Stream_binary

Operator for subtraction of two coefficient streams.

INPUT:

  • leftStream of coefficients on the left side of the operator

  • rightStream of coefficients on the right side of the operator

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_sub, Stream_function)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: 1, True, 0)
sage: h = Stream_sub(f, g)
sage: [h[i] for i in range(10)]
[-1, 0, 1, 2, 3, 4, 5, 6, 7, 8]
sage: u = Stream_sub(g, f)
sage: [u[i] for i in range(10)]
[1, 0, -1, -2, -3, -4, -5, -6, -7, -8]
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_sub)
sage: f = Stream_function(lambda n: n, True, 0)
sage: g = Stream_function(lambda n: n^2, True, 0)
sage: h = Stream_sub(f, g)
sage: h.get_coefficient(5)
-20
sage: [h.get_coefficient(i) for i in range(10)]
[0, 0, -2, -6, -12, -20, -30, -42, -56, -72]
class sage.data_structures.stream.Stream_unary(series, is_sparse)#

Bases: sage.data_structures.stream.Stream_inexact

Base class for unary operators on coefficient streams.

INPUT:

  • seriesStream the operator acts on

EXAMPLES:

sage: from sage.data_structures.stream import (Stream_function, Stream_cauchy_invert, Stream_lmul)
sage: f = Stream_function(lambda n: 2*n, False, 1)
sage: g = Stream_cauchy_invert(f)
sage: [g[i] for i in range(10)]
[-1, 1/2, 0, 0, 0, 0, 0, 0, 0, 0]
sage: g = Stream_lmul(f, 2)
sage: [g[i] for i in range(10)]
[0, 4, 8, 12, 16, 20, 24, 28, 32, 36]
class sage.data_structures.stream.Stream_uninitialized(is_sparse, approximate_order, true_order=False)#

Bases: sage.data_structures.stream.Stream_inexact

Coefficient stream for an uninitialized series.

INPUT:

  • is_sparse – boolean; which specifies whether the stream is sparse

  • approximate_order – integer; a lower bound for the order of the stream

EXAMPLES:

sage: from sage.data_structures.stream import Stream_uninitialized
sage: from sage.data_structures.stream import Stream_exact
sage: one = Stream_exact([1], True)
sage: C = Stream_uninitialized(True, 0)
sage: C._target
sage: C._target = one
sage: C.get_coefficient(4)
0
get_coefficient(n)#

Return the n-th coefficient of self.

INPUT:

  • n – integer; the degree for the coefficient

EXAMPLES:

sage: from sage.data_structures.stream import Stream_uninitialized
sage: from sage.data_structures.stream import Stream_exact
sage: one = Stream_exact([1], True)
sage: C = Stream_uninitialized(True, 0)
sage: C._target
sage: C._target = one
sage: C.get_coefficient(0)
1
iterate_coefficients()#

A generator for the coefficients of self.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_uninitialized
sage: from sage.data_structures.stream import Stream_exact
sage: z = Stream_exact([1], True, order=1)
sage: C = Stream_uninitialized(True, 0)
sage: C._target
sage: C._target = z
sage: n = C.iterate_coefficients()
sage: [next(n) for _ in range(10)]
[0, 1, 0, 0, 0, 0, 0, 0, 0, 0]
class sage.data_structures.stream.Stream_zero(is_sparse)#

Bases: sage.data_structures.stream.Stream

A coefficient stream that is exactly equal to zero.

INPUT:

  • sparse – boolean; whether the coefficient stream is sparse or not

EXAMPLES:

sage: from sage.data_structures.stream import Stream_zero
sage: s = Stream_zero(True)
sage: s[5]
0
order()#

Return the order of self, which is infinity.

EXAMPLES:

sage: from sage.data_structures.stream import Stream_zero
sage: s = Stream_zero(True)
sage: s.order()
+Infinity