How to solve circuit problems — series, parallel, Wheatstone, Kirchhoff decision tree

medium CBSE JEE-MAIN NEET 3 min read

Question

Given a circuit with multiple resistors and batteries, how do we decide which method to use — series/parallel simplification, Wheatstone bridge, or Kirchhoff’s laws?

(CBSE 10/12 + JEE Main + NEET — high-weightage topic)


Solution — Step by Step

Series: Same current flows through all resistors (connected end-to-end). Req=R1+R2+R_{eq} = R_1 + R_2 + \ldots

Parallel: Same voltage across all resistors (connected between the same two nodes). 1Req=1R1+1R2+\frac{1}{R_{eq}} = \frac{1}{R_1} + \frac{1}{R_2} + \ldots

If the circuit is a combination, simplify step by step — start from the innermost group.

Four resistors arranged in a diamond with a galvanometer across the middle? Check the balance condition:

PQ=RS\frac{P}{Q} = \frac{R}{S}

If balanced, no current flows through the galvanometer — remove it and simplify the remaining series-parallel network.

KCL (Junction Rule): Sum of currents entering a junction = sum leaving. Iin=Iout\sum I_{in} = \sum I_{out}

KVL (Loop Rule): Sum of voltage changes around any closed loop = 0. V=0\sum V = 0

Assign current variables, pick loops, write equations, solve the system.

Once you have ReqR_{eq} or individual currents, use V=IRV = IR to find any required voltage, current, or power (P=I2R=V2/R=VIP = I^2R = V^2/R = VI).

flowchart TD
    A["Given a circuit"] --> B{"Pure series or parallel?"}
    B -- Yes --> C["Simplify using R_eq formulas"]
    B -- No --> D{"Wheatstone bridge pattern?"}
    D -- Yes --> E{"Is P/Q = R/S?"}
    E -- Yes --> F["Remove galvanometer, simplify"]
    E -- No --> G["Use Kirchhoff's laws"]
    D -- No --> H{"Multiple loops or batteries?"}
    H -- Yes --> G
    H -- No --> I["Reduce step by step: inner groups first"]
    G --> J["Write KCL at junctions + KVL for loops"]
    J --> K["Solve simultaneous equations"]
    C --> L["Use V = IR for final answer"]
    F --> L
    K --> L
    I --> L

Why This Works

Series and parallel are the simplest cases because the relationship between voltage and current is straightforward. Wheatstone bridge is a special symmetry that eliminates one branch entirely.

Kirchhoff’s laws are the universal tools — they work for ANY circuit because they come from conservation of charge (KCL) and conservation of energy (KVL). The tradeoff is that they require setting up and solving simultaneous equations, which takes more time.


Alternative Method

For two resistors in parallel, use the shortcut:

Req=R1×R2R1+R2R_{eq} = \frac{R_1 \times R_2}{R_1 + R_2}

This is faster than the reciprocal formula for just two resistors. For nn identical resistors in parallel: Req=R/nR_{eq} = R/n.

In JEE Main, always redraw the circuit neatly before solving. Stretch the circuit so that nodes and connections are clear. Many “complex” circuits are just series-parallel combinations that look confusing because of the way they are drawn.


Common Mistake

Students often confuse series with parallel by looking at the physical layout rather than the electrical connections. Two resistors can look like they are “side by side” on paper but be electrically in series. The test is: do they share the same current (series) or the same voltage across them (parallel)? Trace the current path — if it splits, the branches are parallel; if it flows through both sequentially, they are series.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next