Ohm's Law states that the current flowing through a linear conductor is directly proportional to the voltage applied across it and inversely proportional to its resistance (V = I × R). In a real circuit or installation, altering one of these variables forces a physical reaction in the others: if you push 12V through a 6V-rated coil without adding resistance, the current spikes, the wire overheats, and the insulation melts. While the Class 10 physics curriculum introduces this as a neat mathematical triangle, on the workbench, it is the primary tool you use to prevent components from catching fire and to ensure sensors read accurate data.
The Core Formula and a Real-World Numeric Example
The standard Class 10 physics syllabus teaches the three permutations of the formula:
- Voltage: V = I × R
- Current: I = V / R
- Resistance: R = V / I
Let's move past textbook diagrams and apply this to a common maker scenario: wiring a standard 5mm indicator LED to a 12V automotive system.
Worked Example: 12V Automotive LED Indicator
The Setup: You want to connect a standard red 5mm LED to a car battery.
Known Values:
- Car battery charging voltage (V_source) = 12.6V (always calculate for alternator output, not nominal 12V).
- LED forward voltage (V_f) = 2.1V.
- Desired LED current (I) = 20mA (0.020A).
The Calculation:
First, find the voltage that the resistor must drop:
V_resistor = V_source - V_f = 12.6V - 2.1V = 10.5V
Next, use Ohm's Law to find the required resistance:
R = V_resistor / I = 10.5V / 0.020A = 525Ω
Where You Meet This in Practice (Beyond the Textbook)
Once you leave the classroom, Ohm's Law dictates the physical layout and safety of your builds. Here is where it physically manifests on the bench and jobsite:
1. Voltage Drop in Wire Feeders
Wire is just a low-value resistor. According to NEC-style guidelines, you must account for voltage drop on long runs. A 14 AWG copper wire has a resistance of roughly 2.525Ω per 1,000 feet. If you run 50 feet of 14 AWG wire (100 feet total for line and neutral) to a 10A heater, the wire resistance is 0.2525Ω. Using V = I × R (10A × 0.2525Ω), you lose 2.52V in the wire. On a 120V circuit, that's a 2.1% drop—well within the recommended 3% limit. If you stepped down to 16 AWG wire, the resistance increases, the voltage drop spikes, and the wire acts like a heating element inside your walls.
2. Shunt Resistors for Current Sensing
Microcontrollers like the ESP32 cannot read current directly; they only read voltage. To measure current, we place a precise, low-value 'shunt' resistor in series with the load and measure the voltage drop across it. The popular INA219 breakout board uses a 0.1Ω shunt. If your Arduino reads a 0.05V drop across that shunt, Ohm's Law (I = 0.05V / 0.1Ω) tells you exactly 0.5A (500mA) is flowing through the circuit.
Common Confusions: Ohm's Law vs. Power and Non-Ohmic Devices
Students and beginner hobbyists frequently trip over two major misconceptions when applying V = I × R.
Confusion 1: Mixing Up Ohm's Law and Watt's Law
Ohm's Law (V = I × R) tells you the relationship between voltage, current, and resistance. It does not tell you how much heat a component will generate or how much work a motor will do. That is Watt's Law (Power = Voltage × Current).
The Fix: When sizing a fuse or picking a resistor wattage, you must combine both. Use Ohm's Law to find the current, then use Watt's Law (P = I² × R) to find the heat dissipation.
Confusion 2: Assuming All Components Obey Ohm's Law
Ohm's Law only applies to 'ohmic' devices—components where resistance stays constant regardless of voltage (like standard carbon film resistors or lengths of copper wire). As Georgia State University's HyperPhysics notes, non-ohmic devices like diodes, LEDs, and incandescent light bulbs do not have a linear V-I relationship. An incandescent bulb has very low resistance when cold (causing a massive inrush current) and much higher resistance when the filament is hot. You cannot use simple V=IR to calculate the startup current of a tungsten bulb or the forward bias of a silicon diode.
Decision Tree: Sizing Current-Limiting and Protective Components
Use this decision path when you need to protect a load or interface logic levels. Follow the 'If-Then' logic to arrive at the correct component value.
| Scenario / Goal | Calculation Step (Ohm's Law) | Edge Case / Gotcha | Concrete Component Pick |
|---|---|---|---|
| Driving an Optocoupler (e.g., PC817) from a 5V ESP32 GPIO pin. | V_drop = 5V - 1.2V (V_f). Target I = 5mA. R = 3.8V / 0.005A = 760Ω. |
ESP32 pins can source up to 40mA, but keeping it under 10mA prevents brownouts and chip damage. | 820Ω 1/4W Resistor (Standard E24 value, keeps current safely at ~4.6mA). |
| Sizing a Fuse for a 12V DC automotive relay coil. | Measure coil R (approx 70Ω). I = 12V / 70Ω = 171mA. |
Relay coils are inductors. They draw a tiny bit more current on the initial spike before the magnetic field stabilizes. | 1A or 2A ATO Blade Fuse (Never size a fuse exactly at the calculated running current; allow a 125%+ margin for inrush). |
| Creating a Voltage Divider to read a 12V battery with a 3.3V ADC. | Target V_out = 3.0V. Ratio needed is roughly 1:4. Use R1=30kΩ, R2=10kΩ. |
High resistance limits current draw from the battery, but too high causes ADC read errors due to sampling capacitor charge time. | 30kΩ and 10kΩ 1% Metal Film Resistors (1% tolerance is mandatory for accurate ADC readings). |
Frequently Asked Questions (Class 10 & Bench Level)
What is the SI unit of resistance taught in Class 10?
The SI unit of resistance is the Ohm (Ω), named after Georg Simon Ohm. One ohm is defined as the resistance that allows exactly one ampere of current to flow when one volt of potential difference is applied across it.
Does temperature change the resistance calculated by Ohm's Law?
Yes. Ohm's Law assumes a constant temperature. In reality, most metals have a Positive Temperature Coefficient (PTC)—as they heat up from current flow, their resistance increases. This is why a multimeter reading of a cold motor winding will show a lower resistance than the winding exhibits while running under load.
Can I use Ohm's Law for AC mains circuits?
Yes, but you must swap 'Resistance' (R) for Impedance (Z). In AC circuits with motors, transformers, or capacitors, the magnetic and electric fields create reactance. The formula becomes V = I × Z. For purely resistive AC loads (like a space heater or an incandescent bulb), standard V = I × R still applies perfectly using RMS voltage values.
What is the most common mistake students make with the V=IR triangle?
Forgetting to convert milliamps (mA) to Amperes (A) before calculating. If you divide 5V by 20mA and punch '5 / 20' into your calculator, you get 0.25Ω instead of the correct 250Ω. Always convert mA to base units (0.020A) before doing the math.
For a deeper dive into how these fundamental laws apply to complex DC networks, All About Circuits provides excellent interactive simulations. Master V=IR, and you have the foundation to troubleshoot anything from a broken Arduino sensor to a tripped residential breaker.






