A mathematical identity is an equation that holds true for every possible value of its variables, allowing engineers to swap complex expressions for simpler, mathematically equivalent forms. In electrical engineering and electronics, we rarely use identities just to solve for an unknown variable; instead, we use them to translate messy physical reality—like overlapping AC waveforms or sprawling logic gate networks—into clean, solvable algebra.
The Core Difference: Identity vs. Conditional Equation
To understand how identities function on the workbench, you must separate them from standard conditional equations and physical laws. A conditional equation is only true for specific values. For example, if you are sizing an inductor and write X_L = 2πfL = 100Ω, that equation is only true for specific combinations of frequency (f) and inductance (L). If you change the frequency, the equation breaks unless you change L.
An identity, however, never breaks. It is a universal structural truth. The most famous example in AC theory is Euler's formula. No matter what angle or frequency you plug in, the relationship between the exponential function and trigonometric functions remains perfectly balanced. This distinction dictates how we use math in circuit design: we use conditional equations to find component values, but we use identities to restructure the math itself.
| Concept | Definition | Example in EE | Truth Condition |
|---|---|---|---|
| Mathematical Identity | Equation true for all variable values | e^(jθ) = cos(θ) + j*sin(θ) | Always true, regardless of θ |
| Conditional Equation | Equation true only for specific values | X_L = 2πfL = 100Ω | True only at specific f and L |
| Physical Law | Empirical model of physical reality | V = I × R (Ohm's Law) | True only for ohmic materials in linear regions |
Worked Numeric Example: Euler’s Formula in AC Phasor Math
What does a mathematical identity actually change in a real circuit installation or analysis? It changes time-domain differential calculus into basic algebraic addition. Without identities, calculating the power delivered to a reactive load requires multiplying two sine waves together and integrating over time—a tedious process prone to arithmetic errors. With Euler's identity, we convert those waves into phasors and simply add their angles.
Let us calculate the Complex Power (S) of an industrial AC circuit using Euler's formula as our bridge. According to Wolfram MathWorld's breakdown of the Euler Formula, the identity allows us to represent cosine and sine waves as complex exponentials.
Voltage Phasor (V): 120V RMS at a +30° phase angle.
Current Phasor (I): 15A RMS at a -15° phase angle.
Goal: Find Real Power (P) in Watts and Reactive Power (Q) in VAR.
Step 1: Express in Exponential Form
Using the identity, we write our phasors as exponentials:
V = 120 * e^(j30°)
I = 15 * e^(-j15°)
Step 2: Apply the Conjugate for Power
Complex power is defined as S = V × I*, where I* is the complex conjugate of the current. Taking the conjugate simply flips the sign of the angle:
I* = 15 * e^(+j15°)
Step 3: Multiply Using the Exponential Identity
Here is where the identity does the heavy lifting. The mathematical identity for multiplying exponents states that e^(jA) × e^(jB) = e^(j(A+B)). We just add the angles:
S = (120 * e^(j30°)) × (15 * e^(j15°))
S = 1800 * e^(j45°) VA
Step 4: Convert Back to Rectangular Form
We apply Euler's formula in reverse to split this into Real and Reactive components:
S = 1800 * (cos(45°) + j*sin(45°))
S = 1800 * (0.7071 + j0.7071)
S = 1272.8 + j1272.8
The Result:
Real Power (P) = 1272.8 Watts
Reactive Power (Q) = 1272.8 VAR
By leveraging the identity, we bypassed time-domain integration entirely and solved the circuit using basic arithmetic.
Where You Meet This in Practice
Identities are not just academic exercises; they are active tools used in daily engineering and troubleshooting workflows.
- Digital Logic and PLC Programming: When designing FPGA logic or writing ladder logic for an Allen-Bradley PLC, you use Boolean algebraic identities to minimize gate counts. De Morgan's Laws (e.g., NOT (A AND B) = (NOT A) OR (NOT B)) are identities used to swap expensive, multi-input AND gates for cheaper, universally available NAND and NOR gates. As detailed in All About Circuits' guide on Boolean Identities, this reduction saves silicon area and reduces PLC scan-cycle times.
- AC Power Triangles: When sizing capacitor banks for power factor correction, you rely on the Pythagorean trigonometric identity (cos²θ + sin²θ = 1). This identity guarantees that the Apparent Power (S), Real Power (P), and Reactive Power (Q) will always form a perfect right triangle, allowing you to use S² = P² + Q² to find missing values on your utility meter.
- Filter Design and Bode Plots: When designing active low-pass filters using op-amps, you use trigonometric product-to-sum identities to simplify the transfer function's denominator, making it easier to plot the -3dB cutoff frequency on a Bode plot.
What People Commonly Confuse It With
The most common mistake hobbyists and junior engineers make is confusing mathematical identities with approximations. A classic example is the small-angle approximation used in control loop stability analysis, where sin(θ) ≈ θ for very small angles. This is highly useful for linearizing a system, but it is not an identity because it fails completely at larger angles (e.g., sin(90°) is 1, not 90).
Another frequent confusion is treating physical laws as identities. Kirchhoff's Voltage Law (KVL) and Ohm's Law are empirical observations of how our physical universe behaves. They can be violated in edge cases (like superconductors bypassing Ohm's law, or parasitic capacitance interfering with high-frequency KVL). A pure mathematical identity, like the distributive property A(B + C) = AB + AC, cannot be violated by physical reality; it is a fundamental rule of the logical framework we use to measure that reality.
Frequently Asked Questions
What is a mathematical identity used for in digital logic design?
In digital logic, identities like the Idempotent Law (A + A = A) and De Morgan's Laws are used to simplify Boolean expressions. This minimization reduces the physical number of logic gates required on a microchip, lowering power consumption and heat generation. In PLC programming, applying these identities reduces the number of logic rungs, which directly decreases the processor scan time and improves machine reaction speeds.
How do you prove a trigonometric identity for an AC circuit?
You prove it by manipulating one side of the equation using established foundational identities (like the Pythagorean identity or quotient identities) until it perfectly matches the other side. In AC circuit analysis, you rarely need to prove identities from scratch; instead, you rely on standard tables of verified identities to convert time-domain sinusoidal products into phasor-domain additions.
Is Ohm's Law considered a mathematical identity?
No. Ohm's Law (V = IR) is a physical law and an empirical model, not a mathematical identity. It describes the behavior of specific materials (ohmic conductors) under specific conditions. If you apply it to a non-linear component like a diode or a thermistor, the relationship breaks down. A mathematical identity must hold true universally, regardless of the physical components involved.
Why do we use Euler's identity instead of standard trigonometry in electronics?
Standard trigonometry requires cumbersome product-to-sum formulas when multiplying two alternating waveforms (like voltage and current to find power). Euler's identity translates these trigonometric functions into complex exponentials. In the exponential domain, multiplying two waveforms simply requires adding their phase angles and multiplying their magnitudes, turning potential pages of calculus into a few lines of basic algebra.






