When working with alternating current (AC), the most critical conversion factor you will type into your math tool is the square root of 2. If you are wondering why you keep hitting the √2 on calculator keys when sizing capacitors, selecting diode peak inverse voltage (PIV) ratings, or interpreting oscilloscope traces, the answer lies in the geometry of a sine wave. The direct answer for converting Root Mean Square (RMS) voltage to Peak voltage is to multiply by √2 (approximately 1.4142). Conversely, to find RMS from a known peak, you divide by √2 or multiply by 0.7071.
This constant is not an arbitrary fudge factor; it is the exact mathematical bridge between the heating equivalent of an AC waveform (RMS) and its physical maximum amplitude (Peak). In this guide, we will break down the formula, define every variable, explore the assumptions that make it valid, and walk through bench-tested worked examples with strict unit tracking.
The Core Formula: AC RMS to Peak Voltage
For a pure sinusoidal AC waveform, the relationship between the RMS value and the peak value is defined by the following equation:
Vpeak = Vrms × √2
To use this formula effectively, you must understand exactly what each symbol represents and the physical reality it maps to on your workbench.
| Symbol | Definition | Standard Unit | Practical Context |
|---|---|---|---|
| Vpeak | Peak Voltage (Amplitude) | Volts (V) | The maximum instantaneous voltage measured from the zero-crossing to the crest of the sine wave. This is what your oscilloscope displays and what your rectifier diodes must withstand. |
| Vrms | Root Mean Square Voltage | Volts (V) | The effective DC-equivalent voltage that would produce the same heating effect in a resistive load. This is what your multimeter reads and what the NEC uses for wire sizing. |
| √2 | Square Root of 2 | Dimensionless | The constant derived from integrating the square of a sine function over one full period. On your calculator, this is approximately 1.41421356. |
The derivation of this constant comes from calculus. The RMS value is the square root of the mean of the square of the function. For a sine wave v(t) = Vpeaksin(ωt), squaring the function, averaging it over a full 2π cycle, and taking the square root yields exactly Vpeak / √2. According to All About Circuits, this mathematical relationship is strictly bound to the sinusoidal shape; change the shape, and the constant changes.
Rearranged Forms and Variable Isolation
On the bench, you rarely know exactly the variable the base formula solves for. You might be reading a peak-to-peak value off a scope and need the RMS, or you might have an RMS multimeter reading and need the peak for a capacitor voltage rating. Here are the algebraically rearranged forms solving for each variable:
- Solving for Peak Voltage:
V_peak = V_rms × 1.4142 - Solving for RMS Voltage (Division):
V_rms = V_peak / 1.4142 - Solving for RMS Voltage (Multiplication):
V_rms = V_peak × 0.7071(Note: 0.7071 is the decimal equivalent of 1/√2) - Solving for Peak-to-Peak Voltage (V_pp):
V_pp = V_rms × 2.8284(Since V_pp = 2 × V_peak, and 2 × 1.4142 = 2.8284)
0.70710678 in your C++ code rather than dividing by 1.414. Multiplication requires fewer CPU cycles than floating-point division, which matters when sampling at high frequencies in an interrupt service routine.
Assumptions, Unit Traps, and Realistic Magnitudes
When the Formula Applies (and When It Fails)
The √2 constant assumes a pure, undistorted sinusoidal waveform. This is the waveform delivered by the utility grid and high-quality online double-conversion UPS systems. If you are measuring the output of a cheap modified-sine-wave inverter, a variable frequency drive (VFD), or a triac-based dimmer, the waveform is chopped or stepped. In those cases, hitting the √2 on calculator will yield mathematically correct but physically meaningless results. For non-sinusoidal waves, you must use a True-RMS multimeter (like the Fluke 87V) which calculates the heating value internally, or perform discrete sampling with a microcontroller. For a pure square wave, the RMS equals the Peak (a factor of 1). For a triangle wave, the factor is √3 (approx 1.732).
The Unit Mistake That Breaks the Math
The most common error among hobbyists and junior technicians is confusing Peak (Vp) with Peak-to-Peak (Vpp). Oscilloscopes default to displaying Vpp—the total vertical swing from the negative trough to the positive crest. If your scope reads 340Vpp, you cannot plug 340 into the RMS formula. You must first divide by 2 to get the true Peak (170Vp), and then multiply by 0.7071 to get 120Vrms.
What a Realistic Answer Magnitude Looks Like
To build intuition, memorize these standard grid magnitudes. If your calculator spits out a number wildly outside these ranges, you have a unit error:
- North American Mains (120V nominal): RMS is 120V. Peak is ~169.7V. Peak-to-Peak is ~339.4V. (NEC allows a steady-state range of 114V to 126V RMS).
- European/UK Mains (230V nominal): RMS is 230V. Peak is ~325.3V. Peak-to-Peak is ~650.5V.
- US Split-Phase (240V nominal): RMS is 240V. Peak is ~339.4V.
Worked Examples with Step-by-Step Unit Tracking
Let us apply the formula to two real-world scenarios, tracking units at every step to prevent magnitude errors.
Problem 1: Sizing a Filter Capacitor for a 120V AC Supply
Scenario: You are building a linear power supply using a full-bridge rectifier connected directly to a standard 120Vrms North American wall outlet. You need to select a bulk filter capacitor. What is the minimum DC voltage rating the capacitor must have to survive the peak voltage without dielectric breakdown, assuming a 20% safety margin?
- Identify knowns: Vrms = 120V
- Select formula: Vpeak = Vrms × √2
- Substitute values: Vpeak = 120V × 1.4142
- Calculate: Vpeak = 169.704V
- Apply safety margin: 169.704V × 1.20 = 203.64V
- Select standard component: Capacitors are manufactured in standard voltage increments (e.g., 200V, 250V, 400V). Since 203.64V exceeds the 200V rating, you must step up.
Final Answer: The capacitor must be rated for at least 250V DC.
Problem 2: Interpreting an Oscilloscope V_pp Reading
Scenario: You are troubleshooting the secondary winding of a control transformer. Your oscilloscope is set to AC coupling and reads a Peak-to-Peak voltage (Vpp) of 67.9V. Your multimeter is broken, and you need to know the RMS voltage to verify if it matches the 24Vrms nameplate rating.
- Identify knowns: Vpp = 67.9V
- Convert V_pp to V_peak: Vpeak = Vpp / 2
Vpeak = 67.9V / 2 = 33.95V - Select RMS formula: Vrms = Vpeak × 0.7071
- Substitute values: Vrms = 33.95V × 0.7071
- Calculate: Vrms = 24.006V
Final Answer: The RMS voltage is 24.0V, which perfectly matches the transformer nameplate.
FAQ: Using the 2 on Calculator for Electrical Math
Why do I use the square root of 2 on calculator for AC voltage instead of just 2?
Multiplying by 2 gives you the Peak-to-Peak voltage from a zero-referenced Peak, or it calculates the apparent power in a purely resistive DC circuit if squaring current. However, AC RMS is based on the area under a squared sine curve. Because the sine wave spends time at lower amplitudes near the zero-crossing, the effective heating value is lower than the peak. The integral of sin²(x) over a full cycle dictates that the ratio between Peak and RMS is exactly √2 (1.414), not 2. If you multiply RMS by 2, you will overestimate the peak voltage by roughly 41%, leading to catastrophic component selection errors.
What happens if I multiply by 2 on calculator for peak-to-peak voltage?
If you already have the true Peak voltage (Vp), multiplying by 2 on calculator is the correct step to find Peak-to-Peak (Vpp). For example, a 170V peak sine wave has a 340V peak-to-peak swing. The error occurs when technicians confuse RMS for Peak and multiply the RMS value by 2. Remember the chain: RMS × 1.414 = Peak. Peak × 2 = Peak-to-Peak. Therefore, RMS × 2.828 = Peak-to-Peak.
How do I calculate RMS without the 2 on calculator for non-sinusoidal waves?
If you are measuring a square wave, triangle wave, or a chopped dimmer waveform, the √2 shortcut is invalid. According to Fluke's guidelines on True-RMS measurements, you must either use a True-RMS multimeter equipped with an internal thermal or digital sampling converter, or you must manually sample the waveform using an oscilloscope or microcontroller ADC. For manual calculation of a discrete waveform, you square every sampled voltage point, find the mean (average) of those squares, and then take the square root of that mean. There is no single multiplier constant for distorted waves.
Does the √2 on calculator rule apply to AC current as well as voltage?
Yes. The relationship between RMS and Peak applies to any sinusoidal AC quantity, including current. The formula is Ipeak = Irms × √2. This is critical when sizing fuses or selecting shunt resistors for current sensing. A motor drawing 10Arms will experience peak currents of 14.14A every half-cycle. While thermal breakers respond to the RMS heating effect, magnetic trip elements and semiconductor fuses may react to the instantaneous peak current, making this conversion vital for protective device coordination.
Why does my cheap multimeter read 120V, but my scope shows a different RMS when I use the 2 on calculator?
Cheap multimeters are "average-responding." They actually measure the average absolute value of the rectified AC wave and multiply it internally by 1.11 (the form factor of a sine wave) to display an RMS value. If the grid voltage is slightly clipped or distorted by neighborhood solar inverters, the average-responding meter will display the wrong RMS value. Your oscilloscope, measuring the actual peak and dividing by √2, assumes a perfect sine wave. If the wave is distorted, both the cheap meter and the scope's simple math will be slightly wrong. Only a True-RMS meter will give you the correct heating equivalent under distortion.






