The foundational basic electrical formulas that govern nearly all DC and resistive AC circuit design are Ohm's Law (V = I × R) and the Power Law, often called Watt's Law (P = V × I). While you can memorize the standard triangle diagrams, true bench competence requires understanding how these formulas derive from one another, how to track units to prevent catastrophic math errors, and how to sanity-check your results against real-world physical limits. This guide breaks down the algebraic rearrangements, walks through strict unit-tracked calculations, and dissects a real-world component failure caused by ignoring the power variable.
The Core Basic Electrical Formulas and Symbol Definitions
Before manipulating equations, we must define the physical quantities and their strict SI units. The NIST Guide to the SI mandates these base units. Mixing them up is the number one cause of fried components on the hobbyist workbench.
| Symbol | Quantity | SI Unit | Unit Abbreviation | Physical Analogy |
|---|---|---|---|---|
| V (or E) | Voltage (Electromotive Force) | Volts | V | Water pressure in a pipe |
| I | Current | Amperes | A | Flow rate (gallons per minute) |
| R | Resistance | Ohms | Ω | Pipe diameter / friction |
| P | Power | Watts | W | Total work done by the water |
Ohm's Law assumes a linear, ohmic material at a constant temperature. It applies perfectly to standard carbon/metal film resistors and heating elements. It does not apply directly to non-linear components like diodes, LEDs, or transistors without referencing a specific point on their I-V curve. For AC circuits, these basic electrical formulas only hold true for purely resistive loads (like space heaters) using RMS voltage and current values. If inductance or capacitance is present, you must upgrade to impedance (Z) and account for power factor.
Rearranged Forms: Solving for Any Variable
By combining V = I × R and P = V × I, we can derive a matrix of 12 equations. You do not need to memorize all of them if you know basic algebra, but having this reference list saves time when designing voltage dividers or sizing current-limiting resistors.
- To find Voltage (V):
V = I × R | V = P / I | V = √(P × R) - To find Current (I):
I = V / R | I = P / V | I = √(P / R) - To find Resistance (R):
R = V / I | R = P / I² | R = V² / P - To find Power (P):
P = V × I | P = I² × R | P = V² / R
Solved Problems with Strict Unit Tracking
The most common mistake when using basic electrical formulas is dropping units during intermediate steps. If you track the units through the algebra, the math will tell you if your setup is wrong. Here are two bench scenarios with explicit unit cancellation.
Problem 1: Sizing a Current-Limiting Resistor for an LED
Setup: You are driving a standard red LED from a 5V Arduino Nano GPIO pin. The LED has a forward voltage (Vf) of 2.0V and a target continuous forward current (If) of 20mA. What resistor value and power rating do you need?
- Find the voltage drop across the resistor (Vr):
Vr = Vsource - Vf
Vr = 5V - 2.0V = 3.0V - Convert current to base SI units (Amperes):
I = 20mA = 0.020A - Calculate Resistance (R):
R = Vr / I
R = 3.0V / 0.020A = 150 Ω
(Unit check: Volts / Amperes = Ohms. Correct.) - Calculate Power Dissipated (P):
P = Vr × I
P = 3.0V × 0.020A = 0.060W
(Unit check: Volts × Amperes = Watts. Correct.)
Outcome: You need a 150Ω resistor. Since it only dissipates 0.060W, a standard 1/4W (0.25W) through-hole resistor is more than adequate, providing a comfortable safety margin.
Problem 2: Finding the Draw of a 12V Heating Element
Setup: You have a 12V DC caravan heating pad with a measured cold resistance of 4Ω. You want to know if it will trip the 10A blade fuse on your battery distribution block.
- Calculate Current (I):
I = V / R
I = 12V / 4Ω = 3A - Calculate Power (P):
P = V × I
P = 12V × 3A = 36W
Outcome: The steady-state draw is 3A, well under the 10A fuse limit. However, as an experienced maker knows, the cold resistance of a heating element is lower than its hot resistance. The inrush current might spike slightly higher than 3A for the first few milliseconds, but a standard 10A automotive blade fuse will easily tolerate this brief surge without blowing.
Unit Mistakes That Break Your Math (and Your Components)
The formulas themselves never fail; the inputs do. Here are the specific unit traps that destroy hardware:
- The 'Milli' Trap: Datasheets list LED currents and microcontroller GPIO limits in milliamps (mA). If you use 20 instead of 0.020 in the equation R = V / I, your calculated resistance drops by a factor of 1,000. You will calculate a 0.15Ω resistor instead of 150Ω, effectively shorting the GPIO pin to ground and bricking the microcontroller.
- The Kilowatt Confusion: When sizing solar inverters, power is often listed in kW. If you calculate battery current using I = P / V and plug in 2 (for 2kW) instead of 2000, you will size your battery cables for 0.16A instead of 166A. The resulting voltage drop will cause the inverter to brown out, and the undersized wires will melt.
- Time vs. Power (Watts vs. Watt-hours): Power (Watts) is an instantaneous rate. Energy (Watt-hours) is power integrated over time. Basic electrical formulas calculate Watts. To find out how long a 100Ah battery will run a 50W load, you must first find the current (I = 50W / 12V = 4.16A), then divide the battery capacity by the current (100Ah / 4.16A = 24 hours).
Real-World Scenario: The 24V Control Circuit Fire
Let's look at a scenario where the math was partially right, but the physical reality was ignored.
The Setup: A hobbyist is building an automated greenhouse vent system. They have a 24V DC power supply (from a repurposed HVAC transformer and bridge rectifier) and need to power a 12V DC, 0.5A solenoid valve. To drop the excess voltage, they decide to use a series resistor.
The Numbers:
Voltage to drop (Vr) = 24V - 12V = 12V
Target Current (I) = 0.5A
Using the basic electrical formula for resistance:
R = Vr / I = 12V / 0.5A = 24Ω
The builder goes to their parts bin, finds a 24Ω carbon film resistor, and solders it in series with the solenoid.
The Outcome: The moment the relay clicks and the circuit energizes, the 24Ω resistor glows cherry red, the phenolic coating cracks with a sharp snap, and it releases a puff of acrid white smoke. The circuit goes dead.
What Went Wrong: The builder solved for Resistance but completely forgot to solve for Power. Let's run the power formula:
P = Vr × I = 12V × 0.5A = 6W
The resistor in the parts bin was a standard 1/4W (0.25W) component. The builder forced it to dissipate 6 Watts—24 times its maximum physical rating.
Sanity Checking: What a Realistic Answer Magnitude Looks Like
Before you cut wires or order parts, compare your calculated answers against these real-world baselines. If your math produces a number outside these ranges, you likely missed a decimal point or used the wrong formula.
| System Type | Typical Voltage | Realistic Current Range | Red Flag (Check Your Math If...) |
|---|---|---|---|
| Microcontroller GPIO (ESP32/Arduino) | 3.3V or 5V | 5mA to 40mA | Calculated current > 50mA (Pin will burn out) |
| Standard LED Indicator | 1.8V to 3.3V | 10mA to 20mA | Calculated current > 50mA (LED will pop) |
| 12V Automotive / Solar Accessory | 12V to 14.4V | 1A to 30A | Calculated current > 100A (Dead short or wrong unit) |
| 120V US Household Branch Circuit | 120V (RMS) | 1A to 15A (or 20A) | Calculated current > 20A (Breaker will trip immediately) |
| 240V Heavy Appliance (Dryer/Oven) | 240V (RMS) | 15A to 50A | Calculated current > 60A (Requires specialized service) |
For deeper study on how these formulas scale into complex networks, refer to the All About Circuits textbook chapter on Ohm's Law, which covers series and parallel derivations. Ultimately, basic electrical formulas are not just academic exercises; they are the primary diagnostic tool for predicting whether your circuit will function flawlessly or melt into a pile of slag on your workbench. Always track your units, always calculate the power dissipation, and always verify your math against physical component limits before applying power.






