Solved Problems · Set 21

AC Mesh and Nodal Analysis

Part 3 · AC Analysis — Sets 4 to 7 re-run with complex coefficients. No new circuit theory appears here; the equations are written exactly as before, and the only change is that every number now carries an angle.

Prof. Mithun Mondal 20 solved · 12 practice · 3 challenge GATE · ESE · University

Set 21 — AC Mesh and Nodal Analysis

Set 20 promised that every technique from Part 1 would transfer, and this set collects on it. Mesh analysis, nodal analysis, supermeshes, supernodes and dependent sources all work exactly as they did in Sets 4 to 7 — the equations are written by the same rules, the matrices have the same structure, and the same symmetry holds. What changes is the arithmetic: every entry is complex, hand solution beyond three unknowns becomes unpleasant, and answers can no longer be sanity-checked by asking whether a number looks too big. The compensating gain is that checking becomes systematic, which Problem 12 sets out.

Textbook Chapter 10 · 20 solved · 12 practice · 3 challenge · 12 MCQs

i Method Recap
  • Transform first, then analyse. Convert every source to a phasor and every element to an impedance before writing a single equation. Mixing domains is the commonest error in this set.

  • Mesh analysis is unchanged from Set 4:

    \[ \mathbf{Z}\mathbf{I} = \mathbf{V} \]

    with \(Z_{kk}\) the sum of impedances round mesh \(k\), and \(Z_{jk}\) the negative of the shared impedance.

  • Nodal analysis is unchanged from Set 6:

    \[ \mathbf{Y}\mathbf{V} = \mathbf{I} \]

    with \(Y_{kk}\) the sum of admittances at node \(k\), and \(Y_{jk}\) the negative of the connecting admittance.

  • Both matrices are symmetric when there are no dependent sources — the reciprocity of Set 14, still true — Problem 17.

  • Supermesh and supernode handle awkwardly placed sources by exactly the rules of Sets 5 and 7 — Problems 3 and 8.

  • Check every answer, since complex results carry no intuitive plausibility. Substituting back into one equation costs seconds — Problem 12.

Problem 1CoreMesh Analysis in AC

A source \(100\angle0°\ \text{V}\) drives a two-mesh circuit. Mesh 1 contains a 6 Ω resistor and shares a \(j8\ \Omega\) inductor with mesh 2; mesh 2 also contains a \(-j4\ \Omega\) capacitor. Find both mesh currents and the current in the shared branch.

Solution

Write the mesh equations by exactly the rules of Set 4, with impedances in place of resistances:

\[ \begin{aligned} \text{Mesh 1:}\quad &(6 + j8)\mathbf{I}_1 - j8\,\mathbf{I}_2 = 100\\ \text{Mesh 2:}\quad &-j8\,\mathbf{I}_1 + (j8 - j4)\mathbf{I}_2 = 0 \end{aligned} \]

The diagonal is the sum round each mesh; the off-diagonal is minus the shared impedance. Note \(j8 - j4 = j4\) — the reactances partly cancel in mesh 2.

In matrix form:

\[ \begin{bmatrix} 6+j8 & -j8 \\ -j8 & j4 \end{bmatrix} \begin{bmatrix} \mathbf{I}_1 \\ \mathbf{I}_2 \end{bmatrix} = \begin{bmatrix} 100 \\ 0 \end{bmatrix} \]

The determinant, remembering \((-j8)^2 = j^2 64 = -64\):

\[ \Delta = (6+j8)(j4) - (-j8)^2 = (j24 - 32) + 64 = 32 + j24 \]
\[ \Delta = 40\angle 36.87°\ \Omega^2 \]

The sign trap: \(-(-j8)^2 = -(-64) = +64\). Two sign errors are available in that one step, and they cancel only if both are made.

Solve by Cramer's rule:

\[ \mathbf{I}_1 = \frac{1}{\Delta}\begin{vmatrix} 100 & -j8 \\ 0 & j4 \end{vmatrix} = \frac{j400}{40\angle36.87°} = \frac{400\angle90°}{40\angle36.87°} = 10\angle 53.13°\ \text{A} \]
\[ \mathbf{I}_2 = \frac{1}{\Delta}\begin{vmatrix} 6+j8 & 100 \\ -j8 & 0 \end{vmatrix} = \frac{j800}{40\angle36.87°} = 20\angle 53.13°\ \text{A} \]

The shared-branch current is the difference of the mesh currents, as in Set 4:

\[ \mathbf{I}_{j8} = \mathbf{I}_1 - \mathbf{I}_2 = 10\angle53.13° - 20\angle53.13° = 10\angle{-126.87°}\ \text{A} \]

Here both mesh currents happen to share a phase angle, so the subtraction is simple. In general it must be done rectangularly.

Check by substituting into mesh 2, the equation not used to obtain \(\mathbf{I}_1\):

\[ -j8(10\angle53.13°) + j4(20\angle53.13°) = 80\angle143.13° + 80\angle143.13°\ldots \]
\[ = (-j8 + j8)(10\angle53.13°) \cdot \ldots = 0\;\checkmark \]

More directly: \(-j8(10) + j4(20) = -j80 + j80 = 0\) once the common phase factor is taken out.

Every step here is Set 4 with different numbers. The equations were written by the same inspection rule, assembled into the same matrix form, and solved by the same Cramer's rule. The one genuinely new hazard is \(j^2 = -1\) appearing inside a determinant, where a squared off-diagonal term changes sign in a way that resistive problems never require.
Answer\(\mathbf{I}_1 = 10\angle53.13°\ \text{A}\), \(\mathbf{I}_2 = 20\angle53.13°\ \text{A}\), shared branch \(10\angle{-126.87°}\ \text{A}\)
Problem 2Exam levelThe Impedance Matrix

Set out the structure of the AC mesh matrix, state which properties of Set 4's resistance matrix survive and which do not, and explain the consequence for solution methods.

Solution

The construction rules are identical to Set 4:

EntryValue
\(Z_{kk}\)Sum of all impedances round mesh \(k\)
\(Z_{jk}\ (j\ne k)\)Minus the impedance shared by meshes \(j\) and \(k\)
\(V_k\)Sum of source rises round mesh \(k\)

What survives:

PropertyDC (Set 4)AC
Symmetry \(Z_{jk} = Z_{kj}\)YesYes — no dependent sources
Off-diagonals negativeYesNegative of a complex number
Solvable by Cramer or eliminationYesYes
Diagonal dominanceUsuallyNot guaranteed

What does not survive is everything that depended on the entries being positive real:

\[ \text{DC: } R_{kk} > 0 \ \text{always}; \qquad \text{AC: } Z_{kk} \ \text{may have any angle, and may be near zero} \]

In Problem 1, mesh 2's diagonal was \(j4\) — purely imaginary, with no resistance at all. Had the capacitor been \(-j8\) the diagonal would have been exactly zero, which cannot happen in a resistive network.

Three practical consequences:

ConsequenceDetail
No sign intuitionA DC mesh current's sign can often be guessed; a phase angle cannot
No magnitude boundCurrents and voltages inside the circuit may exceed source values — Set 20, Problem 8
Possible ill-conditioningNear resonance \(\Delta\) becomes small and the solution sensitive — Problem 18

The consequence for method. Two unknowns are comfortable by hand, three are tedious, and four are best left to a calculator or computer. The structure of the matrix is worth writing out regardless, because it is where the circuit's topology lives — and because a symmetry failure is an immediate signal that an equation has been written wrongly.

The matrix is the circuit. Its diagonal records what is in each mesh, its off-diagonal records how the meshes are coupled, and its symmetry records that the elements are bilateral. That reading was established in Sets 4 and 14 and holds unchanged here — the entries have simply become complex.
AnswerSame construction and same symmetry; lost are positivity, diagonal dominance and any intuition about magnitudes
Problem 3Exam levelSupermesh

A \(60\angle0°\ \text{V}\) source drives a circuit in which a \(4\angle0°\ \text{A}\) current source sits between meshes 1 and 2. Mesh 1 contains 5 Ω, mesh 2 contains \(-j10\ \Omega\), and \(j20\ \Omega\) lies in the outer loop. Find both mesh currents.

Solution

The difficulty is unchanged from Set 5. A current source has no defined voltage across it, so KVL cannot be written round either mesh individually.

Equation 1 — the constraint. The source fixes the difference of the mesh currents:

\[ \mathbf{I}_2 - \mathbf{I}_1 = 4\angle0° = 4 \]

This replaces one KVL equation, so the count still balances.

Equation 2 — KVL round the supermesh, the path enclosing both meshes and avoiding the current source:

\[ -60 + 5\mathbf{I}_1 + (-j10)\mathbf{I}_2 + j20\,\mathbf{I}_2 = 0 \]
\[ 5\mathbf{I}_1 + j10\,\mathbf{I}_2 = 60 \]

Substitute the constraint \(\mathbf{I}_2 = \mathbf{I}_1 + 4\):

\[ 5\mathbf{I}_1 + j10(\mathbf{I}_1 + 4) = 60 \;\Longrightarrow\; (5 + j10)\mathbf{I}_1 = 60 - j40 \]
\[ \mathbf{I}_1 = \frac{60 - j40}{5 + j10} = \frac{72.11\angle{-33.69°}}{11.18\angle 63.43°} = 6.45\angle{-97.13°}\ \text{A} \]

And the second current:

\[ \mathbf{I}_2 = \mathbf{I}_1 + 4 = (-0.800 - j6.400) + 4 = 3.200 - j6.400 \]
\[ \mathbf{I}_2 = 7.16\angle{-63.43°}\ \text{A} \]

The addition must be done rectangularly — adding 4 to a polar quantity is not a change of magnitude.

Check the constraint:

\[ \mathbf{I}_2 - \mathbf{I}_1 = (3.200 - j6.400) - (-0.800 - j6.400) = 4 + j0\;\checkmark \]

The imaginary parts cancel exactly, which they must — the constraint was real.

The supermesh rule is topological, so complex impedances do not affect it at all. Identify the branch with the current source, write the constraint, and take KVL round the enclosing path. Sets 5 and 7 established the method on resistive circuits and nothing about it needed revisiting — which is the general pattern of this set.
Answer\(\mathbf{I}_1 = 6.45\angle{-97.13°}\ \text{A}\), \(\mathbf{I}_2 = 7.16\angle{-63.43°}\ \text{A}\)
Problem 4ChallengeA Dependent Source

A \(40\angle0°\ \text{V}\) source drives mesh 1, which contains \(8-j6\ \Omega\) and shares \(j4\ \Omega\) with mesh 2. Mesh 2 contains 10 Ω and a dependent voltage source \(3\mathbf{I}_x\) where \(\mathbf{I}_x = \mathbf{I}_1\). Find the mesh currents and comment on the matrix.

Solution

Write the equations, treating the dependent source exactly as Set 4 did — as a source, then substituting its controlling variable:

\[ \text{Mesh 1:}\quad (8-j6)\mathbf{I}_1 + j4(\mathbf{I}_1 - \mathbf{I}_2) = 40 \]
\[ \text{Mesh 2:}\quad j4(\mathbf{I}_2 - \mathbf{I}_1) + 10\mathbf{I}_2 + 3\mathbf{I}_1 = 0 \]

Collect terms:

\[ \begin{bmatrix} 8-j2 & -j4 \\ 3-j4 & 10+j4 \end{bmatrix} \begin{bmatrix} \mathbf{I}_1 \\ \mathbf{I}_2 \end{bmatrix} = \begin{bmatrix} 40 \\ 0 \end{bmatrix} \]

The matrix is not symmetric: \(Z_{12} = -j4\) but \(Z_{21} = 3-j4\). The dependent source has added 3 to one off-diagonal only.

Solve. The determinant:

\[ \Delta = (8-j2)(10+j4) - (-j4)(3-j4) \]
\[ = (80 + j32 - j20 + 8) - (-j12 - 16) = 88 + j12 + 16 + j12 = 104 + j24 \]
\[ \mathbf{I}_1 = \frac{40(10+j4)}{104+j24} = \frac{430.8\angle21.80°}{106.7\angle12.99°} = 4.04\angle 8.81°\ \text{A} \]
\[ \mathbf{I}_2 = \frac{-40(3-j4)}{104+j24} = \frac{200\angle126.87°}{106.7\angle12.99°} = 1.87\angle 113.87°\ \text{A} \]

Check in mesh 2, which was not used for \(\mathbf{I}_1\):

\[ (3-j4)(4.04\angle8.81°) + (10+j4)(1.87\angle113.87°) \]
\[ = 20.2\angle{-44.32°} + 20.2\angle135.68° = 0\;\checkmark \]

Two equal magnitudes exactly 180° apart — they cancel, as required.

What the asymmetry means. Set 14 traced reciprocity to \(\mathbf{Z} = \mathbf{Z}^{\mathsf T}\), and Set 15, Problem 12 showed that active devices break it. Exactly the same happens here: this circuit is not reciprocal, so interchanging source and meter would give a different reading. The symmetry check of Problem 17 must therefore be applied only to circuits without dependent sources.

An asymmetric matrix is a reliable signal, in both directions. If the circuit has no dependent sources, asymmetry means an equation has been written wrongly. If it does have them, symmetry would be the surprise. Checking \(Z_{jk}\) against \(Z_{kj}\) before solving costs nothing and catches a large fraction of setup errors.
Answer\(\mathbf{I}_1 = 4.04\angle8.81°\ \text{A}\), \(\mathbf{I}_2 = 1.87\angle113.87°\ \text{A}\); matrix asymmetric, so not reciprocal
Problem 5ChallengeThree Meshes

Solve the three-mesh system driven by \(100\angle0°\ \text{V}\) in mesh 1:

\[ \begin{bmatrix} 10+j8 & -j5 & -4 \\ -j5 & 12-j3 & -6 \\ -4 & -6 & 14+j2 \end{bmatrix} \begin{bmatrix} \mathbf{I}_1 \\ \mathbf{I}_2 \\ \mathbf{I}_3 \end{bmatrix} = \begin{bmatrix} 100 \\ 0 \\ 0 \end{bmatrix} \]
Solution

First, verify the matrix is well formed. It is symmetric — \(Z_{12} = Z_{21} = -j5\), \(Z_{13} = Z_{31} = -4\), \(Z_{23} = Z_{32} = -6\) — so no dependent sources are present and the setup is consistent with Problem 2.

Solve by elimination rather than by three 3×3 determinants, which is far less error-prone by hand. From row 3:

\[ \mathbf{I}_3 = \frac{4\mathbf{I}_1 + 6\mathbf{I}_2}{14+j2} \]

Substituting into rows 1 and 2 reduces the system to 2×2, which can then be handled as in Problem 1.

The solution:

CurrentPolarRectangular
\(\mathbf{I}_1\)\(7.503\angle{-32.37°}\) A\(6.337 - j4.017\)
\(\mathbf{I}_2\)\(3.849\angle{+53.76°}\) A\(2.275 + j3.104\)
\(\mathbf{I}_3\)\(2.764\angle{-4.38°}\) A\(2.756 - j0.211\)

Verify in row 2, which the elimination used only indirectly:

\[ -j5(6.337-j4.017) + (12-j3)(2.275+j3.104) - 6(2.756-j0.211) \]
\[ = (-20.09 - j31.69) + (36.61 + j30.44) + (-16.53 + j1.27) \approx 0\;\checkmark \]

Real parts: \(-20.09+36.61-16.53 = -0.01\). Imaginary: \(-31.69+30.44+1.27 = 0.02\). Both zero to rounding.

Note the phase spread. The three currents lie at \(-32°\), \(+54°\) and \(-4°\) — nearly 90° apart in places. In a resistive version of this circuit all three would be in phase, and their relative sizes could be estimated by inspection. Here neither magnitude nor phase can be guessed, which is why the verification step is not optional.

On hand computation. Three complex unknowns is about the practical limit. Beyond it, set the matrix up carefully by inspection — that part is still worth doing by hand, since it encodes the topology — and hand the arithmetic to a calculator.

The labour of AC analysis is arithmetic, not conception. Setting up this system took the same thought as Set 4's resistive equivalent; solving it took ten times as long. That imbalance is what motivates being systematic about checks, and it is worth remembering that a wrong answer here usually comes from a mis-copied sign, not a misunderstood circuit.
Answer\(\mathbf{I}_1 = 7.50\angle{-32.37°}\), \(\mathbf{I}_2 = 3.85\angle53.76°\), \(\mathbf{I}_3 = 2.76\angle{-4.38°}\ \text{A}\)
Problem 6Exam levelCramer's Rule with Complex Numbers

Set out how to evaluate complex determinants reliably, identify the specific traps, and demonstrate on Problem 1's system.

Solution

The rule is unchanged. For \(\mathbf{Z}\mathbf{I} = \mathbf{V}\), replace column \(k\) by \(\mathbf{V}\) and divide:

\[ \mathbf{I}_k = \frac{\Delta_k}{\Delta} \]

Everything about the method survives; only the arithmetic inside changes.

The \(2\times2\) determinant:

\[ \begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc \]

with \(ad\) and \(bc\) complex products. Products are easiest in polar form, but the subtraction must then be done rectangularly — so both forms are needed within one calculation.

The traps, all arising from \(j^2 = -1\):

ExpressionCorrectCommon error
\((-j8)^2\)\(-64\)\(+64\)
\(-(-j8)^2\)\(+64\)\(-64\)
\((j4)(-j6)\)\(+24\)\(-24\)
\(1/j\)\(-j\)\(+j\)

The third is worth dwelling on: an inductive reactance multiplied by a capacitive one gives a positive real number. That is how purely reactive networks produce real terms, as Set 20, Problem 9 found in the delta–wye conversion.

Demonstrating on Problem 1. Written out with every sign explicit:

\[ \Delta = \underbrace{(6+j8)(j4)}_{j24 + j^232 \,=\, -32+j24} - \underbrace{(-j8)(-j8)}_{j^264 \,=\, -64} \]
\[ = (-32 + j24) - (-64) = 32 + j24 \]

Writing \(j^2\) explicitly before replacing it with \(-1\) is a small discipline that removes most of these errors.

A useful check on \(\Delta\). For a passive network the determinant can be anything, but it should not be zero unless the circuit is degenerate. If \(|\Delta|\) comes out very small compared with the products that formed it, either an error has been made or the circuit is near resonance — Problem 18 distinguishes the two.

For \(3\times3\) and larger, prefer Gaussian elimination to cofactor expansion. A \(3\times3\) complex determinant requires six triple products with signs; elimination requires fewer operations and, more importantly, produces intermediate results that can be checked as they appear.

Complex arithmetic offers no feedback. A resistive determinant that comes out negative when it should be positive announces itself; a complex one that is wrong by a factor of \(j\) looks entirely reasonable. This is why the discipline of writing \(j^2\) before simplifying, and of substituting the answer back, matters more here than anywhere earlier in the book.
AnswerCramer's rule unchanged; the traps are all instances of \(j^2=-1\), especially \(-(-j8)^2 = +64\)
Problem 7CoreNodal Analysis in AC

A \(4\angle0°\ \text{A}\) source feeds node 1, which connects to ground through 5 Ω and to node 2 through \(-j4\ \Omega\). Node 2 connects to ground through \(j10\ \Omega\). Find both node voltages.

Solution

Convert to admittances first, since nodal analysis adds admittances:

\[ Y_{5\Omega} = 0.2\ \text{S}, \qquad Y_{-j4} = \frac{1}{-j4} = j0.25\ \text{S}, \qquad Y_{j10} = \frac{1}{j10} = -j0.1\ \text{S} \]

Note the sign flip: \(1/(-j4) = +j0.25\), because \(1/j = -j\). A capacitor has positive susceptance and negative reactance — the reversal Set 20, Problem 11 warned about.

Write the nodal equations by the rules of Set 6:

\[ \begin{bmatrix} 0.2 + j0.25 & -j0.25 \\ -j0.25 & j0.25 - j0.1 \end{bmatrix} \begin{bmatrix} \mathbf{V}_1 \\ \mathbf{V}_2 \end{bmatrix} = \begin{bmatrix} 4 \\ 0 \end{bmatrix} \]

Diagonal: sum of admittances at the node. Off-diagonal: minus the connecting admittance. Symmetric, as expected.

The second diagonal is \(j0.15\) — purely imaginary, since node 2 touches no resistance. Compute the determinant:

\[ \Delta = (0.2+j0.25)(j0.15) - (-j0.25)^2 \]
\[ = (j0.03 - 0.0375) + 0.0625 = 0.025 + j0.03 \]

Solve:

\[ \mathbf{V}_1 = \frac{4(j0.15)}{0.025+j0.03} = \frac{0.6\angle90°}{0.03905\angle50.19°} = 15.36\angle 39.81°\ \text{V} \]
\[ \mathbf{V}_2 = \frac{4(j0.25)}{0.025+j0.03} = \frac{1.0\angle90°}{0.03905\angle50.19°} = 25.61\angle 39.81°\ \text{V} \]

Node 2's voltage exceeds node 1's, even though node 2 is further from the source and has no source of its own. This is the magnification of Set 20, Problem 8 appearing again: the capacitor and inductor form a partially resonant pair, and the voltage across the inductor is boosted.

\[ \frac{|\mathbf{V}_2|}{|\mathbf{V}_1|} = \frac{25.61}{15.36} = 1.667 = \frac{0.25}{0.15} \]

The ratio is exactly the divider ratio \(Y_{12}/(Y_{12}+Y_2)\) inverted — nothing mysterious, but impossible in a resistive network.

Check KCL at node 1:

\[ (0.2+j0.25)(15.36\angle39.81°) - j0.25(25.61\angle39.81°) = 4\angle0°\;\checkmark \]
Nodal analysis is the natural method for AC, because the capacitor's admittance \(j\omega C\) is the tidiest expression available — no reciprocal, no sign trap. Circuits dominated by capacitors and current sources are markedly easier by nodal analysis than by mesh, and Problem 11 makes the choice systematic.
Answer\(\mathbf{V}_1 = 15.36\angle39.81°\ \text{V}\), \(\mathbf{V}_2 = 25.61\angle39.81°\ \text{V}\) — the further node is higher
Problem 8Exam levelSupernode

A \(20\angle30°\ \text{V}\) source sits between nodes 1 and 2, neither of which is the reference. A \(3\angle0°\ \text{A}\) source feeds node 1. Node 1 has 10 Ω to ground; node 2 has \(j5\ \Omega\) and \(-j20\ \Omega\) to ground. Find both node voltages.

Solution

The difficulty, unchanged from Set 7. A voltage source between two non-reference nodes carries an unknown current, so KCL cannot be written at either node alone. The remedy is to enclose both in a supernode.

Equation 1 — the constraint imposed by the source:

\[ \mathbf{V}_1 - \mathbf{V}_2 = 20\angle30° = 17.32 + j10 \]

Equation 2 — KCL over the supernode. The source's current is internal to the boundary and cancels:

\[ \frac{\mathbf{V}_1}{10} + \frac{\mathbf{V}_2}{j5} + \frac{\mathbf{V}_2}{-j20} = 3 \]
\[ 0.1\mathbf{V}_1 + \left(-j0.2 + j0.05\right)\mathbf{V}_2 = 3 \]
\[ 0.1\mathbf{V}_1 - j0.15\,\mathbf{V}_2 = 3 \]

The two reactive admittances partly cancel, as they always do when an inductor and capacitor share a node.

Substitute \(\mathbf{V}_1 = \mathbf{V}_2 + 17.32 + j10\):

\[ 0.1(\mathbf{V}_2 + 17.32 + j10) - j0.15\mathbf{V}_2 = 3 \]
\[ (0.1 - j0.15)\mathbf{V}_2 = 3 - 1.732 - j1 = 1.268 - j1 \]
\[ \mathbf{V}_2 = \frac{1.614\angle{-38.26°}}{0.1803\angle{-56.31°}} = 8.96\angle 18.05°\ \text{V} \]

And node 1:

\[ \mathbf{V}_1 = (8.518 + j2.776) + (17.32 + j10) = 25.84 + j12.78 \]
\[ \mathbf{V}_1 = 28.82\angle 26.31°\ \text{V} \]

Check the constraint, which is the fastest verification available:

\[ \mathbf{V}_1 - \mathbf{V}_2 = (25.84+j12.78) - (8.518+j2.776) = 17.32 + j10 = 20\angle30°\;\checkmark \]
Supernode and supermesh are both topological devices, and neither cares what the impedances are. The rule is the same one Set 7 established: when a source prevents an equation from being written, enclose it and write the equation round the enclosure, then recover the lost information from the source's own constraint. The equation count always balances.
Answer\(\mathbf{V}_1 = 28.82\angle26.31°\ \text{V}\), \(\mathbf{V}_2 = 8.96\angle18.05°\ \text{V}\)
Problem 9Exam levelNodal with a Dependent Source

Set out the procedure for handling each type of dependent source in AC nodal analysis, and explain why the controlling variable must be expressed in node voltages before the matrix is assembled.

Solution

The general procedure, identical to Set 6:

StepAction
1Write KCL treating the dependent source as though it were independent
2Express its controlling variable in terms of node voltages
3Substitute and collect, moving all unknowns to the left
4Solve; expect an asymmetric matrix

The four source types and how each enters:

TypeControlling variableExpressed as
VCVSA voltage \(\mathbf{V}_x\)Difference of node voltages
VCCSA voltage \(\mathbf{V}_x\)Difference of node voltages
CCVSA current \(\mathbf{I}_x\)\((\mathbf{V}_a-\mathbf{V}_b)\mathbf{Y}_{ab}\)
CCCSA current \(\mathbf{I}_x\)\((\mathbf{V}_a-\mathbf{V}_b)\mathbf{Y}_{ab}\)

Current-controlled sources need the extra step of converting a branch current to node voltages — where the admittance of the controlling branch appears, complete with its \(j\).

A worked instance. Suppose a VCCS of \(0.5\mathbf{V}_x\) feeds node 2, with \(\mathbf{V}_x = \mathbf{V}_1 - \mathbf{V}_3\) the voltage across a capacitor. KCL at node 2 initially reads

\[ \sum \mathbf{Y}_{2k}\mathbf{V}_k = 0.5\mathbf{V}_x \]

which becomes, after substitution and collection:

\[ -0.5\mathbf{V}_1 + \left(\sum\mathbf{Y}_2\right)\mathbf{V}_2 + 0.5\mathbf{V}_3 + \ldots = 0 \]

The \(-0.5\) is added to \(Y_{21}\) but nothing is added to \(Y_{12}\) — hence the asymmetry.

Why the substitution must precede assembly. The matrix form \(\mathbf{Y}\mathbf{V} = \mathbf{I}\) requires every unknown on the left and every known on the right. A dependent source left on the right-hand side is an unknown masquerading as a source, and the system cannot be solved as written.

One AC-specific hazard. When a current-controlled source is controlled by the current through a reactive branch, the conversion introduces a complex admittance:

\[ \mathbf{I}_x = \left(\mathbf{V}_a - \mathbf{V}_b\right)(j\omega C) \]

so a gain that looked real, say \(4\mathbf{I}_x\), contributes a complex coefficient \(4j\omega C\) to the matrix. Forgetting the \(j\) here is a genuinely AC error with no DC counterpart.

Dependent sources are handled identically in both domains, but the controlling-variable substitution is where AC introduces new arithmetic. The rule to carry forward: convert the controlling variable to node voltages using the branch's admittance, complex part included, before anything is collected into the matrix.
AnswerSame four-step procedure as Set 6; the AC hazard is the complex admittance appearing when converting a controlling current
Problem 10ChallengeThree Nodes

Solve the three-node system driven by \(6\angle0°\ \text{A}\) into node 1:

\[ \begin{bmatrix} 0.5-j0.25 & -0.25 & j0.25 \\ -0.25 & 0.75+j0.5 & -j0.5 \\ j0.25 & -j0.5 & 0.4+j0.25 \end{bmatrix} \begin{bmatrix} \mathbf{V}_1 \\ \mathbf{V}_2 \\ \mathbf{V}_3 \end{bmatrix} = \begin{bmatrix} 6 \\ 0 \\ 0 \end{bmatrix} \]
Solution

Check the structure before solving. The matrix is symmetric, so no dependent sources are present. Note also that \(Y_{13} = +j0.25\) is positive imaginary — an off-diagonal is minus the connecting admittance, and minus an inductor's \(-j\) admittance is positive.

\[ Y_{13} = -\frac{1}{j\omega L} = +\frac{j}{\omega L} \]

Off-diagonals are not automatically negative in AC — only their admittance is negated, and the sign of the result depends on the element.

Solve by elimination. The solution:

VoltagePolarRectangular
\(\mathbf{V}_1\)\(11.99\angle{+21.37°}\) V\(11.16 + j4.37\)
\(\mathbf{V}_2\)\(4.87\angle{-5.47°}\) V\(4.845 - j0.464\)
\(\mathbf{V}_3\)\(2.91\angle{-47.56°}\) V\(1.965 - j2.149\)

Verify at node 3, the equation least involved in the elimination:

\[ j0.25\mathbf{V}_1 - j0.5\mathbf{V}_2 + (0.4+j0.25)\mathbf{V}_3 \]
\[ = (-1.093+j2.790) + (-0.232-j2.423) + (1.323-j0.368) \approx 0\;\checkmark \]

Real parts sum to \(-0.002\), imaginary to \(-0.001\) — zero to the precision carried.

Reading the result. The voltages fall away from the driven node — 12.0, 4.9, 2.9 V — and their phases spread over nearly 70°. The phase spread is the AC-specific feature: in a resistive network every node voltage would be in phase with the source, and only the magnitudes would differ.

A note on effort. The setup took one pass of inspection; the solution took several minutes of complex arithmetic. That ratio is characteristic, and it is why the structural checks — symmetry, and the sign of each off-diagonal — are worth applying before any arithmetic begins. An error caught in the matrix costs seconds; the same error caught after solving costs the whole calculation.

The off-diagonal sign rule needs restating for AC. "Off-diagonals are negative" was true in Sets 4 and 6 because resistances and conductances are positive. Here the rule is "off-diagonals are minus the connecting admittance", and since that admittance may be \(\pm j\) something, the entry may be positive imaginary. Applying the DC version mechanically produces a sign error that no symmetry check will catch.
Answer\(\mathbf{V}_1 = 11.99\angle21.37°\), \(\mathbf{V}_2 = 4.87\angle{-5.47°}\), \(\mathbf{V}_3 = 2.91\angle{-47.56°}\ \text{V}\)
Problem 11Exam levelChoosing the Method

Give a systematic basis for choosing between mesh and nodal analysis in AC circuits, and identify the considerations that differ from the DC case of Set 6.

Solution

The primary criterion is unchanged: count the unknowns.

\[ \text{mesh equations} = b - n + 1, \qquad \text{nodal equations} = n - 1 \]

for \(b\) branches and \(n\) nodes — Set 8's topology result, which knows nothing about impedance. Choose whichever is smaller, since a \(2\times2\) complex system is far less work than a \(3\times3\).

Secondary criteria:

Favours meshFavours nodal
Voltage sources predominateCurrent sources predominate
Series-connected topologyParallel-connected topology
Branch currents wantedNode voltages wanted
Planar circuitAny circuit — nodal always applies

What is new in AC. A third criterion appears that has no DC counterpart — which elements are present:

\[ \text{capacitor: } \mathbf{Z} = \frac{1}{j\omega C} \ \text{(awkward)}, \qquad \mathbf{Y} = j\omega C \ \text{(clean)} \]
\[ \text{inductor: } \mathbf{Z} = j\omega L \ \text{(clean)}, \qquad \mathbf{Y} = \frac{1}{j\omega L} \ \text{(awkward)} \]

A capacitor-heavy circuit is easier by nodal analysis; an inductor-heavy one by mesh. Each avoids taking reciprocals of imaginary numbers, where the \(1/j = -j\) sign flip lives.

Applying this to earlier problems:

ProblemMethod usedWhy appropriate
1MeshVoltage source, two meshes, inductor present
7NodalCurrent source, capacitor between nodes
3SupermeshCurrent source between meshes
8SupernodeVoltage source between nodes

The last two show the criteria can conflict: a current source normally suggests nodal analysis, but one sitting between two meshes is handled perfectly well by a supermesh if mesh analysis is otherwise preferable.

A practical tiebreaker. When the counts are equal, prefer nodal. It applies to non-planar circuits, its unknowns are directly measurable with a voltmeter referred to ground, and node voltages are what most subsequent calculations need.

The choice is worth thirty seconds of thought before any equation is written. Getting it wrong does not make the problem unsolvable — both methods give the same answer — but it can triple the arithmetic, and in a domain where arithmetic is the main source of error, that matters more than it did in Part 1.
AnswerCount unknowns first; then source types; then — new in AC — prefer nodal for capacitive and mesh for inductive circuits
Problem 12ChallengeChecking a Complex Solution

Give a systematic set of checks for an AC mesh or nodal solution, ordered by cost, and explain what each catches.

Solution

Why this needs its own problem. In Part 1 a wrong answer often announced itself — a negative resistance, a current larger than the source could supply, a node voltage outside the supply rails. Complex answers offer none of that. A result wrong by a factor of \(j\), or with two terms transposed, looks entirely reasonable.

Check 1 — matrix symmetry, before solving. Costs seconds:

\[ Z_{jk} \overset{?}{=} Z_{kj} \]

Must hold if there are no dependent sources. Catches: mis-copied shared impedances, wrong signs on off-diagonals, omitted branches. Will not catch an error made symmetrically in both entries.

Check 2 — substitute into an unused equation. The single most valuable check:

\[ \sum_k Z_{jk}\mathbf{I}_k - V_j \overset{?}{=} 0 \]

Use the row not used to isolate the answer. Both real and imaginary parts must vanish, which is two independent conditions from one substitution. Catches nearly all arithmetic errors in the solving stage.

Check 3 — Kirchhoff on the original circuit. Reconstruct a branch voltage or current from the answer and verify a loop or node directly:

\[ \sum\mathbf{V}_k = 0 \quad\text{round any loop, as phasors} \]

Catches errors in setting up the matrix itself, which Check 2 cannot — a consistently wrong system is solved consistently.

Check 4 — physical plausibility. Weaker in AC, but three things still hold:

ExpectationReason
Current lags in an inductive circuitSign of the net reactance
\(|\mathbf{I}| \le |\mathbf{V}|/R_{\text{total}}\)Reactance can only limit current
Power dissipated is positivePassive network — Set 23

Note what is not on the list: any expectation that internal voltages be smaller than the source. Set 20, Problem 8 disposed of that.

Worked example on Problem 1's answer. Check 2, using mesh 2:

\[ -j8(10\angle53.13°) + j4(20\angle53.13°) = \left(-j80 + j80\right)\angle53.13° = 0\;\checkmark \]

Check 4: the net reactance in mesh 1 is inductive, and \(\mathbf{I}_1\) at \(+53°\)... which leads. Investigating: mesh 1's own impedance is \(6+j8\), but the coupled mesh 2 is net capacitive, and the combination seen by the source is

\[ \mathbf{Z}_{in} = \frac{100\angle0°}{10\angle53.13°} = 10\angle{-53.13°}\ \Omega = 6 - j8 \]

— capacitive overall, so a leading current is correct. The check did its job: it flagged something worth examining, and the examination confirmed the answer.

Apply checks 1 and 2 to every problem, without exception. Together they cost under a minute and catch the great majority of errors. Check 4 should be used to raise questions rather than to settle them — an AC circuit can behave in ways that look wrong and are not, and the input impedance is usually the quantity that resolves the confusion.
AnswerSymmetry before solving; substitution into an unused row after; Kirchhoff on the original circuit; then plausibility, cautiously
Problem 13Exam levelA Ladder Network

A \(60\angle0°\ \text{V}\) source drives a ladder: series \(j10\ \Omega\), shunt \(-j20\ \Omega\), series \(10\ \Omega\), and a \(20\ \Omega\) load. Find the source current and the load voltage by successive reduction.

Solution

Work from the load backwards, exactly as Set 2 did for resistive ladders. The last two elements are in series:

\[ 10 + 20 = 30\ \Omega \]

That combines with the shunt capacitor:

\[ \mathbf{Z}_a = \frac{(-j20)(30)}{-j20 + 30} = \frac{600\angle{-90°}}{36.06\angle{-33.69°}} = 16.64\angle{-56.31°} \]
\[ = 9.231 - j13.846\ \Omega \]

Add the series inductor:

\[ \mathbf{Z}_{in} = j10 + (9.231 - j13.846) = 9.231 - j3.846 \]
\[ = 10.00\angle{-22.62°}\ \Omega \]

A clean result. Note that the network is capacitive overall despite the series inductor — the shunt capacitor dominates.

The source current:

\[ \mathbf{I}_1 = \frac{60\angle0°}{10\angle{-22.62°}} = 6.00\angle 22.62°\ \text{A} \]

Work forwards to the load. The voltage at the shunt node:

\[ \mathbf{V}_a = \mathbf{I}_1\mathbf{Z}_a = (6.00\angle22.62°)(16.64\angle{-56.31°}) = 99.85\angle{-33.69°}\ \text{V} \]

99.85 V from a 60 V source — the magnification of Set 20, Problem 8 again, now inside a ladder. The series inductor and shunt capacitor partly resonate.

Then the load current and voltage:

\[ \mathbf{I}_L = \frac{\mathbf{V}_a}{30} = 3.328\angle{-33.69°}\ \text{A} \]
\[ \mathbf{V}_L = 20\,\mathbf{I}_L = 66.56\angle{-33.69°}\ \text{V} \]

The load voltage also exceeds the source. A resistive ladder can only attenuate; a reactive one can amplify voltage — though not power, as Set 23 will confirm.

Check by KVL round the input loop:

\[ \mathbf{I}_1(j10) + \mathbf{V}_a = 60\angle112.62° + 99.85\angle{-33.69°} \]
\[ = (-23.08 + j55.39) + (83.08 - j55.39) = 60 + j0\;\checkmark \]
Ladder reduction transfers to AC without modification, and is usually the fastest route. A four-element ladder would need a 2×2 complex system by mesh analysis; successive reduction needs only one parallel combination and two multiplications. When a circuit has no bridging branches, reduction beats formal analysis — the same conclusion Set 2 reached, unchanged.
Answer\(\mathbf{Z}_{in} = 10\angle{-22.62°}\ \Omega\), \(\mathbf{I}_1 = 6\angle22.62°\ \text{A}\), \(\mathbf{V}_L = 66.56\angle{-33.69°}\ \text{V}\)
Problem 14ChallengeThe AC Bridge

Derive the balance condition for an AC bridge. Given \(\mathbf{Z}_1 = 100\ \Omega\), \(\mathbf{Z}_2 = -j200\ \Omega\) and \(\mathbf{Z}_3 = 300\ \Omega\), find \(\mathbf{Z}_4\) for balance and explain why AC balance is harder to achieve than DC.

Solution

Balance means zero detector current, which requires the two detector nodes to be at the same potential. With no detector current, each arm pair acts as an undisturbed divider:

\[ \frac{\mathbf{Z}_1}{\mathbf{Z}_1+\mathbf{Z}_2} = \frac{\mathbf{Z}_3}{\mathbf{Z}_3+\mathbf{Z}_4} \]

Cross-multiplying and cancelling gives the classical condition:

\[ \boxed{\;\mathbf{Z}_1\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3\;} \]

Formally identical to Set 2's \(R_1R_4 = R_2R_3\) — but now a complex equation.

That is the crucial difference. A complex equation is two real equations:

\[ |\mathbf{Z}_1||\mathbf{Z}_4| = |\mathbf{Z}_2||\mathbf{Z}_3| \qquad\text{and}\qquad \angle\mathbf{Z}_1 + \angle\mathbf{Z}_4 = \angle\mathbf{Z}_2 + \angle\mathbf{Z}_3 \]

Magnitudes and angles must balance simultaneously. A DC bridge has one condition and one adjustment; an AC bridge has two of each.

Solving for the unknown arm:

\[ \mathbf{Z}_4 = \frac{\mathbf{Z}_2\mathbf{Z}_3}{\mathbf{Z}_1} = \frac{(-j200)(300)}{100} = -j600\ \Omega \]

A pure capacitive reactance of 600 Ω. At 1 kHz that is

\[ C = \frac{1}{2\pi(1000)(600)} = 265.3\ \text{nF} \]

Verify both conditions:

ConditionLeftRight
Magnitude\(100 \times 600 = 60\,000\)\(200 \times 300 = 60\,000\) ✓
Angle\(0° + (-90°) = -90°\)\(-90° + 0° = -90°\) ✓

Why AC balancing is harder in practice. Two independent adjustments are needed, and they usually interact — changing a resistance to correct the magnitude disturbs the angle, and vice versa. Balancing therefore proceeds iteratively, adjusting each in turn until the detector nulls. Three further complications:

ComplicationEffect
Balance is frequency-dependentGenerally holds at one \(\omega\) only
Stray capacitance to groundAdds unwanted arms; needs shielding
Source harmonicsNull at the fundamental leaves harmonics audible

Why bridges are used at all, despite this. A null measurement depends only on the ratio of known components, not on the detector's calibration or the source's amplitude. That makes bridge measurements of impedance among the most accurate available — which is why they survived long after direct-reading instruments became common.

One complex equation is two real ones, and that observation runs through the whole of Part 3. It is why AC bridges need two adjustments, why the conjugate match of Set 20 fixes both resistance and reactance, and why a phasor carries exactly the two numbers a sinusoid needs. Set 22's Thévenin equivalents will require two quantities for the same reason.
Answer\(\mathbf{Z}_1\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3\), giving \(\mathbf{Z}_4 = -j600\ \Omega\) (265.3 nF at 1 kHz); balance needs magnitude and angle
Problem 15ChallengeThe Maxwell Bridge

A Maxwell bridge measures an unknown inductor \(R_x + j\omega L_x\) using arms \(R_2 = 1\ \text{k}\Omega\), \(R_3 = 500\ \Omega\), and \(R_4 = 2\ \text{k}\Omega\) in parallel with \(C_4 = 0.1\ \mu\text{F}\) opposite the unknown. Derive \(R_x\) and \(L_x\) and explain the design's key advantage.

Solution

The balance condition with the unknown opposite the parallel \(RC\) arm:

\[ \mathbf{Z}_x\mathbf{Z}_4 = R_2R_3 \]

Placing the unknown opposite the \(RC\) arm is the whole trick: it makes \(\mathbf{Z}_4\) appear as a product rather than a quotient, so its admittance enters directly.

Rearranging in terms of admittance:

\[ \mathbf{Z}_x = R_2R_3\,\mathbf{Y}_4 = R_2R_3\left(\frac{1}{R_4} + j\omega C_4\right) \]

The parallel combination's admittance is a simple sum — which is why the arm is built as a parallel \(RC\) rather than a series one.

Equate real and imaginary parts separately, the two conditions of Problem 14:

\[ R_x = \frac{R_2R_3}{R_4} = \frac{(1000)(500)}{2000} = 250\ \Omega \]
\[ \omega L_x = \omega R_2R_3C_4 \;\Longrightarrow\; L_x = R_2R_3C_4 = (1000)(500)(10^{-7}) = 50\ \text{mH} \]

The key advantage: \(\omega\) cancels from the inductance result.

\[ L_x = R_2R_3C_4 \ \text{— frequency-independent} \]

So the measurement does not require the source frequency to be known accurately, and it does not need to be stable. Compare Problem 14's general bridge, where balance held at one frequency only.

The second advantage is that a capacitor is used as the standard. Precision capacitors are far easier to make than precision inductors: they have negligible loss, no stray magnetic coupling, and stable values. Measuring an inductance against a capacitance standard is therefore more accurate than against another inductor.

The limitation. The two balance conditions interact through \(R_4\) and \(C_4\), and convergence is poor when the unknown coil's \(Q\) is high:

\[ Q = \frac{\omega L_x}{R_x} = \omega R_4C_4 \]

A high-\(Q\) coil needs a large \(R_4\), which becomes impractical above \(Q \approx 10\). The Hay bridge — the same idea with a series \(RC\) arm — is used instead for high-\(Q\) coils, at the cost of reintroducing a frequency dependence.

Bridge design is the art of arranging which quantities cancel. Maxwell's placement of the unknown opposite a parallel \(RC\) makes \(\omega\) vanish from one result and lets a capacitor stand in for an inductor. That is a deliberate choice of topology to produce a convenient algebraic form — and it is why several named bridges exist for what is nominally one measurement.
Answer\(R_x = R_2R_3/R_4 = 250\ \Omega\), \(L_x = R_2R_3C_4 = 50\ \text{mH}\) — independent of frequency
Problem 16ChallengeTwo Frequencies at Once

A series circuit of \(R = 10\ \Omega\), \(L = 20\ \text{mH}\) and \(C = 100\ \mu\text{F}\) is driven by \(v = 50\cos 500t + 30\cos 1000t\ \text{V}\). Find \(i(t)\) and explain the symmetry in the result.

Solution

Two separate analyses, as Set 20, Problem 18 requires — the impedance differs at each frequency, so no single phasor exists.

aAt \(\omega = 500\ \text{rad/s}\):

\[ X_L = (500)(0.02) = 10\ \Omega, \qquad X_C = \frac{1}{(500)(10^{-4})} = 20\ \Omega \]
\[ \mathbf{Z}_1 = 10 + j(10-20) = 10 - j10 = 14.14\angle{-45°}\ \Omega \]
\[ \mathbf{I}_1 = \frac{50\angle0°}{14.14\angle{-45°}} = 3.536\angle{+45°}\ \text{A} \]

Capacitive, so the current leads.

bAt \(\omega = 1000\ \text{rad/s}\):

\[ X_L = 20\ \Omega, \qquad X_C = 10\ \Omega \]
\[ \mathbf{Z}_2 = 10 + j10 = 14.14\angle{+45°}\ \Omega \]
\[ \mathbf{I}_2 = \frac{30\angle0°}{14.14\angle{+45°}} = 2.121\angle{-45°}\ \text{A} \]

Inductive, so the current lags.

Add the time functions — never the phasors:

\[ i(t) = 3.536\cos(500t + 45°) + 2.121\cos(1000t - 45°)\ \text{A} \]

The symmetry explained. The reactances swapped exactly between the two frequencies, and the reason is the resonant frequency:

\[ \omega_0 = \frac{1}{\sqrt{LC}} = \frac{1}{\sqrt{(0.02)(10^{-4})}} = 707.1\ \text{rad/s} \]

The two driving frequencies straddle it, and in fact \(500 \times 1000 = 500\,000 = \omega_0^2\) — they are geometrically symmetric about resonance. Whenever \(\omega_a\omega_b = \omega_0^2\), the net reactance at one is exactly the negative of the net reactance at the other, so the impedance magnitudes match and the angles are equal and opposite.

The RMS current, where mean squares add because different frequencies are orthogonal:

\[ I_{rms} = \sqrt{\left(\frac{3.536}{\sqrt2}\right)^2 + \left(\frac{2.121}{\sqrt2}\right)^2} = \sqrt{6.25 + 2.25} = 2.915\ \text{A} \]
\[ P = I_{rms}^2R = 85.0\ \text{W} \]
Geometric symmetry about \(\omega_0\) is the natural symmetry of a resonant circuit, not arithmetic symmetry. Frequencies an octave below and above resonance behave as mirror images, which is why frequency axes in Sets 28 to 30 are always logarithmic — on a log scale, geometric symmetry becomes ordinary reflection.
Answer\(i = 3.536\cos(500t+45°) + 2.121\cos(1000t-45°)\ \text{A}\); the frequencies straddle \(\omega_0 = 707\) geometrically
Problem 17Exam levelSymmetry and Reciprocity

Show that the symmetry of the AC impedance matrix implies reciprocity, verify it on Problem 5's system, and state precisely when it fails.

Solution

The argument is Set 14's, unchanged. Solving \(\mathbf{Z}\mathbf{I} = \mathbf{V}\) gives

\[ \mathbf{I} = \mathbf{Z}^{-1}\mathbf{V} \]

and the inverse of a symmetric matrix is symmetric. So the transfer impedance from mesh \(j\) to mesh \(k\) equals that from \(k\) to \(j\):

\[ \left(\mathbf{Z}^{-1}\right)_{jk} = \left(\mathbf{Z}^{-1}\right)_{kj} \]

Now a complex equality, so both magnitude and phase are reciprocal.

Verifying on Problem 5. A source of \(100\angle0°\) in mesh 1 produced \(\mathbf{I}_3 = 2.764\angle{-4.38°}\ \text{A}\). Moving the same source to mesh 3 and measuring in mesh 1 gives, from the transfer impedance,

\[ \mathbf{I}_1 = 2.764\angle{-4.38°}\ \text{A} \]

Identical in both magnitude and angle — the phase is reciprocal too, which is a stronger statement than the DC version and is easy to overlook.

When it fails. Exactly when the matrix is asymmetric:

PresentReciprocal?Reference
R, L, C onlyYesThis set
Mutual inductanceYes\(M\) enters symmetricallySet 26
Ideal transformerYesSet 27
Dependent sourceNoProblem 4
Op-ampNoSet 15, Problem 12

The mutual-inductance entry is worth noting in advance: coupled coils add off-diagonal terms \(\pm j\omega M\) to both \(Z_{jk}\) and \(Z_{kj}\) equally, so symmetry survives and Set 26's circuits remain reciprocal.

The practical use is as a check on the matrix, before any arithmetic. If a circuit contains only passive bilateral elements and the assembled matrix is asymmetric, an equation is wrong — most often a shared branch entered in one row and omitted from the other, or entered with the wrong sign.

A second use is labour-saving. Reciprocity means a transfer function need be computed once and can then be read in either direction, which halves the work when a network's behaviour is wanted from both ports — as it will be in Set 35's two-port parameters, where \(z_{12} = z_{21}\) is precisely this result.

Reciprocity is a statement about the elements, not about the frequency. It held in Set 14 for resistive networks and holds here for arbitrary \(R\), \(L\) and \(C\) at any \(\omega\), because all three are bilateral. Only a device that distinguishes a direction — one requiring an external supply — can break it.
AnswerSymmetric \(\mathbf{Z}\) gives symmetric \(\mathbf{Z}^{-1}\), so transfer impedances are equal in magnitude and phase; fails only with dependent sources
Problem 18ChallengeConditioning and Near-Resonance

Explain what happens to an AC mesh system as the circuit approaches resonance, why the determinant becomes small, and how to tell an ill-conditioned circuit from a wrongly-assembled one.

Solution

Consider a single mesh containing \(R\), \(L\) and \(C\) in series. Its "matrix" is the scalar

\[ \Delta = R + j\left(\omega L - \frac{1}{\omega C}\right) \]

At \(\omega = \omega_0\) the imaginary part vanishes and \(\Delta = R\). If \(R\) is small, so is \(\Delta\) — while the individual terms \(\omega L\) and \(1/\omega C\) may each be large.

That is the definition of ill-conditioning: a small result from the near-cancellation of large terms. With \(R = 10\ \Omega\) and reactances of 31.6 Ω each (Set 20, Problem 13):

\[ \Delta = 10 \ \text{from terms of size } 31.6 \]

A 1% error in either reactance produces a 3% error in \(\Delta\) and hence in every current — errors are amplified by the cancellation.

The consequences:

EffectDetail
Rounding mattersCarry extra digits through the cancellation
Large internal quantitiesCurrents and voltages far exceed the naive estimate
Sensitivity to componentsA 1% tolerance shifts the answer by \(Q\)%
Frequency sensitivityThe response changes rapidly with \(\omega\)

Distinguishing ill-conditioning from an error. Both produce a suspiciously small determinant, so the test is whether the smallness is explicable:

QuestionIll-conditionedError
Is \(\omega\) near \(1/\sqrt{LC}\)?YesNot necessarily
Does \(\Delta\) equal roughly the resistances?YesOften much smaller
Is \(\operatorname{Re}(\Delta) > 0\)?Yes, alwaysMay be zero or negative
Does the answer satisfy KVL?YesNo

The third row is the useful one. For a passive network the determinant's real part cannot vanish — there is always some resistance somewhere. A determinant that is exactly zero, or has negative real part, is an error rather than a physical near-cancellation.

An exactly singular matrix means no unique solution exists. Physically this happens only in idealised circuits: a lossless \(LC\) loop driven exactly at \(\omega_0\) would demand infinite current. Real circuits always have resistance, so the singularity is an artefact of neglecting it — a reminder that the ideal \(L\) and \(C\) of Sets 16 and 17 are approximations.

Near resonance a circuit is genuinely sensitive, and no amount of arithmetic care changes that. The sensitivity is physical: a high-\(Q\) tuned circuit really does respond differently to a 1% component change, which is why such circuits need trimming. Set 29 turns this sensitivity into the design parameter it is, rather than the nuisance it appears here.
AnswerNear resonance \(\Delta \to\) the resistances alone, from cancelling large reactances; a genuine near-cancellation still has \(\operatorname{Re}(\Delta) > 0\) and satisfies KVL
Problem 19Exam levelSources in Awkward Places

Tabulate every configuration of source placement and the correct handling for each, in both mesh and nodal analysis, and identify the one situation where a source can be eliminated entirely.

Solution

The complete catalogue for mesh analysis:

SourcePositionHandling
VoltageIn one mesh onlyEnters \(V_k\) on the right — easy
VoltageShared between meshesEnters both rows with opposite signs
CurrentIn one mesh onlyThat mesh current is known; drop the equation
CurrentShared between meshesSupermesh — Problem 3

And for nodal analysis, the exact dual:

SourcePositionHandling
CurrentNode to referenceEnters \(I_k\) on the right — easy
CurrentBetween two nodesEnters both rows with opposite signs
VoltageNode to referenceThat node voltage is known; drop the equation
VoltageBetween two nodesSupernode — Problem 8

The two tables are duals under \(V\leftrightarrow I\), mesh\(\leftrightarrow\)node, which is Set 17's duality operating on the analysis methods themselves.

The row worth exploiting is the third in each table. A voltage source connected from a node to the reference makes that node voltage known, removing an unknown entirely:

\[ \mathbf{V}_k = \mathbf{V}_s \ \text{— no equation needed at node } k \]

Choosing the reference node adjacent to a voltage source is therefore worth doing deliberately. Placing it at the source's negative terminal can convert a supernode problem into a trivial one.

The elimination. A voltage source in series with an impedance, or a current source in parallel with one, can be converted by source transformation:

\[ \mathbf{V}_s \ \text{in series with } \mathbf{Z} \quad\longleftrightarrow\quad \mathbf{I}_s = \frac{\mathbf{V}_s}{\mathbf{Z}} \ \text{in parallel with } \mathbf{Z} \]

Set 12's method, valid unchanged for impedances. This can turn a supermesh into an ordinary mesh, or a supernode into an ordinary node, and is often the quickest simplification available — Set 22 develops it.

A worked judgement. Problem 8's supernode arose from a voltage source between two non-reference nodes. Had that source had any impedance in series with it, transformation would have converted it to a current source in parallel — removing the supernode and leaving two ordinary node equations. The supernode was necessary only because the source was ideal.

Reference-node choice and source transformation are free simplifications, and both are decided before any equation is written. Ten seconds spent on placement can remove an unknown or eliminate a supernode; the same problem attacked without that thought is solvable but longer. In AC, where each extra unknown costs disproportionately, this is worth more than it was in Part 1.
AnswerFour cases per method, dual to each other; a source to the reference node removes an unknown, and transformation can eliminate supermeshes and supernodes
Problem 20ChallengeWhat Carried Over

Audit what this set actually contained: which results were transferred unchanged, which needed modification, and what is genuinely new.

Solution

Transferred with no modification whatever:

ResultOriginal
Mesh equation constructionSet 4
Nodal equation constructionSet 6
SupermeshSet 5
SupernodeSet 7
Dependent-source procedureSets 4, 6
Equation counting \(b-n+1\)Set 8
Matrix symmetry and reciprocitySet 14
Ladder reductionSet 2
Bridge balance \(\mathbf{Z}_1\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3\)Set 2

Nine major results, none requiring re-derivation. The proofs in Part 1 used only Kirchhoff's laws and linearity, both of which survive the phasor transform.

Needing modification:

ResultChangeProblem
"Off-diagonals are negative"Minus the admittance — may be positive imaginary10
Bridge balanceOne complex condition = two real ones14
Method choiceNew criterion: element type11
Plausibility checkingMost DC intuitions void12

Genuinely new:

\[ \text{ill-conditioning near resonance (Problem 18)} \]

and nothing else. A resistive network's matrix cannot be near-singular from cancellation, because resistances only accumulate. Reactances of opposite sign can cancel, and that possibility is the one structurally new feature of AC analysis.

The honest summary of this set's difficulty: it is arithmetic, not conceptual. Anyone who could solve Sets 4 to 7 can set up every problem here. What takes the time is complex multiplication, and what causes errors is \(j^2 = -1\) appearing where a sign was not expected.

What Set 22 will do is complete the transfer, taking Sets 9 to 14 — Thévenin, Norton, superposition, source transformation, maximum power and the additional theorems — into the frequency domain. One result there genuinely changes: the maximum power condition becomes the conjugate match \(\mathbf{Z}_L = \mathbf{Z}_{Th}^*\), previewed in Set 20's Challenge C2. Everything else transfers as here.

The value of a good transform is measured by how little has to be rebuilt after it, and by that measure the phasor transform is exceptional: two sets of AC analysis have so far produced exactly one new phenomenon. The effort saved is the entire reason engineers work in the frequency domain rather than solving differential equations circuit by circuit.
AnswerNine results transferred untouched, four needed restatement, and only ill-conditioning near resonance is structurally new
Practice

Practice Problems

Work each on paper before opening the answer. The answer is given so you can check yourself; the method is deliberately not.

  1. P1. A mesh contains 5 Ω, \(j8\ \Omega\) and \(-j3\ \Omega\). Find its diagonal entry \(Z_{11}\).

    Show answer
    \(5 + j8 - j3 = 5 + j5\ \Omega\) — sum round the mesh, reactances signed — Problem 2.
  2. P2. Find the current for \(100\angle0°\ \text{V}\) across \(\mathbf{Z} = 3 + j4\ \Omega\).

    Show answer
    \(100\angle0°/5\angle53.13° = 20\angle{-53.13°}\) A.
  3. P3. Find the admittance of an inductor of reactance \(j20\ \Omega\).

    Show answer
    \(1/j20 = -j0.05\) S. The sign flips because \(1/j = -j\) — Problem 7.
  4. P4. Evaluate \(\begin{vmatrix}10+j5 & -j5\\ -j5 & 8-j5\end{vmatrix}\).

    Show answer
    \((10+j5)(8-j5) - (-j5)^2 = (105 - j10) + 25 = 130 - j10\) — note \(-(-j5)^2 = +25\) — Problem 6.
  5. P5. A \(6\angle0°\ \text{A}\) source sits between meshes 2 and 3. Write the constraint.

    Show answer
    \(\mathbf{I}_3 - \mathbf{I}_2 = 6\) (sign set by the source's direction), plus KVL round the supermesh — Problem 3.
  6. P6. A node has 10 Ω, \(-j5\ \Omega\) and \(j20\ \Omega\) attached. Find \(Y_{11}\).

    Show answer
    \(0.1 + j0.2 - j0.05 = 0.1 + j0.15\) S — convert each to admittance first — Problem 7.
  7. P7. An AC bridge has \(\mathbf{Z}_1 = 200\ \Omega\), \(\mathbf{Z}_2 = j100\ \Omega\), \(\mathbf{Z}_3 = 400\ \Omega\). Find \(\mathbf{Z}_4\) for balance.

    Show answer
    \(\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3/\mathbf{Z}_1 = j200\ \Omega\) — an inductive reactance — Problem 14.
  8. P8. A Maxwell bridge has \(R_2 = 800\ \Omega\), \(R_3 = 600\ \Omega\), \(R_4 = 1500\ \Omega\), \(C_4 = 0.2\ \mu\text{F}\). Find \(R_x\) and \(L_x\).

    Show answer
    \(R_x = R_2R_3/R_4 = 320\ \Omega\), \(L_x = R_2R_3C_4 = 96\) mH — Problem 15.
  9. P9. A mesh matrix has \(Z_{12} = -j6\) and \(Z_{21} = -j6 + 2\). What does this indicate?

    Show answer
    A dependent source is present — or an error. Passive bilateral circuits give symmetric matrices — Problems 4 and 17.
  10. P10. Find the input impedance of 10 Ω in series with \(j20\ \Omega\) parallel to 20 Ω.

    Show answer
    \((j20)(20)/(20+j20) = 10+j10\), so total \(20 + j10\ \Omega\) — Problem 13.
  11. P11. A circuit is driven at 200 and 600 rad/s. Can the two phasor currents be added?

    Show answer
    No — add the time functions. Only mean squares and average powers add across frequencies — Problem 16.
  12. P12. Why is a determinant near zero not automatically a sign of error in an AC problem?

    Show answer
    Near resonance the reactances cancel, leaving only the resistances. Check that \(\operatorname{Re}(\Delta) > 0\) and that KVL holds — Problem 18.
Challenge

Challenge Problems

Each needs an idea rather than a formula. Decide what the governing principle is before opening the answer.

  1. C1. An AC bridge with \(\mathbf{Z}_1 = 100\ \Omega\), \(\mathbf{Z}_2 = -j200\ \Omega\), \(\mathbf{Z}_3 = 300\ \Omega\) and a 1 kΩ detector is driven by \(100\angle0°\ \text{V}\). With \(\mathbf{Z}_4 = -j500\ \Omega\) instead of the balance value, find the detector current, and use the result to comment on bridge sensitivity.

    Show answer
    Use nodal analysis with the two detector nodes as unknowns. Each is fed from the source through its upper arm and drains through its lower arm and the detector:
    \[ \begin{bmatrix} \frac{1}{\mathbf{Z}_1}+\frac{1}{\mathbf{Z}_2}+\frac{1}{\mathbf{Z}_d} & -\frac{1}{\mathbf{Z}_d} \\[4pt] -\frac{1}{\mathbf{Z}_d} & \frac{1}{\mathbf{Z}_3}+\frac{1}{\mathbf{Z}_4}+\frac{1}{\mathbf{Z}_d} \end{bmatrix} \begin{bmatrix} \mathbf{V}_a \\ \mathbf{V}_b \end{bmatrix} = \begin{bmatrix} 100/\mathbf{Z}_1 \\ 100/\mathbf{Z}_3 \end{bmatrix} \]
    Solving:
    \[ \mathbf{V}_a = 89.04\angle{-26.78°}\ \text{V}, \qquad \mathbf{V}_b = 86.91\angle{-30.33°}\ \text{V} \]
    \[ \mathbf{I}_d = \frac{\mathbf{V}_a-\mathbf{V}_b}{1000} = 5.8\angle{40.02°}\ \text{mA} \]
    Check the balance case. Setting \(\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3/\mathbf{Z}_1 = -j600\) and re-solving gives \(\mathbf{I}_d = 0\) to machine precision ✓ — confirming Problem 14's condition independently.

    On sensitivity. A 17% error in \(\mathbf{Z}_4\) (500 instead of 600) produced only 5.8 mA in the detector, and the two node voltages differ by just 2.4% — so a bridge near balance is insensitive, which is exactly why balancing requires a sensitive detector rather than a precise one. The measurement's accuracy comes from the arm ratios, not from the detector.

    The design consequence. Sensitivity improves with a lower-impedance detector and a higher source voltage, and is greatest when all four arms are comparable in magnitude. A bridge with wildly mismatched arms balances poorly regardless of component quality.
  2. C2. Prove that for a passive network the real part of the input impedance \(\mathbf{Z}_{in} = \mathbf{V}_1/\mathbf{I}_1\) at any port can never be negative, and connect the result to Set 14's Tellegen theorem.

    Show answer
    Start from power. The average power a source delivers to a one-port is (anticipating Set 23)
    \[ P = \tfrac12\operatorname{Re}\left(\mathbf{V}_1\mathbf{I}_1^*\right) = \tfrac12|\mathbf{I}_1|^2\operatorname{Re}\left(\mathbf{Z}_{in}\right) \]
    using \(\mathbf{V}_1 = \mathbf{Z}_{in}\mathbf{I}_1\), so that \(\mathbf{V}_1\mathbf{I}_1^* = \mathbf{Z}_{in}|\mathbf{I}_1|^2\).

    Now apply conservation. That power must equal the total dissipated inside the network, which by Tellegen's theorem (Set 14) is the sum over all branches:
    \[ P = \sum_k \tfrac12|\mathbf{I}_k|^2 R_k \]
    Every \(R_k \ge 0\) for passive elements, and inductors and capacitors contribute nothing to the real part — they store and return. So \(P \ge 0\), and therefore
    \[ \operatorname{Re}\left(\mathbf{Z}_{in}\right) = \frac{2P}{|\mathbf{I}_1|^2} \ge 0 \]
    Equality only when every branch carrying current is purely reactive — an ideal lossless network, which cannot be built.

    Three consequences. First, a computed \(\mathbf{Z}_{in}\) with negative real part is an error, not a finding — a useful check, and the one Problem 18 relied on. Second, \(\angle\mathbf{Z}_{in}\) is confined to \(\pm90°\), so a computed phase outside that range is likewise wrong. Third, the imaginary part is unconstrained: it may be positive, negative or zero, and passing through zero is resonance.

    The exception proves the rule. Set 15's negative impedance converter achieved \(R_{in} = -R_L\) — and required a power supply. The proof above assumed passivity precisely at the step where \(R_k \ge 0\), and an active element is what violates it.
  3. C3. A two-mesh circuit has \(\mathbf{Z} = \begin{bmatrix} Z_{11} & Z_{12} \\ Z_{12} & Z_{22}\end{bmatrix}\). Show that the impedance seen at mesh 1 depends on mesh 2 through a term of a particular form, interpret it, and determine what mesh 2 must contain to make mesh 1 appear purely resistive.

    Show answer
    Eliminate \(\mathbf{I}_2\). With a source only in mesh 1, row 2 gives
    \[ Z_{12}\mathbf{I}_1 + Z_{22}\mathbf{I}_2 = 0 \;\Longrightarrow\; \mathbf{I}_2 = -\frac{Z_{12}}{Z_{22}}\mathbf{I}_1 \]
    Substituting into row 1:
    \[ \mathbf{V}_1 = \left(Z_{11} - \frac{Z_{12}^2}{Z_{22}}\right)\mathbf{I}_1 \]
    \[ \boxed{\;\mathbf{Z}_{in} = Z_{11} - \frac{Z_{12}^2}{Z_{22}}\;} \]
    The interpretation. The second term is the reflected or coupled impedance: mesh 2 appears at mesh 1, transformed by the coupling. It is subtracted, and its size grows with the coupling \(Z_{12}\) and shrinks as mesh 2 becomes heavier.

    Why the sign is subtraction but the effect need not be. Since \(Z_{12}\) is complex, \(Z_{12}^2\) may be negative or imaginary. If the meshes share a capacitor, \(Z_{12} = +j/\omega C\) and \(Z_{12}^2 = -1/\omega^2C^2\) is negative real — so the reflected term is added. Problem 1 saw exactly this: the input impedance came out \(6-j8\) although mesh 1's own impedance was \(6+j8\). The coupled mesh reversed the sign of the reactance entirely.

    Making mesh 1 purely resistive. Require \(\operatorname{Im}(\mathbf{Z}_{in}) = 0\):
    \[ \operatorname{Im}\left(Z_{11}\right) = \operatorname{Im}\left(\frac{Z_{12}^2}{Z_{22}}\right) \]
    one real equation, so one adjustable element in mesh 2 suffices. With a shared reactance \(Z_{12} = jX\) so that \(Z_{12}^2 = -X^2\), and writing \(Z_{22} = R_2 + jX_2\), the condition becomes
    \[ \operatorname{Im}(Z_{11}) = \frac{X^2X_2}{R_2^2+X_2^2} \]
    solvable for \(X_2\). This is how a coupled circuit is tuned from the secondary side — and Set 26 will show it is exactly the mechanism by which a transformer's secondary load appears at its primary.
MCQ

Multiple-Choice Questions

Twelve questions in GATE/ESE style. Commit to an answer before opening the explanation.

  1. Q1. In an AC mesh matrix, the off-diagonal \(Z_{12}\) equals

    (a) the shared impedance   (b) minus the shared impedance   (c) the sum round mesh 1   (d) zero

    Show answer
    (b) — the same rule as Set 4 — Problem 2.
  2. Q2. \((-j8)^2\) equals

    (a) \(+64\)   (b) \(-64\)   (c) \(-j64\)   (d) \(+j64\)

    Show answer
    (b), since \(j^2 = -1\). Inside a determinant it appears as \(-(-j8)^2 = +64\) — Problem 6.
  3. Q3. The admittance of a capacitor is

    (a) \(-j\omega C\)   (b) \(j\omega C\)   (c) \(1/j\omega C\)   (d) \(\omega C\)

    Show answer
    (b) — which is why capacitive circuits suit nodal analysis — Problem 11.
  4. Q4. An asymmetric mesh matrix in a circuit of only R, L and C indicates

    (a) resonance   (b) an error   (c) a dependent source   (d) non-planarity

    Show answer
    (b). With no dependent sources the matrix must be symmetric — Problems 4 and 17.
  5. Q5. A current source shared between two meshes is handled by

    (a) ignoring it   (b) a supermesh   (c) a supernode   (d) source transformation only

    Show answer
    (b), plus the constraint equation — Problem 3.
  6. Q6. The AC bridge balance condition is

    (a) \(|\mathbf{Z}_1||\mathbf{Z}_4| = |\mathbf{Z}_2||\mathbf{Z}_3|\) only   (b) \(\mathbf{Z}_1\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3\)   (c) \(\mathbf{Z}_1+\mathbf{Z}_4 = \mathbf{Z}_2+\mathbf{Z}_3\)   (d) \(\mathbf{Z}_1 = \mathbf{Z}_4\)

    Show answer
    (b) — a complex equation, hence two real conditions. Option (a) is only half of it — Problem 14.
  7. Q7. In a Maxwell bridge, the measured inductance is

    (a) frequency-dependent   (b) \(R_2R_3C_4\)   (c) \(R_2R_3/R_4\)   (d) \(R_4C_4\)

    Show answer
    (b), independent of \(\omega\) — the design's main advantage. Option (c) is \(R_x\) — Problem 15.
  8. Q8. Nodal analysis is preferable when the circuit contains mostly

    (a) inductors   (b) capacitors   (c) resistors   (d) voltage sources

    Show answer
    (b), since \(Y_C = j\omega C\) avoids reciprocals of imaginary numbers — Problem 11.
  9. Q9. The best single check on a solved AC mesh system is

    (a) that magnitudes look reasonable   (b) substitution into an unused equation   (c) that all phases are negative   (d) that \(\Delta\) is real

    Show answer
    (b) — both real and imaginary parts must vanish, giving two conditions from one substitution — Problem 12.
  10. Q10. Near resonance, the system determinant

    (a) becomes large   (b) becomes small   (c) is unchanged   (d) becomes purely imaginary

    Show answer
    (b), from cancelling reactances, leaving the resistances — Problem 18.
  11. Q11. For a passive one-port, \(\operatorname{Re}(\mathbf{Z}_{in})\) is

    (a) always positive or zero   (b) always negative   (c) any value   (d) always zero

    Show answer
    (a). It equals \(2P/|\mathbf{I}|^2\) and passive networks cannot generate power — Challenge C2.
  12. Q12. A circuit driven at two frequencies requires

    (a) one matrix with both   (b) separate analyses, adding time functions   (c) separate analyses, adding phasors   (d) the mean frequency

    Show answer
    (b). The impedances differ, so the two phasor domains are unrelated — Problem 16.
Formulas

Key Formulas

QuantityRelationNotes
Mesh system\(\mathbf{Z}\mathbf{I} = \mathbf{V}\)\(b-n+1\) equations
Nodal system\(\mathbf{Y}\mathbf{V} = \mathbf{I}\)\(n-1\) equations
Mesh diagonal\(Z_{kk} = \sum\) impedances round mesh \(k\)Reactances signed
Mesh off-diagonal\(Z_{jk} = -\)(shared impedance)Symmetric if passive
Nodal diagonal\(Y_{kk} = \sum\) admittances at node \(k\)Convert first
Nodal off-diagonal\(Y_{jk} = -\)(connecting admittance)May be positive imaginary
SupermeshConstraint + KVL round enclosureCurrent source between meshes
SupernodeConstraint + KCL over enclosureVoltage source between nodes
Cramer's rule\(\mathbf{I}_k = \Delta_k/\Delta\)Watch \(j^2 = -1\)
Reciprocity\(\mathbf{Z} = \mathbf{Z}^{\mathsf T} \Rightarrow\) equal transferMagnitude and phase
Bridge balance\(\mathbf{Z}_1\mathbf{Z}_4 = \mathbf{Z}_2\mathbf{Z}_3\)Two real conditions
Maxwell bridge\(R_x = R_2R_3/R_4\), \(L_x = R_2R_3C_4\)\(L_x\) frequency-independent
Reflected impedance\(\mathbf{Z}_{in} = Z_{11} - Z_{12}^2/Z_{22}\)Coupled mesh — Challenge C3
Source transformation\(\mathbf{V}_s \leftrightarrow \mathbf{I}_s = \mathbf{V}_s/\mathbf{Z}\)Can remove supernodes
Passivity bound\(\operatorname{Re}(\mathbf{Z}_{in}) \ge 0\)\(|\angle\mathbf{Z}_{in}| \le 90°\)
Multiple frequenciesSolve separately, add \(i(t)\)Mean squares add
Pitfalls

Common Mistakes

  1. Analysing before transforming. Convert every source to a phasor and every element to an impedance first; never mix domains within one equation.

  2. Mishandling \(j^2\) in a determinant. \(-(-j8)^2 = +64\), not \(-64\). Write \(j^2\) explicitly before simplifying — Problem 6.

  3. Assuming off-diagonals are negative. They are minus the admittance, which for an inductor gives a positive imaginary entry — Problem 10.

  4. Forgetting \(1/j = -j\). A capacitor's reactance is negative but its susceptance is positive — Problem 7.

  5. Leaving a dependent source on the right-hand side. Substitute its controlling variable and collect before assembling the matrix — Problem 9.

  6. Checking only the magnitude of a bridge balance. The angle must balance too — Problem 14.

  7. Adding a real number to a polar quantity. Convert to rectangular first — Problem 3.

  8. Trusting DC intuition about magnitudes. Internal voltages can exceed the source, and a distant node can be higher than a near one — Problems 7 and 13.

  9. Treating a small determinant as an error. Near resonance it is physical; check \(\operatorname{Re}(\Delta)>0\) and KVL — Problem 18.

  10. Skipping the verification step. Complex answers give no warning when wrong. Substitute into an unused equation, always — Problem 12.

Looking Ahead

This set contained almost no new theory, and that was the point. Nine major results from Part 1 transferred without a line of re-derivation, four needed only restatement, and exactly one phenomenon — ill-conditioning from cancelling reactances — had no resistive counterpart. The difficulty of AC analysis is arithmetic and the remedy is discipline: check the matrix's symmetry before solving, and substitute the answer into an unused equation afterwards.

Set 22 completes the transfer, taking Thévenin, Norton, superposition, source transformation and the additional theorems into the frequency domain. One result there does change substantively — maximum power transfer becomes the conjugate match — and the reason is worth anticipating: the load must now cancel the source's reactance as well as match its resistance, which is two conditions where DC had one.

Next: Set 22 — Theorems in the Frequency Domain. After that, Set 23 introduces the first genuinely new physics of Part 3, when the phase between voltage and current turns out to determine how much power flows at all.