7 min read

Compound Inequalities: AND vs OR

A focused explanation of overlap logic for chained and split inequalities.

Definition and Core Idea

Compound inequalities combine two conditions into one answer. The key question is whether both conditions must be true at the same time or whether either one may be true.

That logic determines the final set operation. AND problems keep only the overlap, while OR problems keep every region that satisfies at least one branch.

Rules, Forms, and Patterns

AND structure

a<xba < x \le b

Both comparisons must hold, so the answer is the overlap between the two intervals.

OR structure

xa or xbx \le a \text{ or } x \ge b

Either branch can be true, so the answer is a union of separate regions.

Absolute value split

Ak|A| \ge k

This often becomes an OR statement with two outer branches.

Worked Example

Prompt

3<2x+17-3 < 2x + 1 \le 7
01

Subtract 1 from every part of the chain to get -4 < 2x \le 6.

02

Divide every part by 2 to get -2 < x \le 3.

03

Read the answer as the overlap between values larger than -2 and values up to 3.

Result

(2,3](-2, 3]

Use the Calculator for This Topic

A concept becomes durable only when you can move from the rule back into a fresh problem. The calculator is useful here because it lets you test the exact pattern from this article, compare your work with the step list, and verify the final graph or notation.

Suggested input

3<2x+17-3 < 2x + 1 \le 7
01

Enter a chained statement or a semicolon-separated one-variable system.

02

Watch the calculator split the comparisons and then merge them into one final interval.

03

Compare the steps with the graph to see whether the answer is an overlap or a union.

Open the compound calculator

AND means overlap

When a value must satisfy both comparisons at the same time, the answer is the overlap of their intervals. Chained inequalities like -3 < 2x + 1 <= 7 are classic AND problems.

On a graph, AND means keep only the region both conditions share.

OR means union

When either condition can be true, keep both valid regions. Absolute-value inequalities with >= often produce OR answers.

In interval notation, OR becomes a union of separate intervals.

Put The Rule Into Practice

Concept pages are useful only if they transfer back into actual problem solving. After reading this guide, the best next step is to try several inequalities with slightly different signs, constants, and endpoints so you can see the pattern rather than memorize one worked example.

The calculator pages linked here are meant to shorten that feedback loop. You can test a new inequality, inspect the step list, and compare the graph with the notation output to confirm that your mental model is consistent.

Common Mistakes To Avoid

Moving terms correctly but forgetting to flip the inequality when dividing by a negative.

Stopping at a root calculation without converting the answer into intervals or a graph.

Checking algebra mechanically without testing whether the final interval really fits the original statement.

FAQ

How can I tell whether a compound inequality is AND or OR?

A chained statement is usually AND. A case split from an absolute-value >= inequality is usually OR.