Complete Algebra Cheat Sheet & Formula Reference Guide

The Complete Algebra Cheat Sheet: Master Formula Reference Guide

Welcome to Revision Town's ultimate, all-encompassing guide to Algebra. Whether you are battling your way through the IB Mathematics curriculum, preparing for AP Calculus by strengthening your foundations, studying for your GCSE/IGCSEs, or simply a professional seeking to revitalize your quantitative skills, this is the definitive resource for you.

Algebra is often described as the gatekeeper of higher mathematics. It marks the historical transition from concrete arithmetic—calculating with known numbers—to abstract reasoning, where we use variables to represent the unknown. Mastery of algebra is not just about memorizing formulas; it is about learning a new language that describes patterns, relationships, and universal truths in physics, computer science, economics, and engineering.

As veteran mathematics educators at Revision Town, we have meticulously compiled this extensive study guide to serve as your single source of truth. We will not merely throw equations at you. We adhere to the highest standards of educational excellence (E-E-A-T): we will dissect every concept, provide the intuition and proofs behind the formulas, guide you through step-by-step examples, and highlight the classic pitfalls that cost students marks on exams. Bookmark this page, grab a notebook, and let’s demystify algebra.

1. The Fundamentals: Properties of Algebra & Real Numbers

Before constructing the skyscraper of advanced calculus, we must pour the concrete foundation. Algebra operates on a strict set of axioms applied to the Real Number system (\( \mathbb{R} \)). Understanding these fundamental properties is crucial because they are the legal "moves" you are allowed to make when solving an equation.

The Real Number System

Numbers in algebra fall into a hierarchy of sets:

  • Natural Numbers (\( \mathbb{N} \)): The counting numbers. {1, 2, 3, ...}
  • Whole Numbers (\( \mathbb{W} \)): Natural numbers including zero. {0, 1, 2, 3, ...}
  • Integers (\( \mathbb{Z} \)): Whole numbers and their negatives. {..., -2, -1, 0, 1, 2, ...}
  • Rational Numbers (\( \mathbb{Q} \)): Any number that can be expressed as a fraction \( \frac{p}{q} \) where \( p \) and \( q \) are integers, and \( q \neq 0 \). Examples: \( \frac{1}{2}, -3, 0.75, 0.333... \)
  • Irrational Numbers: Numbers that cannot be expressed as simple fractions. Their decimals go on forever without repeating. Examples: \( \pi, e, \sqrt{2} \).

The Core Properties of Real Numbers

Let \( a \), \( b \), and \( c \) be any real numbers. The following properties dictate how they interact:

Commutative Property

Order does not matter for addition or multiplication.

$$a + b = b + a$$

$$a \cdot b = b \cdot a$$

(Note: Subtraction and division are NOT commutative. \( 5 - 3 \neq 3 - 5 \)).

Associative Property

Grouping does not matter for addition or multiplication.

$$(a + b) + c = a + (b + c)$$

$$(a \cdot b) \cdot c = a \cdot (b \cdot c)$$

Distributive Property

Multiplication distributes over addition. This is arguably the most frequently used property in algebra for expanding brackets.

$$a(b + c) = ab + ac$$

Revision Town Warning: The Negative Sign Trap!
When distributing a negative number, you must distribute the negative sign to EVERY term inside the parentheses. For example, \( -3(x - 4) = -3x + 12 \). Failing to flip the sign of the second term is the #1 algebraic error made by students worldwide.

2. Linear Equations, Slopes, and Systems

A linear equation is an equation of the first degree, meaning the highest power of the variable is 1 (e.g., \( x^1 \)). When graphed on a Cartesian coordinate plane, these equations form perfectly straight lines.

Understanding Slope (Gradient)

The slope of a line, universally denoted by the letter \( m \), measures its steepness and direction. It is the ratio of the "rise" (change in y) over the "run" (change in x).

Slope Formula

Given two points \( (x_1, y_1) \) and \( (x_2, y_2) \):

$$m = \frac{\Delta y}{\Delta x} = \frac{y_2 - y_1}{x_2 - x_1} = \frac{\text{rise}}{\text{run}}$$

Geometric Interpretations:

  • If \( m > 0 \), the line rises from left to right.
  • If \( m < 0 \), the line falls from left to right.
  • If \( m = 0 \), the line is perfectly horizontal (\( y = c \)).
  • If \( m \) is undefined (division by zero), the line is perfectly vertical (\( x = c \)).

The Three Forms of a Linear Equation

Depending on the information you are given, you will write the equation of a line in one of three standard formats:

1. Slope-Intercept Form

$$y = mx + b$$

Where \( m \) is the slope and \( b \) is the y-intercept (where the line crosses the y-axis). Best for quick graphing.

2. Point-Slope Form

$$y - y_1 = m(x - x_1)$$

Where \( m \) is the slope and \( (x_1, y_1) \) is any known point on the line. This is the most powerful form for creating an equation when you only have raw data.

3. Standard Form

$$Ax + By = C$$

Where \( A, B, \) and \( C \) are integers, and \( A \) should be positive. This form is particularly useful for finding x and y intercepts quickly by setting the other variable to zero, and for solving systems of equations.

Parallel & Perpendicular Lines

  • Parallel Lines: Have the exact same slope. \( m_1 = m_2 \). They will never intersect.
  • Perpendicular Lines: Intersect at a perfect 90-degree angle. Their slopes are negative reciprocals of each other, meaning \( m_1 \times m_2 = -1 \).

Distance & Midpoint Formulas

When analyzing coordinate geometry, finding the absolute length of a line segment or its exact center is a foundational skill.

Distance Formula: $$d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$$

Midpoint Formula: $$M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2} \right)$$

Systems of Linear Equations

A "system" is simply two or more equations occurring at the same time. Solving a system of two linear equations means finding the exact \( (x, y) \) coordinate where the two lines intersect. There are three primary methods:

  1. Graphing: Draw both lines on an axis. The intersection point is the solution. Good for visual intuition, bad for precision if the answer is a fraction.
  2. Substitution: Isolate one variable in the first equation (e.g., \( y = 2x + 1 \)) and plug that entire expression into the second equation. This reduces a two-variable problem into a solvable one-variable problem.
  3. Elimination (Addition Method): Multiply one or both equations by constants so that when you add the equations vertically, one of the variables cancels out (equals zero).

3. Quadratic Equations & The Parabola

Moving up one degree, we encounter quadratics. A quadratic equation is a second-degree polynomial. Graphically, instead of a straight line, it produces a symmetrical U-shape called a parabola. Quadratics are the mathematical language of gravity, projectile motion, and optimization.

Standard Form of a Quadratic

$$y = ax^2 + bx + c$$

Where \( a \neq 0 \).
- If \( a > 0 \), the parabola opens upwards (like a smile) and has a minimum point.
- If \( a < 0 \), the parabola opens downwards (like a frown) and has a maximum point.

Finding the Roots (x-intercepts)

Solving a quadratic equation \( ax^2 + bx + c = 0 \) means finding the values of \( x \) where the parabola crosses the x-axis. These are called roots, zeroes, or solutions.

Method A: Factoring

If the quadratic is easily factorable, we use the Zero Product Property. If \( A \times B = 0 \), then either \( A = 0 \) or \( B = 0 \).

Example: \( x^2 - 5x + 6 = 0 \) factors into \( (x - 2)(x - 3) = 0 \). Therefore, \( x = 2 \) or \( x = 3 \).

Method B: Completing the Square

This method forces a perfect square trinomial. To convert from standard form to vertex form algebraically:

$$ax^2 + bx + c = a\left(x + \frac{b}{2a}\right)^2 + \left(c - \frac{b^2}{4a}\right)$$

From this, we easily extract the vertex coordinates: \( h = \frac{-b}{2a} \) and \( k = c - \frac{b^2}{4a} \).

Method C: The Quadratic Formula

When factoring is impossible or too difficult (e.g., irrational roots), the Quadratic Formula is your unbreakable tool. It is actually derived by completing the square on the generic equation \( ax^2 + bx + c = 0 \).

The Quadratic Formula

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

Vertex Form & Root Properties

Beyond standard form, Vertex form is highly useful for instantly identifying the minimum or maximum point of the parabola without graphing.

Vertex Form: $$y = a(x - h)^2 + k$$

The vertex is located exactly at point \( (h, k) \). The parabola opens upward if \( a > 0 \) and downward if \( a < 0 \).

Sum and Product of Roots

Often, exams will ask you to find properties of the roots without actually solving for them. If \( \alpha \) and \( \beta \) are the roots:

Sum of Roots: $$\alpha + \beta = \frac{-b}{a}$$

Product of Roots: $$\alpha \times \beta = \frac{c}{a}$$

🎯 Strategy: Use factoring when possible for simple quadratics. Use the quadratic formula for complex coefficients or when factoring is difficult. Completing the square is strictly useful when finding the vertex or for deriving the quadratic formula.

The Discriminant

The expression tucked underneath the square root in the quadratic formula, \( \Delta = b^2 - 4ac \), is called the discriminant. It is a mathematical scout that tells you what kind of answers you are about to get without having to solve the whole equation.

  • If \( b^2 - 4ac > 0 \): The square root of a positive number yields two real values (\( \pm \)). The parabola crosses the x-axis twice. Two distinct real roots.
  • If \( b^2 - 4ac = 0 \): The square root of 0 is 0. The \( \pm \) becomes irrelevant. The vertex of the parabola rests exactly on the x-axis. One repeating real root (a perfect square).
  • If \( b^2 - 4ac < 0 \): You are asked to take the square root of a negative number. This yields imaginary numbers. The parabola hovers above or below the x-axis and never touches it. No real roots (two complex roots).

4. Polynomials & Rational Expressions

A polynomial is an expression consisting of variables and coefficients, that involves only the operations of addition, subtraction, multiplication, and non-negative integer exponents of variables. Quadratics are polynomials of degree 2. Cubics are degree 3. Quartics are degree 4.

Essential Polynomial Identities

Mastering these algebraic identities is the secret to quickly factoring complex expressions. Memorize them carefully.

Squares & Three-Term Expansions

Difference of Squares: $$a^2 - b^2 = (a - b)(a + b)$$

Perfect Squares: $$a^2 \pm 2ab + b^2 = (a \pm b)^2$$

Sum of Squares (Rearranged): $$a^2 + b^2 = (a + b)^2 - 2ab$$

Three-Term Squared: $$(a + b + c)^2 = a^2 + b^2 + c^2 + 2ab + 2bc + 2ca$$

$$(a - b - c)^2 = a^2 + b^2 + c^2 - 2ab + 2bc - 2ca$$

Cubic Identities

Sum of Cubes: $$a^3 + b^3 = (a + b)(a^2 - ab + b^2)$$

Difference of Cubes: $$a^3 - b^3 = (a - b)(a^2 + ab + b^2)$$

Perfect Cubes: $$(a \pm b)^3 = a^3 \pm 3a^2b + 3ab^2 \pm b^3$$

Advanced Identity: $$a^3 + b^3 + c^3 - 3abc = (a + b + c)(a^2 + b^2 + c^2 - ab - bc - ca)$$

Fourth Power Identities

Difference of Fourth Powers: $$a^4 - b^4 = (a - b)(a + b)(a^2 + b^2)$$

Perfect Fourth Powers: $$(a \pm b)^4 = a^4 \pm 4a^3b + 6a^2b^2 \pm 4ab^3 + b^4$$

💡 Recognition Tip: These identities are crucial for factoring. Always look for patterns like difference of squares or perfect square trinomials before attempting brute-force polynomial division.

The Fundamental Theorem of Algebra

This profound theorem states that a polynomial of degree \( n \) will always have exactly \( n \) roots in the complex number system. For example, the equation \( x^5 - 3x^2 + 2 = 0 \) is guaranteed to have exactly 5 solutions. Some might be real, some might be imaginary, and some might be identical (multiplicity), but they will total 5.

The Remainder and Factor Theorems

When dealing with polynomials of degree 3 or higher, factoring by grouping often fails. We must use polynomial division (or synthetic division). The Remainder and Factor theorems make this process highly efficient.

The Remainder Theorem

If a polynomial \( P(x) \) is divided by \( (x - c) \), the remainder is exactly equal to \( P(c) \).

The Factor Theorem

This is a direct consequence of the Remainder Theorem. A polynomial \( P(x) \) has a factor \( (x - c) \) if and only if \( P(c) = 0 \).

Example: Using the Factor Theorem

Determine if \( (x - 2) \) is a factor of \( P(x) = x^3 - 4x^2 + 5x - 2 \).

Solution: According to the theorem, if \( (x - 2) \) is a factor, then \( P(2) \) must equal zero.

Let's evaluate: \( P(2) = (2)^3 - 4(2)^2 + 5(2) - 2 \)

\( P(2) = 8 - 16 + 10 - 2 \)

\( P(2) = -8 + 8 = 0 \)

Because the remainder is 0, we have proven mathematically that \( (x - 2) \) is a perfectly clean factor of the polynomial, allowing us to divide it out and reduce the cubic to a solvable quadratic!

Rational Expressions and Asymptotes

A rational expression is simply a fraction where both the numerator and denominator are polynomials, such as \( \frac{x^2 - 9}{x^2 - 4x + 3} \). Analyzing these functions requires understanding where they "break" the rules of math.

  • Vertical Asymptotes: Occur when the denominator equals zero (because division by zero is undefined). In the example above, the denominator factors to \( (x-3)(x-1) \), so vertical boundaries occur at \( x=3 \) and \( x=1 \).
  • Holes (Removable Discontinuities): If a factor cancels out from both the top and bottom, it creates a "hole" in the graph rather than an infinite asymptote. Notice the numerator is \( (x-3)(x+3) \). Because \( (x-3) \) cancels, there is a hole at \( x=3 \), not an asymptote.

5. Functions, Graphs, and Transformations

In modern mathematics, we view algebra through the lens of functions. A function is like a machine: you feed it an input (\( x \)), it applies a specific rule, and it spits out exactly one output (\( y \) or \( f(x) \)).

Domain and Range

  • Domain: The set of all possible, valid input values (\( x \)) for which the function works. The two biggest restrictions on domain are: you cannot divide by zero, and you cannot take an even root (like a square root) of a negative number.
  • Range: The set of all possible resulting output values (\( y \)) after the domain has been applied.

Function Operations and Composition

Functions can be added, subtracted, multiplied, and divided. More importantly, they can be composed. Composition means putting one function entirely inside another.

$$(f \circ g)(x) = f(g(x))$$

This is read as "f of g of x". It means you calculate \( g(x) \) first, and use that result as the input for \( f(x) \).

Inverse Functions

An inverse function, denoted as \( f^{-1}(x) \), reverses the effect of the original function. If \( f(a) = b \), then \( f^{-1}(b) = a \). Geometrically, the graph of an inverse function is a perfect reflection of the original function across the diagonal line \( y = x \).

How to Find an Inverse Function

Find the inverse of \( f(x) = \frac{2x + 3}{x - 1} \).

  1. Replace \( f(x) \) with \( y \): \( y = \frac{2x + 3}{x - 1} \)
  2. Swap all x's and y's: \( x = \frac{2y + 3}{y - 1} \) (This step does the geometric reflection!)
  3. Use algebra to solve for the new \( y \):
    Multiply both sides by \( (y - 1) \): \( x(y - 1) = 2y + 3 \)
    Distribute: \( xy - x = 2y + 3 \)
    Gather all \( y \) terms on one side: \( xy - 2y = x + 3 \)
    Factor out \( y \): \( y(x - 2) = x + 3 \)
    Divide: \( y = \frac{x + 3}{x - 2} \)
  4. Replace \( y \) with \( f^{-1}(x) \): \( f^{-1}(x) = \frac{x + 3}{x - 2} \)

Function Transformations

Instead of graphing complex equations from scratch by plotting points, we memorize "parent graphs" (like \( y=x^2 \), \( y=|x| \), \( y=\sqrt{x} \)) and apply transformations based on constants added to the function.

Given the base function \( y = f(x) \), the transformed function is \( y = a \cdot f(b(x - h)) + k \):

  • + k (Outside): Vertical shift up by \( k \) units.
  • - h (Inside): Horizontal shift right by \( h \) units. (Note: Inside changes are counter-intuitive. \( (x - 3) \) moves right, \( (x + 3) \) moves left.)
  • a (Outside multiplier): Vertical stretch (if \( |a| > 1 \)) or compression (if \( |a| < 1 \)). If negative, reflects across the x-axis.
  • b (Inside multiplier): Horizontal compression/stretch. If negative, reflects across the y-axis.

6. Binomial Expansion & Pascal's Triangle

Expanding something like \( (a + b)^5 \) by hand is tedious and error-prone. The Binomial Theorem provides an elegant algebraic shortcut using combinatorics.

The Binomial Theorem

In the expansion of \( (a + b)^n \), each term can be described generally as \( ^nC_r \cdot a^{n-r} \cdot b^r \), where \( ^nC_r \) is the binomial coefficient.

$$(a + b)^n = ^nC_0 a^n b^0 + ^nC_1 a^{n-1} b^1 + ^nC_2 a^{n-2} b^2 + \dots + ^nC_n a^0 b^n$$

Binomial Coefficient (Combinations)

$$^nC_r = \binom{n}{r} = \frac{n!}{r!(n-r)!}$$

Where factorial \( n! = n \times (n-1) \times \dots \times 1 \), and \( 0! = 1 \).

Pascal's Triangle

Instead of calculating factorials, you can find the coefficients rapidly using Pascal's Triangle, where each number is the sum of the two numbers directly above it:

n = 0:             1
n = 1:          1    1
n = 2:       1    2    1
n = 3:    1    3    3    1
n = 4:  1    4    6    4    1
n = 5: 1    5   10   10   5    1
📝 Calculator Tip: Most scientific and graphing calculators have an nCr function (combination function) to quickly calculate binomial coefficients. This is incredibly useful for larger values of n where Pascal's Triangle becomes too large to draw!

Common Binomial Expansions

$$(a + b)^2 = a^2 + 2ab + b^2$$

$$(a - b)^2 = a^2 - 2ab + b^2$$

$$(a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3$$

$$(a - b)^3 = a^3 - 3a^2b + 3ab^2 - b^3$$

7. Exponents, Radicals, and Logarithms

Because exponents and logarithms are incredibly vast topics, Revision Town has created an entirely separate, massive study guide dedicated specifically to them. However, for a complete Algebra cheat sheet, we must list all fundamental laws here.

Core Exponent Rules

Basic Laws: \( x^1 = x \) | \( x^0 = 1 \)

Product & Quotient: \( x^m \cdot x^n = x^{m+n} \) | \( \frac{x^m}{x^n} = x^{m-n} \)

Power of Power & Product: \( (x^m)^n = x^{m \cdot n} \) | \( (x \cdot y)^n = x^n \cdot y^n \)

Negative & Fractional Exponents

Reciprocals: \( x^{-1} = \frac{1}{x} \) | \( x^{-n} = \frac{1}{x^n} \)

Radicals: \( x^{1/2} = \sqrt{x} \) | \( x^{1/n} = \sqrt[n]{x} \)

Advanced Exponent Rules

Rational Exponents: \( x^{m/n} = \sqrt[n]{x^m} = (\sqrt[n]{x})^m \)

Negative Rational: \( x^{-m/n} = \frac{1}{x^{m/n}} \)

Radical Properties: \( \sqrt{x} \cdot \sqrt{y} = \sqrt{xy} \)

⚠️ Common Mistake: Remember that \( x^m + x^n \neq x^{m+n} \). The exponent laws only apply to multiplication and division, not addition or subtraction!
Logarithm Definitions & Identities

Fundamental Definition: \( \log_a(x) = y \iff a^y = x \)

Identity: \( \log_a(a^x) = x \)

Inverse: \( a^{\log_a(x)} = x \)

Solving Equations: If \( a^x = b \), isolate x: \( x = \log_a(b) \). If \( \log_a(x) = b \), isolate x: \( x = a^b \).

Laws of Logarithms

1. Product Rule: \( \log_c(a) + \log_c(b) = \log_c(a \cdot b) \)

2. Quotient Rule: \( \log_c(a) - \log_c(b) = \log_c\left(\frac{a}{b}\right) \)

3. Power Rule: \( n \cdot \log_c(a) = \log_c(a^n) \)

4. Change of Base: \( \log_b(a) = \frac{\log_c(a)}{\log_c(b)} \)

Special Logarithms

Common Log: \( \log(x) = \log_{10}(x) \) (Standard calculator button)

Natural Log: \( \ln(x) = \log_e(x) \) (Base \( e \) logarithm, where \( e \approx 2.71828\dots \))

🎓 Pro Tip: When solving logarithmic equations, always check your solutions. Logarithms are only defined for strictly positive arguments, so any solution that makes a logarithm's argument negative or zero must be rejected as an extraneous solution.

8. Sequences and Series (Arithmetic & Geometric)

A sequence is an ordered list of numbers. A series is the sum of those numbers. We primarily study two types in pre-calculus algebra: Arithmetic (based on addition) and Geometric (based on multiplication).

Arithmetic Sequences

An arithmetic sequence has a constant common difference (\( d \)) between consecutive terms. Example: 3, 7, 11, 15... (where \( d = 4 \)).

nth Term Formula: $$u_n = u_1 + (n-1)d$$

Sum of n Terms (Series): $$S_n = \frac{n}{2}(2u_1 + (n-1)d)$$

Alternative Sum Formula: $$S_n = \frac{n}{2}(u_1 + u_n)$$

Where \( u_1 = \text{first term} \), \( d = \text{common difference} \), and \( n = \text{number of terms} \).

Geometric Sequences

A geometric sequence has a constant common ratio (\( r \)) between consecutive terms. Example: 2, 6, 18, 54... (where \( r = 3 \)).

nth Term Formula: $$u_n = u_1 \cdot r^{n-1}$$

Sum of n Terms: $$S_n = \frac{u_1(1 - r^n)}{1 - r} \quad (\text{when } r \neq 1)$$

Infinite Geometric Series

Can you add up an infinite amount of numbers and get a finite answer? Yes, but ONLY if the numbers are getting smaller fast enough. If the absolute value of the ratio is less than 1 (\( |r| < 1 \)), the sequence converges.

Sum to Infinity: $$S_{\infty} = \frac{u_1}{1 - r} \quad (\text{when } |r| < 1)$$

Sigma Notation (\( \Sigma \))

Sigma notation is a mathematical shorthand used to represent the summation of a sequence of terms.

$$ \sum_{n=1}^{k} a_n $$

Example: \( \sum_{n=1}^{10} 3n = 3(1) + 3(2) + 3(3) + \dots + 3(10) = 165 \)

💡 Key Insight: Arithmetic sequences represent linear growth (constant differences), while geometric sequences represent exponential growth (constant ratios). Accurately identifying the type of sequence is the crucial first step to applying the correct formula.

9. Inequalities & Absolute Values

Inequalities operate similarly to standard equations, but they represent a range of solutions rather than a single point.

Basic Inequality Rules

Addition Property: If \( a < b \), then \( a + c < b + c \)

Subtraction Property: If \( a < b \), then \( a - c < b - c \)

Multiplication (Positive): If \( a < b \) and \( c > 0 \), then \( ac < bc \)

Multiplication (Negative): If \( a < b \) and \( c < 0 \), then \( ac > bc \)

⚠️ Critical Rule: When multiplying or dividing both sides of an inequality by a negative number, the inequality sign MUST be reversed. This is one of the most common errors in all of algebra.

Absolute Value Inequalities

Absolute value measures the distance from zero. Therefore, absolute value inequalities must be split into two separate conditions:

Assuming \( a > 0 \):

Less Than (Intersection): \( |x| < a \implies -a < x < a \)

Greater Than (Union): \( |x| > a \implies x < -a \text{ OR } x > a \)

10. Complex Numbers & The Imaginary Unit

What happens when you need to solve \( x^2 = -1 \)? For centuries, mathematicians called this "impossible." Then they invented the imaginary unit, denoted by \( i \), defined specifically as the square root of negative one. This invention opened up the field of Complex Analysis, which is crucial for modern quantum mechanics and electrical engineering.

The Imaginary Unit

$$i = \sqrt{-1} \implies i^2 = -1$$

The powers of \( i \) operate in a cyclical pattern of four:
\( i^1 = i \)
\( i^2 = -1 \)
\( i^3 = -i \)
\( i^4 = 1 \)

Standard Form and the Complex Plane

A complex number \( z \) is written in standard form as \( z = a + bi \), where \( a \) is the real part and \( b \) is the imaginary part. We can graph these not on a normal XY plane, but on an Argand Plane, where the x-axis represents real numbers and the y-axis represents imaginary numbers.

Polar Form and Euler's Formula

Using trigonometry, we can express a complex number by its distance from the origin (modulus, \( r \)) and its angle (argument, \( \theta \)).

Polar Form: $$z = r(\cos\theta + i\sin\theta) \text{ often abbreviated as } r\text{cis}\theta$$

Euler's Formula (The crown jewel of mathematics): $$e^{i\theta} = \cos\theta + i\sin\theta$$

This leads to Euler's Identity: \( e^{i\pi} + 1 = 0 \), a single equation connecting the five most important constants in mathematics.

11. Matrices and Determinants

A matrix is a rectangular array of numbers arranged in rows and columns. Matrices are the foundation of Linear Algebra and are how computers render 3D graphics and handle massive datasets in machine learning.

Matrix Multiplication

Matrix multiplication is complex. To multiply matrix A by matrix B, the number of columns in A must equal the number of rows in B. You multiply the elements of the rows of the first matrix by the corresponding elements of the columns of the second matrix, summing the products. Importantly, \( A \times B \neq B \times A \).

The Determinant of a 2x2 Matrix

The determinant is a special scalar value that provides deep information about a matrix, particularly whether it has an inverse. For a 2x2 matrix:

If \( A = \begin{bmatrix} a & b \\ c & d \end{bmatrix} \)

$$\det(A) = |A| = ad - bc$$

The Inverse of a 2x2 Matrix

In matrix algebra, there is no "division." Instead, to solve an equation like \( AX = B \), you must multiply by the inverse of A (\( A^{-1} \)). A matrix only has an inverse if its determinant is NOT zero (a non-singular matrix).

$$A^{-1} = \frac{1}{\det(A)} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}$$

Notice the pattern: Swap the positions of 'a' and 'd'. Change the signs of 'b' and 'c'. Divide everything by the determinant.

12. Interactive Quadratic Equation Solver

Apply the concepts from Section 3 instantly. Enter the coefficients \( a, b, \) and \( c \) of any quadratic equation (\( ax^2 + bx + c = 0 \)). Our custom algorithm will calculate the discriminant, determine the nature of the roots, and output the precise algebraic solutions.

Revision Town Quadratic Calculator

13. Study Tips & Curricula Applications

Success in algebra is not about innate talent; it is about strategic practice. Here are expert tips from our educators at Revision Town:

  • Practice Regularly: Algebra skills improve with consistent practice. Work through varied problems daily rather than cramming the night before an exam.
  • Understand, Don't Memorize: Focus on understanding why formulas work rather than just memorizing them blindly.
  • Check Your Work: Always substitute your solutions back into the original equations to verify correctness.
  • Work Backwards: When stuck, try working from the answer choices backward (this is especially useful in multiple-choice exams like the SAT or ACT).
  • Identify Patterns: Train your eyes to recognize common algebraic patterns like difference of squares, perfect square trinomials, and factoring techniques.
  • Master the Basics First: Ensure you have rock-solid fundamentals in order of operations, fraction arithmetic, and basic equation solving before advancing to calculus.
  • Use Multiple Methods: Learn different approaches to solving problems (graphing, algebraic, numeric) to deepen your mathematical intuition.

Common Algebra Applications Across Curricula

  • IB Mathematics: Algebra forms the rigid foundation for both Analysis & Approaches (AA) and Applications & Interpretation (AI) courses, heavily appearing in Paper 1 and Paper 2 assessments.
  • AP Calculus: Strong algebraic manipulation skills are absolutely essential for differentiation, integration, and simplifying complex limits efficiently.
  • GCSE / IGCSE: Algebra comprises approximately 30% of the entire exam content, testing your ability to solve equations, rearrange complex formulas, and interpret graphs.
  • A-Level Mathematics: Tests advanced algebra, including partial fractions, mathematical induction, and complex algebraic manipulation.
  • SAT / ACT: Approximately 35-40% of the math section questions involve direct algebraic reasoning and rapid equation-solving.

14. Frequently Asked Questions (FAQ)

As part of our commitment to educational excellence, the experts at Revision Town have compiled answers to the most common algebraic stumbling blocks faced by our students.

What is the difference between an equation and an expression?
An expression is a mathematical phrase containing numbers, variables, and operators (e.g., \( 3x + 5 \)). It does not have an equals sign. You can simplify an expression, but you cannot "solve" it. An equation contains an equals sign showing that two expressions are equivalent (e.g., \( 3x + 5 = 14 \)). An equation allows you to solve for the specific value of the unknown variable.
How do you know whether a relation is a function?
By definition, a relation is a function if every valid input (x-value) maps to exactly one unique output (y-value). A single input cannot give you two different answers. Graphically, you can determine this rapidly using the Vertical Line Test: if you can draw a perfectly vertical line anywhere on the graph and it intersects the curve at more than one point, the relation is not a function (e.g., a circle is not a function).
What does the discriminant of a quadratic equation tell you?
The discriminant, denoted by \( \Delta \) and calculated as \( b^2 - 4ac \), acts as a diagnostic tool for quadratics. If it is positive, you will have two distinct real roots (crossing the x-axis twice). If it is exactly zero, you will have one repeating real root (the vertex touches the x-axis). If it is negative, you will have no real roots, resulting in two complex/imaginary solutions (the parabola floats above or below the x-axis).
What is the Fundamental Theorem of Algebra?
The Fundamental Theorem of Algebra states that every non-zero, single-variable polynomial of degree 'n' with complex coefficients has exactly 'n' roots in the complex number system. This guarantees that if you are looking at a cubic equation (\( x^3 \)), you must find exactly 3 roots. If you are looking at a quintic (\( x^5 \)), there are exactly 5 roots. Some may be repeated, and some may be imaginary, but they will always total the degree of the polynomial.
Are matrices commutative when multiplied?
No. Matrix multiplication is one of the rare mathematical operations that is not commutative. In almost all scenarios, \( A \times B \neq B \times A \). The order in which you multiply matrices completely changes the arithmetic. In fact, due to the dimensional rules of matrix multiplication (columns of the first must equal rows of the second), \( A \times B \) might be perfectly valid, while \( B \times A \) might be mathematically impossible to compute.
A

👨‍🏫 About the Author: Adam

Co-Founder @ Revision Town

Math Expert in Various Curricula: IB, AP, GCSE, IGCSE, A-Levels.

Dedicated to helping students master mathematics through comprehensive resources, clear explanations, and targeted exam preparation materials.

📧 info@revisiontown.com  |  🔗 Connect on LinkedIn

Final Thoughts on Your Algebra Journey

💪 Master these formulas through practice and understanding!
Visit RevisionTown.com for more comprehensive study materials.

1.1 Sequences

Arithmetic: +/− common difference

Arithmetic: +/− common difference

with u1 = a = 1st term, d = common difference.

Geometric: ×/÷ common ratio

Geometric: ×/÷ common ratio

with u1 = a = 1st term, r = common ratio.

Sigma notation

A shorthand to show the sum of a number of terms in a sequence.

sigma notation

1.2 Exponents and logarithms

Exponents

Exponents

Logarithms

    loga ax = x

    aloga b = b

Let ax = b, isolate x from the exponent: loga ax = x = loga b

Let loga x = b, isolate x from the logarithm: aloga x = x = ab

Laws of logarithms

Laws of logarithms

1.3. Binomial Expansion

In an expansion of a binomial in the form (a + b)n . Each term can be described as nCran−rbr, where nCr is the coefficient.

The full expansion can be written thus

Binomial Expansion

Find the coefficient using either pascals triangle

Binomial Expansion 1

Or the nCr function on your calculator