TRUECALC
Functions

SUMSQ

Sum of squares of arguments

Try it

When to use it

When should I use SUMSQ?

Use SUMSQ to compute the sum of squares of a set of values, which is commonly needed in statistics (variance, regression) and geometry (Pythagorean theorem).

Used in

science · engineering

Syntax

SUMSQ(value1,...)

Examples

=SUMSQ({1,2,3,4,5}) // => 55
=SUMSQ(1,2,3,4,5) // => 55
=SUMSQ(1,2,{3,4,5}) // => 55

On this page