No history yet

Algebra Fundamentals

Operations with Real Numbers

Before diving into equations, we need to be comfortable with the building blocks: real numbers. These are the numbers you see on a number line, from negatives to positives, including fractions and decimals. When we work with them, they follow a few consistent rules that make algebra predictable.

PropertyFor AdditionFor Multiplication
Commutativea+b=b+aa + b = b + aa×b=b×aa \times b = b \times a
Associative(a+b)+c=a+(b+c)(a + b) + c = a + (b + c)(a×b)×c=a×(b×c)(a \times b) \times c = a \times (b \times c)
Distributivea×(b+c)=(a×b)+(a×c)a \times (b+c) = (a \times b) + (a \times c)N/A

The commutative property means order doesn't matter. The associative property means you can regroup numbers without changing the result. The distributive property is how multiplication interacts with addition or subtraction inside parentheses. You'll use it constantly to simplify expressions.

To keep our calculations consistent, we follow a specific order of operations. You might know it as PEMDAS.

Parentheses Exponents Multiplication and Division (from left to right) Addition and Subtraction (from left to right)

Solving Linear Equations and Inequalities

An equation is a statement that two things are equal. A linear equation is one where the variable isn't raised to any power higher than one. Think of it as a balanced scale. Whatever you do to one side, you must do to the other to keep it balanced.

The goal is always to isolate the variable, to get it by itself on one side of the equals sign. We do this by performing inverse operations. The inverse of addition is subtraction, and the inverse of multiplication is division.

3x5=103x5+5=10+53x=153x3=153x=5\begin{aligned} 3x - 5 &= 10 \\ 3x - 5 + 5 &= 10 + 5 \\ 3x &= 15 \\ \frac{3x}{3} &= \frac{15}{3} \\ x &= 5 \end{aligned}

Inequalities work almost exactly the same way. The only difference is that instead of an equals sign, you have symbols like << (less than), >> (greater than), \le (less than or equal to), or \ge (greater than or equal to).

There's one crucial rule to remember: if you multiply or divide both sides of an inequality by a negative number, you must flip the direction of the inequality sign.

2x+4>102x>62x2<62x<3\begin{aligned} -2x + 4 &> 10 \\ -2x &> 6 \\ \frac{-2x}{-2} &< \frac{6}{-2} \\ x &< -3 \end{aligned}

Understanding Functions

A function is a rule that assigns exactly one output for each given input. Think of it like a machine. You put something in (the input), the machine does something to it, and something new comes out (the output). For any specific input you use, you will always get the same output.

function

noun

A relation between a set of inputs and a set of permissible outputs with the property that each input is related to exactly one output.

We call the set of all possible inputs the domain, and the set of all possible outputs the range. We often write functions using a special notation, like f(x)=2x+1f(x) = 2x + 1. This is read as "f of x equals 2x plus 1." The f(x)f(x) part is just another way of writing the output variable, usually yy.

To evaluate a function, you just replace the variable with the given input value. For example, to find f(3)f(3) for the function f(x)=2x+1f(x) = 2x + 1, we substitute 3 for xx:

f(3)=2(3)+1=6+1=7f(3) = 2(3) + 1 = 6 + 1 = 7.

So, for an input of 3, the output is 7.

Working with Polynomials

A polynomial is an expression made of variables, constants, and exponents, combined using addition, subtraction, and multiplication. The exponents must be non-negative whole numbers.

We classify polynomials by their number of terms. A monomial has one term (5x25x^2), a binomial has two terms (3x13x - 1), and a trinomial has three terms (x2+4x+4x^2 + 4x + 4). The degree of a polynomial is the highest exponent of the variable.

PolynomialNameDegree
7x32x+17x^3 - 2x + 1Trinomial3
9x249x^2 - 4Binomial2
12x512x^5Monomial5

To add or subtract polynomials, you simply combine like terms. Like terms are terms that have the exact same variable part, including the exponent. You just add or subtract their coefficients.

(3x24x+8)+(2x2+5x3)=(3x2+2x2)+(4x+5x)+(83)=5x2+x+5\begin{aligned} &(3x^2 - 4x + 8) + (2x^2 + 5x - 3) \\ &= (3x^2 + 2x^2) + (-4x + 5x) + (8 - 3) \\ &= 5x^2 + x + 5 \end{aligned}

Multiplying polynomials involves using the distributive property. You must multiply every term in the first polynomial by every term in the second one. When multiplying binomials, a common method is FOIL.

First: Multiply the first terms in each binomial. Outer: Multiply the outer terms. Inner: Multiply the inner terms. Last: Multiply the last terms in each binomial.

(x+4)(x2)=(xx)+(x2)+(4x)+(42)=x22x+4x8=x2+2x8\begin{aligned} (x+4)(x-2) &= (x \cdot x) + (x \cdot -2) + (4 \cdot x) + (4 \cdot -2) \\ &= x^2 - 2x + 4x - 8 \\ &= x^2 + 2x - 8 \end{aligned}

Ready to check your understanding? Let's try a few questions.

Quiz Questions 1/6

Which property of real numbers is demonstrated by the equation 5(y+2)=5y+105(y + 2) = 5y + 10?

Quiz Questions 2/6

What is the correct first step to solve the linear equation 3x5=163x - 5 = 16?

These foundational concepts are the tools you'll use to solve more complex problems.