stats[describe, quadraticmean]
Quadratic Mean of a Statistical List
Calling Sequence
Parameters
Description
Examples
stats[describe, quadraticmean](data)
describe[quadraticmean](data)
data
-
statistical list
Important: The stats package has been deprecated. Use the superseding package Statistics instead.
The function quadraticmean of the subpackage stats[describe, ...] computes the quadratic mean of the given data.
The quadratic mean, also known as the root mean square, is the square root of the mean of the squares of the observations. It is a measure of central tendency. For more information about such measures, see the help for the (arithmetic) mean.
This type of mean is used in some physical applications. For example, it gives the ``average'' speed of particles of the same mass, where average is defined in such a way as to give each particle the same kinetic energy.
Classes are assumed to be represented by the class mark, for example 10..12 has the value 11. Missing data are ignored.
The command with(stats[describe],quadraticmean) allows the use of the abbreviated form of this command.
with⁡stats:
If V is the velocity of a particle of mass M, then its kinetic energy is defined to be 1/2*M*V^2. If we have two particles, one with velocity 3 and the other with velocity 4, the total kinematic energy is given by
Tot_Kinetic≔12⁢M⁢32+12⁢M⁢42
Tot_Kinetic≔25⁢M2
The RMS-velocity is
Rv≔describequadraticmean⁡3,4
Rv≔5⁢22
The energy associated with the 2 particles of mass M and velocity Rv is
2⁢12⁢M⁢Rv2=Tot_Kinetic
25⁢M2=25⁢M2
Note that the arithmetic average is not suitable here:
Av≔describemean⁡3,4
Av≔72
2⁢12⁢M⁢Av2≠Tot_Kinetic
49⁢M4≠25⁢M2
See Also
describe(deprecated)[geometricmean]
describe(deprecated)[harmonicmean]
describe(deprecated)[mean]
Statistics
Statistics[QuadraticMean]
stats(deprecated)[data]
transform(deprecated)[classmark]
Download Help Document