RosettaCodeData/Task/Averages-Root-mean-square/00-TASK.txt
2023-07-01 13:44:08 -04:00

19 lines
464 B
Text

;Task
Compute the   [[wp:Root mean square|Root mean square]]   of the numbers 1..10.
The   ''root mean square''   is also known by its initials RMS (or rms), and as the '''quadratic mean'''.
The RMS is calculated as the mean of the squares of the numbers, square-rooted:
::: <big><math>x_{\mathrm{rms}} = \sqrt {{{x_1}^2 + {x_2}^2 + \cdots + {x_n}^2} \over n}. </math></big>
;See also
{{Related tasks/Statistical measures}}
<br><hr>