The fundamental power and resistance formula is P = I²R (and its voltage-derived sibling, P = V²/R). These equations define exactly how much thermal energy a resistive component will dissipate when current flows through it or voltage is applied across it. If you are sizing a current shunt, picking a wattage for a dummy load, or just trying to figure out why your 0805 SMD resistor just cracked in half, this is the math that dictates survival on the workbench.
Below, we break down the exact symbols, rearrange the formula for every possible missing variable, walk through two fully tracked numerical problems, and dissect a real-world bench failure where ignoring these math principles resulted in melted fiberglass.
The Core Power and Resistance Formula: Symbols and Rearrangements
Joule’s first law states that the power (heat) generated in a conductor is proportional to the square of the current multiplied by the resistance. To use the formula effectively, you must first lock in the standard SI units. Mixing prefixes (like milliamps or kilohms) directly into the base formula without conversion is the number one cause of calculation errors in electronics.
| Symbol | Parameter | Base SI Unit | Unit Abbreviation |
|---|---|---|---|
| P | Power (Dissipation) | Watts | W |
| I | Current | Amperes | A |
| V | Voltage (Potential Difference) | Volts | V |
| R | Resistance | Ohms | Ω |
Rearranged Forms List
On the bench, you rarely have all four variables. You usually know your supply voltage and your target power limit, or your measured current and your known shunt resistance. Here is the formula rearranged to solve for every single variable:
- Solving for Power: P = I²R | P = V²/R | P = VI
- Solving for Resistance: R = P / I² | R = V² / P
- Solving for Current: I = √(P / R) | I = P / V
- Solving for Voltage: V = √(P × R) | V = P / I
Step-by-Step Solved Problems with Unit Tracking
Abstract formulas are useless without rigorous unit tracking. Here are two distinct scenarios demonstrating how to apply the math while keeping the units explicit at every step.
Problem 1: Sizing a High-Current PCB Shunt Resistor
Scenario: You are designing a battery management system (BMS) and need to measure the pack current using a surface-mount shunt resistor. The maximum continuous current is 15 Amps. You have selected a Vishay Dale WSL2512 shunt with a resistance of 0.005 Ω (5 milliohms). What is the minimum power rating the resistor must have?
- Identify knowns and convert to base units:
I = 15 A (already in base units)
R = 0.005 Ω (already in base units) - Select the correct formula:
Since we know current and resistance, we use P = I²R. - Substitute values with units:
P = (15 A)² × (0.005 Ω) - Calculate the square of the current:
(15 A)² = 225 A² - Multiply by resistance:
P = 225 A² × 0.005 Ω = 1.125 W - Apply engineering derating:
Standard practice dictates running resistors at no more than 50% to 66% of their rated power to prevent thermal drift and PCB pad lifting. Therefore, you need a resistor rated for at least 1.125 W × 2 = 2.25 W. A standard 3W or 5W WSL2512 shunt is required.
Problem 2: Calculating the Draw of a Mains Heating Element
Scenario: You are troubleshooting a 120V AC toaster. The nichrome heating element measures 14.4 Ω on your multimeter. How much power does it dissipate, and what is the expected current draw?
- Identify knowns:
V = 120 V (RMS)
R = 14.4 Ω - Calculate Power (P = V² / R):
P = (120 V)² / 14.4 Ω
P = 14,400 V² / 14.4 Ω = 1000 W (or 1 kW) - Calculate Current (I = √(P / R) or I = V / R):
Using Ohm's Law directly: I = 120 V / 14.4 Ω = 8.33 A.
Verification using power formula: I = √(1000 W / 14.4 Ω) = √(69.44) = 8.33 A. - Conclusion: The element dissipates 1000W and draws 8.33A. This is well within the standard 15A rating of a US kitchen branch circuit, confirming the breaker shouldn't trip under normal operation.
Real-World Bench Failure: The 24V Indicator Light Meltdown
Formulas on paper are clean; components on a bench get hot. Here is a narrative walkthrough of a common junior-engineer mistake that perfectly illustrates why the power and resistance formula must dictate component selection, not just Ohm's law.
The Setup: An automation technician needed to add a green LED indicator to a 24V DC PLC (Programmable Logic Controller) output to visually confirm a valve was opening. The LED specified was a standard 5mm through-hole type with a forward voltage (Vf) of 2.1V and a target continuous forward current of 20mA (0.02A).
The Numbers:
First, find the voltage the resistor must drop: V_resistor = V_supply - V_led = 24V - 2.1V = 21.9V.
Next, use Ohm's law to find the required resistance: R = V / I = 21.9V / 0.02A = 1095 Ω. The technician selected the closest standard E12 value: a 1.1 kΩ (1100 Ω) resistor.
Finally, apply the power and resistance formula to find the dissipation: P = I²R = (0.02A)² × 1100 Ω = 0.0004 × 1100 = 0.44 W.
The Outcome: The technician grabbed a handful of standard 1/4W (0.25W) 1.1kΩ carbon film resistors from the bench drawer, soldered one in series with the LED, and energized the PLC output. The LED lit up brightly for about 15 seconds. Then, the resistor began to smell like burning phenolic resin, the paint blistered, and it eventually failed open-circuit with a quiet pop, killing the indicator light.
What Went Wrong: The technician solved for resistance but completely ignored power dissipation. The circuit forced 0.44W of heat through a component physically rated to dissipate only 0.25W. The component was operating at 176% of its maximum thermal limit. The correct move was to select a 1/2W (0.5W) or 1W resistor, or better yet, use two 2.2kΩ 1/4W resistors in parallel to share the thermal load and increase the surface area for convective cooling.
Assumptions, Edge Cases, and Unit Traps
The power and resistance formula is remarkably robust, but it relies on specific physical assumptions. Violating these assumptions leads to inaccurate predictions and potential hardware damage.
When the Formula Applies (and When It Doesn't)
- DC and Purely Resistive AC: The formulas P = I²R and P = V²/R apply directly to DC circuits. For AC circuits, they apply only if the load is purely resistive (like a nichrome heater or an incandescent bulb) and you are using RMS (Root Mean Square) values for voltage and current. If the load has reactance (inductors, capacitors, motors), you must use P = V × I × cos(θ), where cos(θ) is the power factor.
- The Temperature Coefficient of Resistance (TCR): The formula assumes R is constant. In reality, as a resistor dissipates power, it heats up. For materials like tungsten or nichrome, resistance increases significantly with temperature (positive TCR). A cold toaster element might measure 10Ω, but at operating temperature (glowing red), it might be 14Ω. The initial inrush current will be higher than the steady-state current calculated by the formula.
Unit Mistakes That Break the Math
The most catastrophic calculation errors happen when engineers drop prefixes without adjusting the decimal. Because current is squared in the P = I²R formula, a unit mistake on current is magnified exponentially.
Suppose you have 20mA flowing through a 100Ω resistor.
Correct: P = (0.02 A)² × 100 Ω = 0.0004 × 100 = 0.04 W (40 mW).
Incorrect (forgetting to convert mA to A): P = (20)² × 100 = 400 × 100 = 40,000 W.
Always strip prefixes (milli, micro, kilo) and convert to base SI units (Amps, Ohms, Volts) before plugging numbers into the formula.
Quick Reference: Realistic Magnitudes by Application
Developing an intuition for what a "normal" answer looks like will save you from trusting a calculator when you've made a decimal error. If you are calculating the power dissipation of a signal-line pull-up resistor and your math says 50 Watts, you have made a mistake. Use this reference table to sanity-check your results.
| Application Category | Typical Power Magnitude | Common Component Types |
|---|---|---|
| Signal / Logic Lines (I2C pull-ups, GPIO limits) | 0.1 mW to 10 mW | 0402 / 0603 SMD resistors (1/16W or 1/10W rated) |
| General Purpose / LED Limiting / Bias Networks | 20 mW to 250 mW | 0805 SMD, 1/4W through-hole axial (carbon/metal film) |
| Power Supplies / Snubbers / Current Sense Shunts | 0.5 W to 5 W | 1W to 5W wirewound, thick-film SMD (D2PAK), metal-strip shunts |
| Audio Dummy Loads / Motor Braking / Heaters | 10 W to 100+ W | Aluminum-housed chassis mount, ceramic wirewound, nichrome coils |
For deeper reading on the physics of electrical power dissipation and thermal management, refer to the Direct Current power chapter on All About Circuits or the Electric Power definitions from Georgia State University's HyperPhysics. When selecting specific high-power shunts, always consult manufacturer derating curves, such as those found in the Vishay WSL series datasheet, which dictate how much power the component can safely handle as ambient PCB temperature rises.






