Linear Equations And Half Planes Explained

#Algebra
TL;DR
Linear equations and half planes describe one simple fact: a line $ax + by = c$ cuts the coordinate plane into two regions, and every point in the plane sits in one of them or on the line itself. Points where $ax + by < c$ fill one half-plane and points where $ax + by > c$ fill the other. To graph a linear inequality you draw the boundary line (solid for $\le$ or $\ge$, dashed for $<$ or $>$), test one point off the line, and shade the side that makes the inequality true.
BT
Bhanzu TeamLast updated on September 6, 202611 min read

What Are Linear Equations And Half Planes?

Linear equations and half planes are two halves of one idea: a linear equation draws a straight line, and that line splits the coordinate plane into two half-planes. A half-plane is all the points on one side of the line. The line itself is the boundary line, the border that separates the two regions.

Take any linear equation in two variables, written in the standard form $ax + by = c$. Every point $(x, y)$ in the plane does exactly one of three things:

  • It makes $ax + by = c$ true. The point lies on the boundary line.

  • It makes $ax + by < c$ true. The point lies in one half-plane.

  • It makes $ax + by > c$ true. The point lies in the other half-plane.

That is the whole structure. A linear equation is the fence; the two inequalities $<$ and $>$ are the two sides of it. This is why the graph of a linear inequality in two variables is always a half-plane, and it connects directly to linear inequalities and the wider family of inequalities.

How Does A Line Split The Plane Into Two Half Planes?

Start with a single line and one point off it. The point is either on one side or the other. There is no third option, and no way to get from one side to the other without crossing the line. That crossing is what makes the line a genuine border.

Take the equation $2x + y = 4$. Its boundary line passes through $(2, 0)$ and $(0, 4)$. Now test the origin $(0, 0)$, which is clearly not on that line:

$$2(0) + (0) = 0$$

Since $0 < 4$, the origin lands in the half-plane where $2x + y < 4$. Every other point on the same side of the line does the same thing. Every point on the far side makes $2x + y > 4$. The line is the exact break-even set where $2x + y$ equals $4$.

This is the two-variable version of something students already know. On a number line, the equation $x = 3$ marks one point, and it splits the line into $x < 3$ and $x > 3$. Move up to two variables and the single point becomes a whole line, while the two rays become two half-planes. For the one-variable picture, see graphing linear equations and linear equations in two variables.

What Is The Boundary Line, And When Is It Solid Or Dashed?

The boundary line comes straight from the linear equation. To draw it, replace the inequality sign with an equals sign and graph the line $ax + by = c$ as usual, using two intercepts or a table of values.

The inequality sign decides how you draw that line:

  • Solid line for $\le$ and $\ge$. The boundary is part of the solution, because points on the line make the inequality true (they satisfy the "or equal to" part).

  • Dashed line for $<$ and $>$. The boundary is not part of the solution, because points on the line make it equal, not strictly less or greater.

A quick way to remember it: the little bar under $\le$ and $\ge$ is the same bar you draw as a solid line. No bar under the symbol means no bar on the graph, so the line is dashed.

What Is The Difference Between An Open And A Closed Half Plane?

The solid-or-dashed choice has a name. A half-plane that includes its boundary line is a closed half-plane, drawn with a solid line. A half-plane that excludes its boundary line is an open half-plane, drawn with a dashed line.

Table: How the inequality symbol sets the boundary and the type of half-plane.

Inequality symbol

Boundary line

Half-plane type

Boundary included?

$\le$

Solid

Closed

Yes

$\ge$

Solid

Closed

Yes

$<$

Dashed

Open

No

$>$

Dashed

Open

No

Read this table before you draw anything. The symbol tells you the line style and whether the edge counts, and getting that pair right is half of a correct answer.

How Do You Use A Test Point To Pick The Correct Half Plane?

The boundary line shows where the two half-planes are. A test point tells you which one to shade. The method is short and never fails:

  1. Draw the boundary line (solid or dashed, from the symbol).

  2. Pick any point that is not on the line. The origin $(0, 0)$ is easiest whenever the line does not pass through it.

  3. Substitute that point into the original inequality.

  4. If the inequality is true, shade the side of the line that contains the test point. If it is false, shade the other side.

Example 1: Graph $x + 2y < 6$.

First the boundary line $x + 2y = 6$. Its intercepts are $(6, 0)$ and $(0, 3)$.

The symbol is $<$, so the line is dashed and the half-plane is open.

Now test the origin $(0, 0)$:

$$0 + 2(0) = 0$$

Since $0 < 6$ is true, shade the side of the line that contains the origin.

Final answer: a dashed line through $(6, 0)$ and $(0, 3)$, with the region below and to the left of it (the side holding the origin) shaded.

Example 2: When the line passes through the origin.

Graph $y > 2x$. The boundary line $y = 2x$ runs straight through $(0, 0)$, so the origin is on the line and cannot be the test point. Pick any other point instead, say $(1, 0)$:

$$0 > 2(1) \quad\Longrightarrow\quad 0 > 2 \ \text{(false)}$$

Since the test is false, shade the side that does not contain $(1, 0)$. The line is dashed here because the symbol is $>$.

Which Symbol Gives Which Half Plane? (A Quick Reference)

Once the boundary line is drawn, the whole task reduces to two decisions: the line style and the side. This table settles both at a glance.

Table: Reading a two-variable linear inequality into a graph.

Step

What to check

What to do

Boundary

Is the symbol $\le/\ge$ or $</>$?

Solid line for $\le/\ge$, dashed for $</>$

Side

Does a test point make it true?

Shade the test point's side if true, the other side if false

Test point

Is the origin on the line?

Use $(0,0)$ if not; otherwise pick any off-line point

Why Do Linear Equations And Half Planes Matter?

Half-planes look like a small graphing trick, but they are the bridge between single inequalities and real decision-making. A few reasons the idea earns its place:

  • They turn a condition into a region. A single inequality like "spend at most 6 hours" becomes a whole area of allowed choices once a second variable enters. The half-plane is the set of every option that satisfies the rule.

  • They stack. Real problems come with several rules at once. Each linear inequality is one half-plane, and the points that satisfy all of them together form the overlap of the half-planes. That overlap is called the feasible region, and it is the heart of linear programming.

  • They keep the geometry honest. Because a half-plane has a clear boundary and a clear inside, questions like "is this plan allowed?" become "is this point in the region?" A picture answers what a page of algebra would take much longer to check.

That last point is the deep reason half-planes appear so often. They convert a list of constraints into a shape you can see, and a shape you can see is a shape you can reason about.

Who Shaped The Study Of Inequalities And Half Planes?

Lines have been drawn on grids for centuries, but treating the regions between them as objects worth studying is more recent. The push came from people trying to solve real planning problems with many rules at once.

Two more mathematicians built the ground Dantzig stood on:

  • Joseph Fourier (1768–1830, France) gave one of the first systematic methods for handling systems of linear inequalities, now remembered in Fourier–Motzkin elimination.

  • Hermann Minkowski (1864–1909, Germany) studied how half-spaces (the higher-dimensional cousins of half-planes) fit together to build convex shapes, work that still underpins optimisation today.

Where Are Linear Equations And Half Planes Used In The Real World?

The same "one side of a line" idea runs quietly under a surprising range of planning.

  • Business and logistics: a factory with limits on labour, materials, and time writes each limit as a linear inequality, and the overlap of the half-planes shows every production plan that is actually possible.

  • Nutrition and diet planning: "at least this much protein, at most this many calories" are linear inequalities, and a balanced meal is a point inside the feasible region they carve out.

  • Computer graphics: deciding whether a pixel is inside a triangle is really three half-plane tests, one per edge, so half-planes help draw every shape on a screen.

  • Engineering feasibility: load limits, budget caps, and safety margins each become a half-plane, and a workable design is a point that satisfies all of them at once.

One small idea, one side of a line, scales up to run diets, factories, and the graphics on the screen in front of you.

What Are The Most Common Linear Equations And Half Planes Mistakes?

These three errors account for most lost marks on half-plane questions, confirmed against college-algebra inequality chapters and graphing-systems guides.

Drawing a solid line when it should be dashed (or the reverse).

Where it slips in:

A student reads $x + y < 5$, graphs the boundary, and draws it solid out of habit, or draws $x + y \le 5$ with a dashed line.

Don't do this:

Do not choose the line style from memory. The style is set by the symbol, not by the problem looking "closed."

The correct way:

Check the symbol first. A bar underneath ($\le$, $\ge$) means a solid line and a closed half-plane. No bar ($<$, $>$) means a dashed line and an open half-plane.

Shading the wrong half-plane.

Where it slips in:

A student tests a point, sees the inequality is false, and shades the side that contains the test point anyway.

Don't do this:

Do not assume the test point's side is always the answer. A false result means the correct region is on the other side.

The correct way:

Substitute the test point, then follow the rule exactly. True means shade the test point's side; false means shade the opposite side.

Choosing a test point that sits on the line.

Where it slips in:

The boundary line passes through the origin, but the student still tests $(0, 0)$, gets a true equation, and cannot tell which side to shade.

Don't do this:

Do not use a point that lies on the boundary. It satisfies the equation, so it gives no information about either side.

The correct way:

First check whether the line passes through the origin. If it does, pick any clearly off-line point such as $(1, 0)$ or $(0, 1)$, and test that instead.

Practice Problems On Linear Equations And Half Planes

Answers follow each problem.

  1. For the line $3x - y = 5$, which half-plane holds the origin?
    (Answer: test $(0,0)$: $3(0) - 0 = 0 < 5$, so the origin lies in the half-plane $3x - y < 5$.)

  2. Is the boundary solid or dashed for $x - y \le 2$?
    (Answer: solid, because $\le$ includes the boundary, making it a closed half-plane.)

  3. Graph $x + y > 4$. Which side is shaded?
    (Answer: dashed boundary through $(4,0)$ and $(0,4)$; test $(0,0)$ gives $0 > 4$, false, so shade the side away from the origin.)

  4. The line $y = 3x$ passes through the origin. Name a valid test point.
    (Answer: any point not on the line, for example $(1, 0)$ or $(0, 1)$.)

  5. Does $(2, 1)$ satisfy $2x + y \le 5$?
    (Answer: $2(2) + 1 = 5$, and $5 \le 5$ is true, so yes, the point lies on the closed boundary and counts as a solution.)

  6. Is $(0, 0)$ a solution of $y < -x + 2$?
    (Answer: $0 < -0 + 2$ gives $0 < 2$, true, so yes.)

Where Should You Go Next After Linear Equations And Half Planes?

Half-planes open onto some of the most useful math a student meets, and a few doors lead straight out of here.

  1. Linear inequalities. Tighten the one-variable and two-variable rules that decide the boundary and the shading.

  2. Graphing linear equations. Sharpen the boundary-line drawing itself, from intercepts to slope, so the half-plane part becomes automatic.

  3. Linear programming. See what happens when several half-planes overlap and you search their shared region for the best possible point.

If your child is building these foundations, a live Bhanzu trainer teaches linear equations and half planes starting from the "why" (the constraints and feasible regions the graph was built to model) in the Bhanzu algebra program.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

What are linear equations and half planes in simple terms?
A linear equation draws a straight line, and that line splits the coordinate plane into two half-planes, one on each side. Each half-plane is the graph of a linear inequality such as $ax + by < c$ or $ax + by > c$.
When is the boundary line solid and when is it dashed?
Solid for $\le$ and $\ge$, dashed for $<$ and $>$. The bar under $\le$ and $\ge$ tells you the boundary is included, so you draw a solid line; a strict $<$ or $>$ excludes the boundary, so you draw it dashed.
How do I know which half-plane to shade?
Pick a test point that is not on the line, usually the origin, and substitute it into the inequality. If the result is true, shade the side holding that point; if it is false, shade the other side.
What is the difference between an open and a closed half-plane?
A closed half-plane includes its boundary line and is drawn solid, matching $\le$ or $\ge$. An open half-plane excludes its boundary and is drawn dashed, matching $<$ or $>$.
Can I always use the origin as the test point?
No. The origin works only when the boundary line does not pass through $(0, 0)$. If the line goes through the origin, that point sits on the boundary and gives no information, so pick a different off-line point.
How do linear equations and half planes connect to systems of inequalities?
Each inequality in a system is one half-plane, and the solution to the whole system is the region where all the half-planes overlap. That shared region, the feasible region, is the starting point for linear programming. These topics appear in India's NCERT Class 11 (Linear Inequalities) and in the United States under Common Core standard HSA-REI.D.12.
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →