2.1 Algebraic Equations, Polynomials & Complex Numbers

Key Takeaways

  • The quadratic discriminant D = b^2 - 4ac dictates root characteristics: real distinct (D > 0), real repeated (D = 0), or complex conjugate pairs (D < 0), with Vieta's relations x_1 + x_2 = -b/a and x_1 * x_2 = c/a.
  • The Remainder Theorem states P(r) is the remainder when P(x) is divided by (x - r), while Vieta's formulas extend root-coefficient relationships to n-th degree polynomials.
  • Arithmetic (AP), Geometric (GP), and Harmonic (HP) progressions are connected by the fundamental mean inequality and identity GM^2 = AM * HM for positive terms.
  • The Binomial Theorem enables rapid evaluation of (a + b)^n expansions and specific term extraction via T_r = \binom{n}{r-1} a^{n-r+1} b^{r-1}.
  • In electrical engineering, complex numbers represent AC phasors and impedances, utilizing Euler's identity e^{j\theta} = \cos\theta + j\sin\theta and De Moivre's Theorem z^n = r^n \angle (n\theta) for calculations.
Last updated: August 2026

2.1 Algebraic Equations, Polynomials & Complex Numbers

Algebraic manipulation, polynomial analysis, and complex number theory form the cornerstone of engineering mathematics for the PRC Registered Electrical Engineer (REE) Licensure Examination. Electrical engineering applications rely heavily on these fundamental mathematical concepts—from solving network loop equations to evaluating AC phasor networks.


1. Quadratic Equations & Roots

A quadratic equation is a second-degree polynomial equation in standard form:

ax2+bx+c=0(a0)ax^2 + bx + c = 0 \quad (a \neq 0)

The Quadratic Formula & Discriminant

The roots $x_1, x_2$ are given by:

x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

The term under the radical, $D = b^2 - 4ac$, is the discriminant. It dictates the nature of the roots:

Discriminant ValueNature of RootsGraphical Interpretation
$D > 0$Two real, distinct rootsCurve intersects the x-axis at two distinct points
$D = 0$One real repeated root (double root)Curve is tangent to the x-axis at one point
$D < 0$Two complex conjugate roots ($a \pm j b$)Curve does not intersect the x-axis

Vieta's Formulas for Quadratic Equations

For any quadratic equation $ax^2 + bx + c = 0$ with roots $x_1$ and $x_2$:

Sum of roots: x1+x2=ba\text{Sum of roots: } x_1 + x_2 = -\frac{b}{a}

Product of roots: x1x2=ca\text{Product of roots: } x_1 \cdot x_2 = \frac{c}{a}

Sum of squares of roots: x12+x22=(x1+x2)22x1x2=(ba)22(ca)=b22aca2\text{Sum of squares of roots: } x_1^2 + x_2^2 = (x_1 + x_2)^2 - 2 x_1 x_2 = \left(-\frac{b}{a}\right)^2 - 2\left(\frac{c}{a}\right) = \frac{b^2 - 2ac}{a^2}

Key Board Exam Application: If a quadratic equation has roots $x_1$ and $x_2$, the equation can be reconstructed as: x2(x1+x2)x+(x1x2)=0x^2 - (x_1 + x_2)x + (x_1 x_2) = 0


2. Polynomial Theorems & Higher-Degree Equations

Remainder Theorem & Factor Theorem

  • Remainder Theorem: If a polynomial $P(x)$ is divided by $(x - r)$, the remainder is $R = P(r)$.
  • Factor Theorem: A linear expression $(x - r)$ is a factor of $P(x)$ if and only if $P(r) = 0$.

Rational Root Theorem & Synthetic Division

For a polynomial with integer coefficients $a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0 = 0$, any rational root $x = p/q$ must satisfy:

  • $p$ is an integer factor of the constant term $a_0$.
  • $q$ is an integer factor of the leading coefficient $a_n$.

Vieta's Formulas for Cubic Equations

For a cubic equation $a x^3 + b x^2 + c x + d = 0$ with roots $x_1, x_2, x_3$:

x1+x2+x3=bax_1 + x_2 + x_3 = -\frac{b}{a}

x1x2+x2x3+x3x1=cax_1 x_2 + x_2 x_3 + x_3 x_1 = \frac{c}{a}

x1x2x3=dax_1 x_2 x_3 = -\frac{d}{a}


3. Progressions (Arithmetic, Geometric, Harmonic)

Arithmetic Progression (AP)

An Arithmetic Progression is a sequence where each term after the first is obtained by adding a constant difference $d$ to the preceding term.

  • $n$-th term: $a_n = a_1 + (n - 1)d$
  • Sum of $n$ terms: $S_n = \frac{n}{2} [2a_1 + (n - 1)d] = \frac{n}{2} (a_1 + a_n)$
  • Arithmetic Mean (AM): The arithmetic mean between two numbers $a$ and $b$ is $\text{AM} = \frac{a + b}{2}$.

Geometric Progression (GP)

A Geometric Progression is a sequence where each term after the first is obtained by multiplying the preceding term by a constant ratio $r$.

  • $n$-th term: $a_n = a_1 r^{n-1}$
  • Sum of finite $n$ terms ($r \neq 1$): $S_n = \frac{a_1 (1 - r^n)}{1 - r} = \frac{a_1 (r^n - 1)}{r - 1}$
  • Sum of an Infinite GP ($|r| < 1$): $S_\infty = \frac{a_1}{1 - r}$
  • Geometric Mean (GM): The geometric mean between two positive numbers $a$ and $b$ is $\text{GM} = \sqrt{ab}$.

Harmonic Progression (HP)

A Harmonic Progression is a sequence of numbers whose reciprocals form an arithmetic progression.

  • Harmonic Mean (HM): The harmonic mean between two positive numbers $a$ and $b$ is: HM=2aba+b\text{HM} = \frac{2ab}{a + b}

Fundamental Relationship Between Means

For any two positive unequal numbers $a$ and $b$:

AM>GM>HM\text{AM} > \text{GM} > \text{HM}

GM2=AMHM\text{GM}^2 = \text{AM} \cdot \text{HM}


4. Binomial Theorem

The Binomial Theorem provides the algebraic expansion of powers of a binomial $(a + b)^n$:

(a+b)n=k=0n(nk)ankbk=(n0)an+(n1)an1b+(n2)an2b2++(nn)bn(a + b)^n = \sum_{k=0}^{n} \binom{n}{k} a^{n-k} b^k = \binom{n}{0} a^n + \binom{n}{1} a^{n-1}b + \binom{n}{2} a^{n-2}b^2 + \dots + \binom{n}{n} b^n

where the binomial coefficient is:

(nk)=C(n,k)=n!k!(nk)!\binom{n}{k} = C(n,k) = \frac{n!}{k!(n - k)!}

Properties of Binomial Expansion

  1. Total Number of Terms: The expansion of $(a + b)^n$ contains $n + 1$ terms.
  2. The $r$-th Term Formula: The $r$-th term $T_r$ in the expansion of $(a + b)^n$ is: Tr=(nr1)anr+1br1T_r = \binom{n}{r - 1} a^{n - r + 1} b^{r - 1}
  3. Sum of Coefficients: Setting $a = 1$ and $b = 1$, the sum of all binomial coefficients is: k=0n(nk)=2n\sum_{k=0}^{n} \binom{n}{k} = 2^n

5. Complex Numbers & Phasor Algebra in Electrical Engineering

In electrical engineering, the imaginary unit is denoted by $j = \sqrt{-1}$ to avoid confusion with electric current $i$.

Three Equivalent Representations

FormExpressionConversion Formulas
Rectangular Form$z = a + j b$$a = r \cos\theta$, $b = r \sin\theta$
Polar Form$z = r \angle \theta$$r = \sqrt{a^2 + b^2}$, $\theta = \arctan\left(\frac{b}{a}\right)$
Exponential Form$z = r e^{j\theta}$Euler's Identity: $e^{j\theta} = \cos\theta + j \sin\theta$

Mathematical Operations on Complex Numbers

  • Addition / Subtraction (Rectangular Only): (a1+jb1)±(a2+jb2)=(a1±a2)+j(b1±b2)(a_1 + j b_1) \pm (a_2 + j b_2) = (a_1 \pm a_2) + j (b_1 \pm b_2)
  • Multiplication (Polar Preferred): (r1θ1)(r2θ2)=(r1r2)(θ1+θ2)(r_1 \angle \theta_1) \cdot (r_2 \angle \theta_2) = (r_1 r_2) \angle (\theta_1 + \theta_2)
  • Division (Polar Preferred): r1θ1r2θ2=(r1r2)(θ1θ2)\frac{r_1 \angle \theta_1}{r_2 \angle \theta_2} = \left(\frac{r_1}{r_2}\right) \angle (\theta_1 - \theta_2)
  • De Moivre's Theorem (Powers & Roots): zn=(rθ)n=rn(nθ)=rn[cos(nθ)+jsin(nθ)]z^n = (r \angle \theta)^n = r^n \angle (n\theta) = r^n [\cos(n\theta) + j \sin(n\theta)] Roots: z1/n=r1/n(θ+2kπn)for k=0,1,2,,n1\text{Roots: } z^{1/n} = r^{1/n} \angle \left(\frac{\theta + 2k\pi}{n}\right) \quad \text{for } k = 0, 1, 2, \dots, n-1

Solved Practice Examples

Example 1: Quadratic Equations & Vieta's Application

Problem: Find the value of $k$ such that the roots of $2x^2 - kx + 8 = 0$ satisfy $x_1 = 2 x_2$.

Solution:

  1. By Vieta's formulas: x1+x2=k2,x1x2=82=4x_1 + x_2 = \frac{k}{2}, \quad x_1 \cdot x_2 = \frac{8}{2} = 4
  2. Substitute $x_1 = 2 x_2$ into the product equation: (2x2)x2=4    2x22=4    x22=2    x2=±2(2 x_2) \cdot x_2 = 4 \implies 2 x_2^2 = 4 \implies x_2^2 = 2 \implies x_2 = \pm \sqrt{2}
  3. Find $x_1$: x1=2(±2)=±22x_1 = 2 (\pm \sqrt{2}) = \pm 2\sqrt{2}
  4. Calculate $k$: k2=x1+x2=22+2=32    k=628.485\frac{k}{2} = x_1 + x_2 = 2\sqrt{2} + \sqrt{2} = 3\sqrt{2} \implies k = 6\sqrt{2} \approx 8.485

Example 2: Complex Impedance & De Moivre's Powers

Problem: An electrical impedance is given by $Z = 3 + j4\ \Omega$. Compute $Z^4$ in polar and rectangular form.

Solution:

  1. Convert $Z$ to polar form: r=32+42=5r = \sqrt{3^2 + 4^2} = 5 θ=arctan(43)53.1301\theta = \arctan\left(\frac{4}{3}\right) \approx 53.1301^\circ Z=553.1301 ΩZ = 5 \angle 53.1301^\circ\ \Omega
  2. Apply De Moivre's Theorem for $n = 4$: Z4=54(4×53.1301)=625212.5204Z^4 = 5^4 \angle (4 \times 53.1301^\circ) = 625 \angle 212.5204^\circ
  3. Convert back to rectangular form: a=625cos(212.5204)=625(0.8432)=527a = 625 \cos(212.5204^\circ) = 625 (-0.8432) = -527 b=625sin(212.5204)=625(0.5376)=336b = 625 \sin(212.5204^\circ) = 625 (-0.5376) = -336 Z4=527j336Z^4 = -527 - j336
Loading diagram...
Complex Number Representations & Conversion Flow
Test Your Knowledge

For the quadratic equation $3x^2 - 12x + 15 = 0$, what is the sum of the squares of its roots ($x_1^2 + x_2^2$)?

A
B
C
D
Test Your Knowledge

An infinite geometric series has a first term $a_1 = 12$ and a sum $S_\infty = 36$. What is the common ratio $r$ of the series?

A
B
C
D
Test Your Knowledge

Given an AC impedance $Z = 3 + j4\ \Omega$, what is the value of $Z^3$ in polar form?

A
B
C
D