sqrtss
sqrtss stands for the square root of the sum of squares. For a vector v = (x1, ..., xn), sqrtss(v) = sqrt(x1^2 + x2^2 + ... + xn^2). This quantity is the length or magnitude of the vector and is the Euclidean norm, commonly denoted ||v||2.
Properties of sqrtss include nonnegativity, with sqrtss(v) = 0 if and only if all components are zero.
Interpretation and computation: in two dimensions, sqrtss(a, b) = sqrt(a^2 + b^2), giving the ordinary length of the
Examples: sqrtss(3, 4) = 5; sqrtss(1, 2, 2) = 3. Applications include vector normalization, distance calculations in geometry