Algebra (Part 4)

Imaginary Numbers

In my previous article, Algebra (Part 3), we met imaginary unit, \(i\). We have imaginary numbers because they provide solutions to equations that are unsolvable with real numbers alone, like \(x^{2}+1=0\).

From those statements, we got these statements.

\[\text{For } a \gt 0, \sqrt{-a} = i\sqrt{a}\]

Complex Numbers

\[a + bi\]

A complex number is a number that combines a real number and an imaginary number, written in the form \(a+bi\), where \(a\) is the real part and \(bi\) is the imaginary part.

\(-4 + 7i\) is an example of a complex number. If we want to plot it, the point is in (-4, 7). In general, the complex number, \(a + bi\), ‍corresponds to the point \((a, b)\) ‍in the complex plane.

-4 + 7i
\(-4 + 7i\)

Operations

Operation Formula
Addition \((a_1+b_1i)+(a_2+b_2i)=(a_1+a_2)+(b_1+b_2)i\)
Subtraction \((a_1+b_1i)-(a_2+b_2i)=(a_1-a_2)+(b_1-b_2)i\)
Multiplication \((a_1+b_1i)\cdot(a_2+b_2i)=(a_1a_2-b_1b_2)+(a_1b_2+a_2b_1)i\)
Division \(\frac{(a_1+b_1i)}{(a_2+b_2i)} = \frac{(a_1+b_1i)}{(a_2+b_2i)} \cdot \frac{(a_2-b_2i)}{(a_2-b_2i)} = \frac{(a_1+b_1i)(a_2-b_2i)}{(a_2+b_2i)(a_2-b_2i)} = \frac{(a_1a_2 + b_1b_2)+(b_1a_2 - a_1b_2)i}{(a_2)^2+(b_2)^2}\)

Operation Examples

Addition

\((21 + 2i) + (13 + 8i) = (21 + 13) + (2 + 8)i = 34 + 10i\)

Subtraction

\((7 - 10i) - (3 + 30i) = (7 - 3) - (-10 - 30)i = 4 - 40i\)

Multiplication

\begin{aligned} (1 + i) \cdot (3 - 5i) &= 1 \cdot 3 + 1 \cdot -5i + i \cdot 3 + i \cdot -5i \\\\ &= 3 - 5i + 3i - 5i^2 \\\\ &= 3 - 2i - 5 \cdot -1 \\\\ &= 8 - 2i \end{aligned}

Division

\begin{aligned} \frac{3 + 2i}{1 - i} &= \frac{3 + 2i}{1 - i} \cdot \frac{1 + i}{1 + i} \\\\ &= \frac{(3 + 2i)(1 + i)}{(1 - i)(1 + i)} \\\\ &= \frac{3 + 3i + 2i + 2i^2}{1^2 - i^2} \\\\ &= \frac{3 + 5i - 2}{1 + 1} \\\\ &= \frac{1 + 5i}{2} \\\\ &= \frac{1}{2} + \frac{5}{2}i \end{aligned}

Sign of Average (Rate) of Change (ARC) of Polynomials

In my previous article, Algebra (Part 2), we met Average of Change. Using the same equation, we can determine whether the average of the change is positive, negative, or zero.

Sign Meaning Behavior
Positive \((\gt 0)\) \(f(b) \gt f(a)\) the graph goes up as \(x\) increases
Negative \((\lt 0)\) \(f(b) \lt f(a)\) the graph goes down as \(x\) decreases
Zero \((= 0)\) \(f(b) = f(a)\) the graph is flat

Example

\[h(t) = (t + 3)^2 + 5\]

From the function above, let's find the sign of these intervals below.

Interval Calculation Sign
\(1 \le t \le 4\)
  • \(h(1) = (1 + 3)^2 + 5 = 21\), and
  • \(h(4) = (4 + 3)^2 + 5 = 54\)
\(54 \gt 21\), positive
\(-4 \le t \le -3\)
  • \(h(-4) = (-4 + 3)^2 + 5 = 6\), and
  • \(h(-3) = (-3 + 3)^2 + 5 = 5\)
\(5 \lt 6\), negative

Polynomial Arithmetic

In my previous article, Algebra (Part 3), we met a Polynomial. In this article, we will cover more about Polynomial Arithmetic, especially Addition, Subtraction, and Division.

To add and subtract polynomials, combine like terms (terms with the same variables and exponents) by adding or subtracting their coefficients. For subtraction, distribute the negative sign to each term in the second polynomial before combining like terms, which is the same as adding the opposite of each term.

Addition

\[P(x) + Q(x) = (P + Q)x\]

Example

\begin{aligned} (-3y^2 - 5y - 2) + (-7y^2 + 5y + 2) &= (-3 - 7)y^2 + (-5 + 5)y + (-2 + 2) \\\\ &= -10y^2 + 0y + 0 \\\\ &= -10y^2 \end{aligned}

Subtraction

\[P(x) - Q(x) = (P - Q)x\]

Example

\begin{aligned} (f^3 - 5f + 25) - (4f^2 - 12f + 9) &= f^3 - 4f^2 + (-5 - (-12))f + (25 - (+9)) \\\\ &= f^3 - 4f^2 + (-5 + 12)f + (25 - 9) \\\\ &= f^3 - 4f^2 + 7f + 16 \end{aligned}

Division

Polynomial division is an algorithm used to divide one polynomial by another polynomial of the same or lower degree. The Long Division method helps illustrate and understand this process more clearly. In some examples, there is another version of Long Division.

\begin{aligned} f(x) &= d(x) \cdot q(x) + r(x) \\\\ \frac{f(x)}{d(x)} &= q(x) + \frac{r(x)}{d(x)} \\\\ f(x) &= (x−c)q(x)+r \end{aligned}

If a polynomial \(f(x)\) is divided by \((x−c)\), then the remainder of that division is equal to \(f(c)\). It is called Remainder Theorem.

Example

Greatest Common Factor (GCF) of Monomials

In Pre-Algebra, we already knew about GCF. GCF of monomials is similar, but we have variables here. Here are examples.

Factoring Polynomials by the Distributive Property

\[x(a + b) = ax + bx\]

  1. Find the GCF.
  2. Divide each term by the GCF.

These examples make it clear.

Factoring Higher Degree Polynomials

More examples in Higher Degree Polynomials.

Quadratic Patterns

In my previous article, Algebra (Part 3), section Difference of Squares and Perfect Squares.

Let me rewrite the patterns here with \(U\) and \(V\). \(U\) and \(V\) are either constant integers or single-variable expressions.

\begin{aligned} (U + V)^2 &= U^2 + 2UV + V^2 \\\\ (U - V)^2 &= U^2 - 2UV + V^2 \\\\ (U + V)(U - V) &= U^2 - V^2 \end{aligned}

If the expression can't use any of those patterns, then we can't use any of the patterns, which means the expression is not factorable. Here are examples.

Geometric Series

A portion of the Rhind Mathematical Papyrus repaired by AI
A portion of the Rhind Mathematical Papyrus repaired by AI

A geometric sequence is a list of numbers where each term is obtained by multiplying the previous one (starting with the first term, \(a\)) by a fixed number called the common ratio \((r)\).

Sum of Geometric Series

\begin{aligned} S_n &= a + ar + ar^2 + \ldots + ar^{n−1} \\\\ rS_n &= \phantom{a + {}} ar + ar^2 + \ldots + ar^{n} \\\\ −rS_n &= \phantom{a {}} − ar − ar^2 − \ldots −ar^{n} \\\\ S_n - rS_n &= a - ar^{n} \\\\ S_n(1 - r) &= a(1 - r^{n}) \\\\ S_n &= \frac{a(1 - r^{n})}{1 - r} \end{aligned}

Examples

Reference

The primary reference is Khan Academy, with assistance from ChatGPT and Gemini as well.

Related Articles