beginner45 minLesson 1 of 3

Basic Equations & Algebra

Master fundamental algebraic equations, fractions, exponents, and logarithms with beautifully rendered mathematical notation.

Basic Equations & Algebra

Introduction

Mathematics is the language of the universe. In this lesson, we'll explore fundamental algebraic concepts using properly formatted mathematical notation that makes complex expressions easy to read and understand.

ℹ️Note

All equations in this course are rendered using KaTeX, a fast math typesetting system. You can write both inline math and display equations.


Linear Equations

A linear equation is the simplest type of equation. It has the general form:

ax+b=0ax + b = 0

where aa and bb are constants, and xx is the variable we want to solve for.

Solution:

x=bax = -\frac{b}{a}

Example

Solve 3x+6=03x + 6 = 0:

x=63=2x = -\frac{6}{3} = -2


Quadratic Equations

A quadratic equation has the form:

ax2+bx+c=0ax^2 + bx + c = 0

The solutions are given by the quadratic formula:

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

The expression under the square root, Δ=b24ac\Delta = b^2 - 4ac, is called the discriminant. It tells us:

  • If Δ>0\Delta > 0: two real solutions
  • If Δ=0\Delta = 0: one repeated solution
  • If Δ<0\Delta < 0: no real solutions (complex solutions)

Example

Solve x25x+6=0x^2 - 5x + 6 = 0:

a=1,b=5,c=6a = 1, \quad b = -5, \quad c = 6

Δ=(5)24(1)(6)=2524=1\Delta = (-5)^2 - 4(1)(6) = 25 - 24 = 1

x=5±12=5±12x = \frac{5 \pm \sqrt{1}}{2} = \frac{5 \pm 1}{2}

x1=3,x2=2x_1 = 3, \quad x_2 = 2


Exponents and Powers

The laws of exponents are fundamental to algebra:

RuleFormula
Productaman=am+na^m \cdot a^n = a^{m+n}
Quotientaman=amn\frac{a^m}{a^n} = a^{m-n}
Power(am)n=amn(a^m)^n = a^{mn}
Zeroa0=1a^0 = 1 (for a0a \neq 0)
Negativean=1ana^{-n} = \frac{1}{a^n}

Fractional Exponents

a1/n=ana^{1/n} = \sqrt[n]{a}

am/n=amn=(an)ma^{m/n} = \sqrt[n]{a^m} = \left(\sqrt[n]{a}\right)^m


Logarithms

The logarithm is the inverse of exponentiation. If by=xb^y = x, then:

logb(x)=y\log_b(x) = y

Common Logarithms

Natural logarithm (base ee):

ln(x)=loge(x)\ln(x) = \log_e(x)

Common logarithm (base 10):

log(x)=log10(x)\log(x) = \log_{10}(x)

Logarithm Properties

logb(xy)=logb(x)+logb(y)\log_b(xy) = \log_b(x) + \log_b(y)

logb(xy)=logb(x)logb(y)\log_b\left(\frac{x}{y}\right) = \log_b(x) - \log_b(y)

logb(xn)=nlogb(x)\log_b(x^n) = n \cdot \log_b(x)

Change of base formula:

logb(x)=logk(x)logk(b)\log_b(x) = \frac{\log_k(x)}{\log_k(b)}


Systems of Equations

A system of linear equations can be written in matrix form:

Ax=bA\mathbf{x} = \mathbf{b}

where:

A=(a11a12a21a22),x=(x1x2),b=(b1b2)A = \begin{pmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{pmatrix}, \quad \mathbf{x} = \begin{pmatrix} x_1 \\ x_2 \end{pmatrix}, \quad \mathbf{b} = \begin{pmatrix} b_1 \\ b_2 \end{pmatrix}

For a 2×2 system, the solution is:

x1=det(A1)det(A),x2=det(A2)det(A)x_1 = \frac{\det(A_1)}{\det(A)}, \quad x_2 = \frac{\det(A_2)}{\det(A)}

where det(A)=a11a22a12a21\det(A) = a_{11}a_{22} - a_{12}a_{21}.


Practice Questions

Practice Question

What is the solution to the equation 2x + 4 = 0?

Practice Question

Using the quadratic formula, what is the discriminant of x² - 4x + 4 = 0?

Practice Question

Which logarithm property states that log_b(xy) = log_b(x) + log_b(y)?


Success

Key Takeaways

  • Linear equations have the form ax+b=0ax + b = 0 with solution x=b/ax = -b/a
  • Quadratic equations use the formula x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
  • Exponent laws simplify complex power expressions
  • Logarithms are the inverse of exponentiation
  • Systems of equations can be solved using matrices and determinants
Progress33%