No history yet

Linearity Principles

The Rules of the Game: Linearity

You've already mastered the fundamental rules of circuit analysis: Kirchhoff's Current and Voltage Laws (KCL/KVL). These laws help you write systems of equations for any circuit. But solving them can get messy, especially with multiple sources.

This is where more advanced techniques, like the Superposition Theorem, come in. These methods are powerful shortcuts, but they only work on a specific class of circuits: linear circuits. The property of linearity is the mathematical bedrock that makes these shortcuts valid. A circuit is linear if its output is directly proportional to its input. This simple-sounding property has profound consequences.

What Makes a System Linear?

Linearity isn't a vague concept; it's defined by two precise mathematical properties: homogeneity and additivity.

1. Homogeneity (Scaling) If you scale the input, the output scales by the same factor. Double the input voltage, and you double the output current. Halve the input current, and you halve the output voltage.

Mathematically, if a function ff represents the input-output relationship of a system, it must satisfy this condition for any input xx and any scalar kk:

f(kx)=kf(x)f(kx) = kf(x)

2. Additivity The response to a sum of inputs is simply the sum of the responses to each input applied individually.

For any two inputs, x1x_1 and x2x_2, the system must satisfy:

f(x1+x2)=f(x1)+f(x2)f(x_1 + x_2) = f(x_1) + f(x_2)

A system, or a circuit, is only linear if it satisfies both properties. You can combine these two rules into a single, more general statement of linearity, which you might recognize from linear algebra. For any scalars aa and bb and any inputs x1x_1 and x2x_2:

f(ax1+bx2)=af(x1)+bf(x2)f(ax_1 + bx_2) = af(x_1) + bf(x_2)

Linear Elements and Equations

For a circuit to be linear, all its components must be linear. The defining characteristic of a linear component is a straight-line relationship between its voltage and current (its I-V characteristic).

ElementI-V RelationshipWhy It's Linear
ResistorV=IRV = IRThis is the equation of a line passing through the origin. The voltage is directly proportional to the current.
Independent Voltage SourceV=VsV = V_sThe voltage is constant, regardless of the current. Its I-V graph is a vertical line.
Independent Current SourceI=IsI = I_sThe current is constant, regardless of the voltage. Its I-V graph is a horizontal line.

When you build a circuit with only these elements and apply KCL and KVL, you generate a system of linear algebraic equations. For example, a simple loop equation from KVL might look like this:

VsIR1IR2=0V_s - I R_1 - I R_2 = 0

The terms involving the unknown currents (like IR1IR_1) are all of the first order. There are no terms like I2I^2 or I\sqrt{I}. This is crucial. It's the linearity of these underlying equations that allows superposition to work. If we had non-linear elements like or transistors, our equations would no longer be linear, and we couldn't use superposition.

The key insight is that linearity allows us to use superposition—solutions can be added together to form new solutions.

Proving Superposition

Let's make this more concrete. Imagine a circuit with two voltage sources, V1V_1 and V2V_2, and a network of resistors. We want to find a specific current, IxI_x. The system of equations derived from KVL/KCL will be linear, so the solution for IxI_x will be a linear combination of the sources:

Ix=a1V1+a2V2I_x = a_1 V_1 + a_2 V_2

Now, consider the contribution to IxI_x from only V1V_1. We set V2=0V_2 = 0 (replace it with a short circuit). The equation becomes:

Ix1=a1V1+a2(0)=a1V1I_{x1} = a_1 V_1 + a_2 (0) = a_1 V_1

Next, we find the contribution from only V2V_2 by setting V1=0V_1 = 0:

Ix2=a1(0)+a2V2=a2V2I_{x2} = a_1 (0) + a_2 V_2 = a_2 V_2

Because the system is linear, the total response is the sum of the individual responses:

Ix=Ix1+Ix2I_x = I_{x1} + I_{x2}

This isn't a magic trick. It's a direct mathematical consequence of the additivity and homogeneity properties inherent in circuits built from linear elements. By understanding this principle, you're not just learning a rule to follow—you're understanding why it works.

Quiz Questions 1/5

For a circuit or system to be considered linear, it must satisfy two specific properties. What are they?

Quiz Questions 2/5

The Superposition Theorem is a direct mathematical consequence of a circuit's linearity.