SUMSQ(list)

The SUMSQ function calculates the sum of the squares of a list of numbers.

For example

SUMSQ(3, -2, 2)

returns 17, that is 3^2 + (-2)^2 + 2^2.

See also:

Other mathematical functions