No history yet

Linear Equations

The Straight Line Equation

At its heart, a linear equation describes a straight line. That's where the name comes from. It's a simple relationship between variables where none of them are raised to a power greater than one. You won't find any squares, cubes, or square roots here.

The most common form you'll see involves two variables, typically xx and yy.

Ax+By=CAx + By = C

For example, 2x+3y=62x + 3y = 6 is a linear equation. Every pair of xx and yy values that makes this equation true corresponds to a point on a specific straight line.

Solving for One Variable

Often, you'll have a linear equation with just one variable, and your goal is to find its value. Think of it as balancing a scale. Whatever you do to one side of the equation, you must do to the other to keep it balanced. The strategy is to isolate the variable.

Let's solve for xx in the equation 4x5=114x - 5 = 11.

  1. Add 5 to both sides: This cancels out the -5 on the left. The scale stays balanced. $4x - 5 + 5 = 11 + 5$ $4x = 16$

  2. Divide both sides by 4: This isolates $x$. $4x / 4 = 16 / 4$ $x = 4$

We found that x=4x=4 is the only value that makes the equation true. This is the solution.

Visualizing the Line

When an equation has two variables, like y=2x+1y = 2x + 1, there isn't just one solution. There are infinitely many pairs of (x,y)(x, y) values that work. If we plot all these points on a graph, they form a straight line.

This form of the equation is called the slope-intercept form, and it's incredibly useful for graphing.

y=mx+by = mx + b

The y-intercept is the point where the line crosses the vertical y-axis. It's the value of yy when x=0x=0. In our example y=2x+1y = 2x + 1, the y-intercept is 1.

The slope measures the steepness of the line. It's often described as "rise over run." A slope of 2 means that for every 1 unit you move to the right on the graph (the run), you move up 2 units (the rise).

Solving Systems of Equations

What if you have two linear equations at the same time? This is called a system of equations. The solution to a system is the specific (x,y)(x, y) point that makes both equations true. Graphically, this is the point where the two lines intersect.

Consider this system:

  1. y=2x3y = 2x - 3
  2. x+y=3x + y = 3

We can solve this algebraically using a couple of methods.

Substitution Method Since the first equation tells us that yy is equal to 2x32x - 3, we can substitute that expression for yy into the second equation:

x+(2x3)=3x + (2x - 3) = 3 3x3=33x - 3 = 3 3x=63x = 6 x=2x = 2

Now that we have xx, we plug it back into either original equation to find yy. Let's use the first one:

y=2(2)3y = 2(2) - 3 y=43y = 4 - 3 y=1y = 1

The solution is the point (2,1)(2, 1).

Another powerful technique is the elimination method.

Elimination Method The goal is to add or subtract the equations to eliminate one of the variables. Let's use a different system:

  1. $2x + 3y = 8$
  2. $4x - 3y = 4$

Notice that the $y$ terms, $+3y$ and $-3y$, are opposites. If we add the two equations together, the $y$ terms will cancel out.

2x+3y=8 +4x3y=4 6x+0y=12\begin{alignedat}{2} \\ &2x + 3y &= 8 \ \\ + \quad &4x - 3y &= 4 \ \\ \hline \quad &6x + 0y &= 12 \\ \end{alignedat}

This leaves us with a simple equation: 6x=126x = 12, which means x=2x = 2. Now, substitute x=2x=2 back into the first equation:

2(2)+3y=82(2) + 3y = 8 4+3y=84 + 3y = 8 3y=43y = 4 y=4/3y = 4/3

The solution is (2,4/3)(2, 4/3). This is the single point where the lines for these two equations cross.

Ready to test your knowledge?

Quiz Questions 1/6

Which of the following is a linear equation?

Quiz Questions 2/6

What is the solution to the equation 3x7=53x - 7 = 5?

Understanding these building blocks is the first step toward modeling more complex relationships.