symsum
Symbolic sum of series
Description
returns the symbolic sum of the series F
= symsum(f
,k
,a
,b
)f
with respect to the summation
index k
from the lower bound a
to the upper bound
b
. If you do not specify k
, symsum
uses the variable determined by symvar
as the summation index. If
f
is a constant, then the default variable is x
.
symsum(f,k,[a b])
or symsum(f,k,[a; b])
is equivalent
to symsum(f,k,a,b)
.
returns the indefinite sum (antidifference) of the series F
= symsum(f
,k
)f
with respect to
the summation index k
. The f
argument defines the
series such that the indefinite sum F
satisfies the relation F(k+1)
- F(k) = f(k)
. If you do not specify k
,
symsum
uses the variable determined by symvar
as the summation index. If f
is a constant, then the
default variable is x
.
Examples
Input Arguments
More About
Version History
Introduced before R2006a