2.1.12 · D5Algebra — Introduction & Intermediate

Question bank — Compound inequalities — AND, OR

1,917 words9 min readBack to topic

Before the traps, three tiny pieces of vocabulary you will meet on every line. Say each one out loud once so it stops looking like a squiggle:

The whole topic then rests on three ideas to hold in your head:

  • AND = intersection () = the overlap where both conditions hold at once.
  • OR = union () = everything covered by at least one condition.
  • The compact form is secretly two ANDed inequalities, AND — never an OR.

Keep two coloured rays in mind: AND keeps only where the colours stack; OR keeps every spot that has any colour.


True or false — justify

Two spotlights on a stage: think about where you'd stand for each item.

AND simplifies to .
True. Both must hold, so you need the stricter one; every number bigger than 5 is automatically bigger than 3, so the overlap is .
OR simplifies to .
False. OR needs only one, so the looser condition wins; the union is because already satisfies "".
OR covers every real number.
False. It covers all reals except itself, which satisfies neither strict inequality; the answer is .
OR covers every real number.
True. The endpoint is now included on both sides (the and each catch it), so the union is all of .
is a valid way to write an OR statement.
False. The chained form means AND ; there is no chained notation for OR, which must stay as two separate inequalities.
and describe the same set.
True. Both say " is between and "; the first is just written right-to-left, so rewriting in increasing order gives the identical interval .
If two rays point away from each other, their AND is always empty.
True. AND is the overlap; rays like and never share a point, so their intersection is .
If two rays point away from each other, their OR is always all of .
False. OR leaves the gap uncovered; a union covers everything only if the rays overlap or touch.
" is between and " is a compound inequality even though it uses no AND word.
True. "Between" hides an AND: it means AND ; English words like between, within, from…to are AND in disguise.
AND has the same solution as AND .
True. AND is order-independent (intersection is commutative); both are empty because no number is simultaneously below 1 and above 4.

Spot the error

Each line contains a wrong step. Say what broke and why it felt right.

Student writes: (divided by , flipped nothing).
Error: dividing by a negative must flip both relation signs, and "" is impossible (nothing is above 2 yet below −3). Correct: , i.e. .
Student writes: (flipped only the left sign).
Error: you can't flip one sign in a chain — that produces a self-contradictory mixed statement. Both signs flip together, giving .
Student solves OR and reports .
Error: they used the AND (overlap) reasoning on an OR. OR wants the union, which keeps both rays: .
Student solves AND and reports .
Error: they took the union by keeping the looser ray. AND needs both, so only survives; the answer is .
Student writes the AND-solution of and as .
Error: the right endpoint came from , which includes 5, so it must be a closed bracket. Correct: .
Student "simplifies" OR to .
Error: they wrote the gap between the rays instead of the rays themselves, and even flipped inclusion. The union is — the two outer pieces, not the middle.
Student solves by adding 1 only to the middle: .
Error: an operation must hit all three parts or the chain no longer holds. Adding 1 everywhere gives , then .
Student claims AND has no solution "because the rays point apart".
Error: these rays point toward each other and overlap on ; that misread of direction wrongly triggered the empty-AND reflex.

Why questions

The "understand it, don't memorise it" core.

Why is AND the intersection and not just something we're told to memorise?
Because intersection is defined as "belongs to both sets," which is exactly what "condition 1 AND condition 2 both hold" means — the set operation is the logic, not a separate rule. See Set operations — union and intersection.
Why does AND collapse to the stricter inequality but their OR collapses to the looser one?
AND demands both, so it keeps only the smaller overlap (stricter bound); OR demands just one, so the weaker bound already satisfies it and the larger region wins.
Why is there a compact chained form for AND but never for OR?
The AND overlap is a single connected middle band, so one chain captures it; an OR of separated rays is two disconnected pieces that no single chain can express.
Why does dividing a three-part inequality by a negative flip both signs at once?
Each of the two inequalities in the chain reverses when multiplied by a negative (same rule as Linear inequalities in one variable); since both flip, the chain stays consistent — flipping only one would break it.
Why does "temperature between 20°C and 25°C" translate to AND, not OR?
"Between" requires the value to clear the lower bound and stay under the upper one simultaneously, so both conditions must hold — that's the definition of AND.
Why can an OR of two rays give all of while an AND of the same two rays gives a bounded interval?
OR keeps every point covered by either ray (their combined reach), while AND keeps only the shared overlap; overlapping rays can jointly cover the whole line yet share only a finite band.
Why does the empty set show up for AND but the whole line show up for OR in "away-pointing" cases?
Rays pointing apart share nothing (empty overlap → AND fails everywhere), yet if they also overlap or meet they can cover everything (full union → OR succeeds everywhere) — opposite operations, opposite extremes.
Why does absolute value turn into an AND but into an OR?
means the distance from 0 is small, trapping between and (both bounds → AND); means the distance is large, sending out past either end (one side or the other → OR). More in Absolute value inequalities.

Edge cases

The boundary and degenerate situations that trip people up.

Solve AND .
No solution, . No number can be both strictly above and strictly below 4; the strict inequalities exclude the meeting point 4 itself.
Solve AND .
Exactly — a single point. The overlap shrinks to the shared endpoint because both inequalities now include 4.
Solve OR .
Everything except 4: . The single point 4 satisfies neither strict condition, so the union punches a hole there.
Solve OR .
All reals . The endpoint 4 is caught by both closed pieces, so the union has no gap.
Solve AND (same condition twice).
Just . Intersecting a set with itself changes nothing; duplicate conditions are harmless.
Solve OR .
— all reals except ; the two open rays leave only that one excluded point.
What is the solution set of a "compound inequality" whose two parts are identical under OR, e.g. OR ?
. Union of a set with itself is the same set, so the OR adds nothing new.
In , what happens if , say ?
. The band has zero width — no number is both greater than 3 and less than 3 at once.
In , what happens if , say ?
. With closed endpoints the degenerate band collapses to the single value 3.
In , what happens if , say ?
. The lower bound sits above the upper one, so no value can satisfy both; always check that before trusting a chain.

Recall One-line summary of every trap here

AND = overlap (can be or a single point); OR = combined coverage (can be all of minus a hole). Strict vs closed endpoints decide whether boundary points join in, and a chain is only legal when it's an AND with .


Connections