Circuit Analysis – Finding Current and Voltage Through the Circuit

circuit analysishomeworkkirchhoffs-laws

enter image description here

Solve using KVL and KCL and find voltages and currents.

For this I took $$i_1=i_2+i_3$$
$$v_1=2i_1$$
$$v_2=8i_2$$
$$v_3=4i_3$$

The equations I got by assuming loop 1 and loop 2 were $$5i_2 + i_3 = 5$$ and $$-2i_3 + 4i_2 = -3$$

On solving I'm getting \$i_2=0.5\text{ A}\$ and \$i_3=2.5\text{ A}\$ but the answer key says \$i_2=500\text{ mA}\$ and \$i_3=1.25\text{ A}\$.

I don't understand where my mistake is.

Best Answer

\$i_1\$, \$i_2\$ and \$i_3\$ are branch currents, not loop currents. Let's write equations.

eq1 = -10 + 2 i1 + 8 i2 == 0 (KVL loop 1)

eq2 = 4 i3 - 6 - 8 i2 == 0 (KVL loop 2)

Since there are three unknowns, there must be three equations.

eq3 = i1 == i2 + i3 (KCL at top node)

sol = Solve[{eq1, eq2, eq3}, {i1, i2, i3}]

{{i1 -> 3, i2 -> 1/2, i3 -> 5/2}}

Check: {eq1, eq2, eq3} /. sol

{{True, True, True}}

You are right, the answer key is wrong: CONGRATS

Related Topic