MapleTA[Builtin]
sum
add a sequence of expressions
Calling Sequence
Parameters
Description
Examples
Compatibility
sum(varname, start, stop, expr)
varname
-
symbol
start
integer
stop
expr
anything
The sum command sums the expression expr with respect to the dummy variable, varname, between the values start and stop.
For example, sum(i, 1, 20, i^2) evaluates 1^2 + 2^2 + 3^2 + ... + 20^2 and returns 2870.
MapleTA:-Builtin:-sum⁡i,1,20,i2
2870
The MapleTA[Builtin][sum] command was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
add
MapleTA
Download Help Document