No history yet

Algebraic Foundations

Algebra's Ground Rules

Algebra is built on the same rules you learned in arithmetic. Think of it as a language for describing relationships between numbers. The core rules—like the commutative property (a+b=b+aa+b=b+a) and the distributive property (a(b+c)=ab+aca(b+c) = ab+ac)—are the grammar of this language. They allow us to rearrange and simplify expressions in predictable ways.

Manipulating expressions is a key skill. It often means simplifying them to make them easier to work with. One common task is combining like terms. Like terms are pieces of an expression that have the same variable raised to the same power. You can add or subtract their coefficients, which are the numbers in front of the variables.

For example, in the expression 5x2+2y3x2+4y5x^2 + 2y - 3x^2 + 4y, the terms 5x25x^2 and 3x2-3x^2 are like terms. So are 2y2y and 4y4y. Combining them simplifies the expression to 2x2+6y2x^2 + 6y.

Another essential tool is the distributive property, which lets us multiply a single term by a group of terms inside parentheses. This process, also called expanding, removes the parentheses.

Lesson image

Solving for the Unknown

Much of algebra revolves around solving equations to find the value of an unknown variable. Think of an equation as a perfectly balanced scale. To keep it balanced, whatever you do to one side, you must also do to the other.

With linear equations, the goal is to isolate the variable. We do this by applying inverse operations. Addition undoes subtraction, and multiplication undoes division. Let's solve one step-by-step.

Consider the equation 3x5=163x - 5 = 16. Our mission is to get xx by itself.

  1. First, we undo the subtraction. We add 5 to both sides to maintain balance. 3x5+5=16+53x - 5 + 5 = 16 + 5 3x=213x = 21

  2. Next, we undo the multiplication. We divide both sides by 3. 3x/3=21/33x / 3 = 21 / 3 x=7x = 7

Quadratic equations are a bit different. They involve a variable squared, like x2x^2, and can have up to two solutions. The standard form is ax2+bx+c=0ax^2 + bx + c = 0.

Lesson image

One way to solve these is by factoring. This involves rewriting the equation as a product of two expressions that equals zero. This method relies on a simple truth: if two numbers multiply to zero, at least one of them must be zero.

For x2+5x+6=0x^2 + 5x + 6 = 0, we look for two numbers that multiply to 6 and add to 5. Those numbers are 2 and 3. So we can factor the equation: (x+2)(x+3)=0(x+2)(x+3) = 0

Now, either x+2=0x+2=0 or x+3=0x+3=0. Solving these gives us the two solutions: x=2x=-2 and x=3x=-3.

When factoring isn't easy, the quadratic formula is a reliable tool that works for any quadratic equation.

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

Simply identify the values of aa, bb, and cc from your equation and plug them into the formula. The ±\pm symbol means you'll perform the calculation once with addition and once with subtraction to find the two potential solutions.

Working with Inequalities

Inequalities compare values that aren't equal, using symbols like >> (greater than) and \le (less than or equal to). You can solve them much like equations, with one critical difference.

When you multiply or divide both sides of an inequality by a negative number, you must flip the direction of the inequality sign.

Let's see this in action with the inequality 2x+3>9-2x + 3 > 9.

  1. First, subtract 3 from both sides: 2x>6-2x > 6

  2. Now, divide both sides by -2. Because we're dividing by a negative number, we must flip the > to a <. x<3x < -3

The solution isn't just one number, but a whole range of numbers: any value less than -3.