If this tool helped you, you can buy us a coffee ☕
快速计算一组数值的均方根值(RMS),用于信号分析、交流电有效值等场景。
Root Mean Square (RMS) = sqrt((x1² + x2² + ... + xn²) / n). Accepts positive, negative, and decimal numbers. Non-numeric input will be automatically ignored.

Prime and Composite Number Calculator
Instantly identify prime, composite, or special numbers. Supports batch checking and mathematical property analysis.

Nth Root Calculator
Calculate the nth root of any real number. Supports integer and decimal exponents, perfect for students and engineering professionals.

Inverse Trigonometric Function Calculator
Accurately calculate radian values for inverse trig functions like arcsin and arccos. Supports 6 function types and custom decimal precision.

Trigonometry Calculator
Calculate six trigonometric functions from radian values with custom decimal precision.

Prime and Composite Number Calculator
Instantly identify prime, composite, or special numbers. Supports batch checking and mathematical property analysis.

Nth Root Calculator
Calculate the nth root of any real number. Supports integer and decimal exponents, perfect for students and engineering professionals.

Inverse Trigonometric Function Calculator
Accurately calculate radian values for inverse trig functions like arcsin and arccos. Supports 6 function types and custom decimal precision.

Trigonometry Calculator
Calculate six trigonometric functions from radian values with custom decimal precision.

Cube Root Calculator
Quickly calculate the cube root of any number with customizable decimal places for accurate and reliable results.
220V的交流电,电压波形峰值约为311V,但它的有效值(RMS)却是220V——这就是均方根值的典型应用。我们平时遇到的很多场景都会用到RMS:
我们打开上面的RMS计算器,界面很清晰:
主算例:测量一组信号幅度
你从音频软件里导出了5个采样点的电压值(单位mV):3, 4, 5, 4, 3。想算RMS:
第一步:在输入框里按行输入:3
4
5
4
3
第二步:点击“计算”。
第三步:看结果。计算器内部做了这些:
平方和 = 3² + 4² + 5² + 4² + 3² = 9 + 16 + 25 + 16 + 9 = 75
平均值 = 75 ÷ 5 = 15
RMS = √15 ≈ 3.873 mV
所以这组信号的RMS幅度约3.87 mV,比算术平均值(3.8 mV)略高一点,因为有一个5的峰值拉高了有效值。
对照例:全是相同的数字
假如你在测试一个稳定的直流信号,5个采样都是10 V:
输入10,10,10,10,10
平方和 = 500,平均值 = 100,RMS = √100 = 10 V
此时RMS = 算术平均值 = 10 V,说明信号没有波动,有效值就等于直流值。
对照例:包含负数的交流信号
输入一个正弦波的两个完整周期的采样:-2, 0, 2, 0, -2, 0, 2, 0
平方和 = 4+0+4+0+4+0+4+0 = 16,平均值 = 16÷8 = 2,RMS = √2 ≈ 1.414
即使平均值是0(因为正负抵消),RMS却为1.414,真实反映了信号的能量大小。
RMS是个总有意义的正数(除非所有输入都是0)。
Q1:RMS和有效值是一回事吗?
在交流电和信号领域,是的。有效值的正式定义就是均方根值。所以大家常说的“220V有效值”就是220V RMS。
Q2:RMS和平均值差多少才算正常?
没有固定标准,取决于信号的波动幅度。对于正弦波,RMS ≈ 0.707 × 峰值;对于方波,RMS = 峰值。你可以用我们的计算器同时看平均值和RMS,两者差距越大,信号波动越剧烈。
Q3:输入里能不能有小数点?
当然可以。我们支持整数和小数,比如24.5。但别输入文本或特殊符号,否则会报错。
Q4:输入有几百个数字,计算器会慢吗?
不会。我们的算法非常快,几千个数字也能瞬间算完。但要注意,如果数据量过万,建议先在Excel里算,因为浏览器输入框不方便管理大量数据。
Q5:结果四舍五入到几位小数?
默认显示4位小数,足够工程使用了。如果需要更高精度,可以复制结果自己再处理。
Q6:这个RMS公式怎么来的?
RMS的数学定义是先平方(Square),然后求平均(Mean),最后开方(Root),所以就叫“均方根”。它反映了信号的能量大小。
现在你可以在上方计算器里试试自己的数字了。