InfiniteLambertProduct(Coef, UTS)ΒΆ
taylor.spad line 436 [edit on github]
Coef: Ring
UTS: UnivariateTaylorSeriesCategory Coef
This package computes infinite products of univariate Taylor series
- evenInfiniteProduct: UTS -> UTS
evenInfiniteProduct(f(x))
computesproduct(n=2, 4, 6..., f(x^n))
. The seriesf(x)
should have constant coefficient 1.
- generalInfiniteProduct: (UTS, Integer, Integer) -> UTS
generalInfiniteProduct(f(x), a, d)
computesproduct(n=a, a+d, a+2*d, ..., f(x^n))
. The seriesf(x)
should have constant coefficient 1.
- infiniteProduct: UTS -> UTS
infiniteProduct(f(x))
computesproduct(n=1, 2, 3..., f(x^n))
. The seriesf(x)
should have constant coefficient 1.
- oddInfiniteProduct: UTS -> UTS
oddInfiniteProduct(f(x))
computesproduct(n=1, 3, 5..., f(x^n))
. The seriesf(x)
should have constant coefficient 1.