FunctionSpaceSum(R, F)¶
combfunc.spad line 2614 [edit on github]
R: Join(IntegralDomain, Comparable, RetractableTo Integer, LinearlyExplicitOver Integer)
F: Join(FunctionSpace R, CombinatorialOpsCategory, AlgebraicallyClosedField, TranscendentalFunctionCategory)
computes sums of top-level expressions.
- sum: (F, SegmentBinding F) -> F
sum(f(n), n = a..b)
returnsf
(a) +f
(a+1
) + … +f
(b
).
- sum: (F, Symbol) -> F
sum(a(n), n)
returns A(n
) such that A(n+1
) - A(n
) = a(n
).