No history yet

Algebra I

The Language of Algebra

Algebra extends the rules of arithmetic by using symbols, usually letters, to represent unknown numbers. This lets us build general rules and solve problems where we don't have all the information up front.

The basic building blocks are variables and expressions. A variable is a placeholder for a value that can change, while an expression is a combination of numbers, variables, and operations.

variable

noun

A symbol, typically a letter, that represents an unknown numerical value.

For example, if you buy some apples for $1.50 each and a bag for $2, the expression $1.50a + 2$ represents your total cost. Here, 'a' is the variable for the number of apples. The expression itself doesn't equal anything yet; it just describes a calculation.

Solving for the Unknown

When we set an expression equal to a specific value, we create an equation. The goal then becomes finding the value of the variable that makes the statement true. The simplest type is a linear equation.

3x7=113x - 7 = 11

To solve this, we isolate the variable. We use inverse operations to undo what's been done to xx. First, add 7 to both sides to cancel out the subtraction. Then, divide both sides by 3 to undo the multiplication.

3x7+7=11+73x - 7 + 7 = 11 + 7 which simplifies to 3x=183x = 18.

3x/3=18/33x / 3 = 18 / 3 which gives us x=6x = 6.

Sometimes, instead of a precise answer, we're interested in a range of possible values. This is where inequalities come in.

2x+5132x + 5 \ge 13

We solve inequalities much like equations. Subtract 5 from both sides to get 2x82x \ge 8, then divide by 2 to get x4x \ge 4. This means any number that is 4 or greater will make the original statement true.

The one special rule for inequalities is that if you multiply or divide both sides by a negative number, you must flip the direction of the inequality sign. For example, 2x>10-2x > 10 becomes x<5x < -5.

Working with Polynomials

Expressions can get more complex. A polynomial is an expression made of variables and coefficients, involving only addition, subtraction, multiplication, and non-negative integer exponents of variables.

Simple polynomials have special names. A polynomial with two terms is a binomial (e.g., x+4x + 4), and one with three terms is a trinomial (e.g., x2+3x+2x^2 + 3x + 2).

Just as you can multiply numbers to get a product, you can multiply polynomials. For example, to multiply (x+4)(x1)(x + 4)(x - 1), you use the distributive property. You multiply each term in the first binomial by each term in the second one:

x(x1)+4(x1)x(x - 1) + 4(x - 1) =x2x+4x4= x^2 - x + 4x - 4 =x2+3x4= x^2 + 3x - 4

Factoring is the reverse process. It means breaking a polynomial down into the simpler expressions that multiply together to produce it. Factoring x2+3x4x^2 + 3x - 4 would give you back (x+4)(x1)(x + 4)(x - 1).

Factoring is a key skill for solving more complex equations, especially quadratic equations.

Quadratic Equations

A quadratic equation is any equation that can be written in the standard form ax2+bx+c=0ax^2 + bx + c = 0, where aa, bb, and cc are numbers and aa is not zero. The x2x^2 term is what makes it quadratic.

Lesson image

The solutions to a quadratic equation are the values of xx where the parabola crosses the x-axis. There are a few ways to find these solutions. One way is by factoring. If we have the equation x25x+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 as:

(x2)(x3)=0(x - 2)(x - 3) = 0

For this product to be zero, one of the factors must be zero. So, either x2=0x - 2 = 0 or x3=0x - 3 = 0. This gives us two solutions: x=2x = 2 and x=3x = 3.

When factoring is difficult or impossible, we can use the quadratic formula. It works for any quadratic equation.

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

The part inside the square root, b24acb^2 - 4ac, is called the discriminant. It tells you how many real solutions the equation has.

  • If b24ac>0b^2 - 4ac > 0, there are two distinct real solutions.
  • If b24ac=0b^2 - 4ac = 0, there is exactly one real solution.
  • If b24ac<0b^2 - 4ac < 0, there are no real solutions (the solutions involve imaginary numbers).

Understanding Functions

A function is a rule that assigns a single output for every given input. Think of it like a machine: you put something in (the input), and it gives you one specific thing back (the output). We often write functions as f(x)f(x), read as "f of x", where xx is the input.

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.

For the linear function f(x)=2x+3f(x) = 2x + 3, if you input x=4x=4, the output is f(4)=2(4)+3=11f(4) = 2(4) + 3 = 11. For any given xx, you will only get one output.

We can visualize functions by graphing them on a coordinate plane. Each input-output pair, (x,f(x))(x, f(x)), becomes a point on the graph. For f(x)=2x+3f(x) = 2x + 3, the points (0,3)(0, 3), (1,5)(1, 5), and (4,11)(4, 11) are all on its graph. Connecting these points reveals a straight line, which is why it's called a linear function.

Quadratic functions, like f(x)=x25x+6f(x) = x^2 - 5x + 6, produce a U-shaped curve called a parabola. The graph provides a powerful visual way to understand the behavior of a function, showing where it increases, decreases, and crosses the axes.

These core concepts form the foundation of algebra, enabling you to model relationships and solve a huge variety of problems.