2.1.24Algebra — Introduction & Intermediate

Absolute value equations and inequalities

3,052 words14 min readdifficulty · medium4 backlinks

Overview

Absolute value represents the distance of a number from zero on the number line, always non-negative. Solving equations and inequalities involving absolute values requires understanding this geometric meaning and translating it into algebraic cases.

Figure — Absolute value equations and inequalities

For inequalities like x<5|x| < 5, we ask: "What numbers are less than 5 units from zero?" Answer: everything between 5-5 and 55. For x>5|x| > 5: "What's more than 5 units away?" Answer: everything to the left of 5-5 OR to the right of 55.

Definition and Foundation

WHY this definition? We want a function that measures distance, which is always positive. For positive numbers, the distance from zero IS the number itself. For negative numbers, we flip the sign to make it positive.

Key property: x=x2|x| = \sqrt{x^2} for all real xx.

WHY? Squaring any number makes it positive, then taking the square root gives the positive root. This connects absolute value to the Pythagorean distance concept.

Absolute Value Equations

Case Analysis Method

To solve A=b|A| = b where b0b \geq 0:

Derivation from first principles:

  1. Start with the definition: A|A| equals AA when A0A \geq 0, and equals A-A when A<0A < 0
  2. So A=b|A| = b means either:
    • Case 1: A=bA = b (when the expression inside is positive or zero)
    • Case 2: A=b-A = b, which gives A=bA = -b (when the expression inside is negative)

WHY two cases? The absolute value "strips away" the sign. Both 55 and 5-5 become 55 after applying absolute value. Working backward, if the result is 55, the original could have been either.

Special case: If b<0b < 0, there is no solution because absolute values are never negative.

Solution:

  • Case 1: x3=7    x=10x - 3 = 7 \implies x = 10
    • Why this step? We assume the inside is positive, so absolute value doesn't change it
  • Case 2: x3=7    x=4x - 3 = -7 \implies x = -4
    • Why this step? We assume the inside is negative, so absolute value flips its sign (hence we set it equal to the negative of 7)

Verification:

  • 103=7=7|10 - 3| = |7| = 7
  • 43=7=7|-4 - 3| = |-7| = 7

Geometric interpretation: We found all numbers that are exactly 7 units away from 3 on the number line: 3+7=103 + 7 = 10 and 37=43 - 7 = -4.

Solution: First, check when the right side is non-negative: we need 3x10    x133x - 1 \geq 0 \implies x \geq \frac{1}{3}

  • Case 1: 2x+5=3x12x + 5 = 3x - 1

    • Why? Assume 2x+502x + 5 \geq 0, so absolute value leaves it unchanged
    • 5+1=3x2x5 + 1 = 3x - 2x
    • x=6x = 6
    • Check the sign assumption: 2(6)+5=1702(6) + 5 = 17 \geq 0 ✓ (inside is indeed non-negative)
    • Check RHS non-negative: x=613x = 6 \geq \frac{1}{3}
    • Verify: 2(6)+5=17|2(6) + 5| = 17 and 3(6)1=173(6) - 1 = 17
  • Case 2: 2x+5=(3x1)2x + 5 = -(3x - 1)

    • Why? Assume 2x+5<02x + 5 < 0, so absolute value flips the sign
    • 2x+5=3x+12x + 5 = -3x + 1
    • 5x=45x = -4
    • x=45x = -\frac{4}{5}
    • Check the sign assumption: 2(45)+5=85+5=175>02(-\frac{4}{5}) + 5 = -\frac{8}{5} + 5 = \frac{17}{5} > 0 ✗ — but we assumed 2x+5<02x + 5 < 0! The assumption is violated, so this branch is invalid here.
    • Check RHS non-negative: x=45<13x = -\frac{4}{5} < \frac{1}{3} ✗ (3x1=175<03x - 1 = -\frac{17}{5} < 0)
    • This solution is extraneous on both counts!

Answer: x=6x = 6 only

Why did Case 2 fail? Two independent reasons: (1) the sign assumption "2x+5<02x + 5 < 0" is contradicted since 2(45)+5=175>02(-\frac{4}{5})+5 = \frac{17}{5} > 0, and (2) the right side 3x1=1753x - 1 = -\frac{17}{5} is negative, but absolute values can never equal a negative number. Always check both the sign assumption of the inner expression AND the sign of the RHS.

Absolute Value Inequalities

Less Than Inequalities

To solve A<b|A| < b where b>0b > 0:

Derivation:

  • A<b|A| < b means "the distance from AA to zero is less than bb"
  • This happens when AA is between b-b and bb
  • Algebraically: b<A<b-b < A < b

WHY? If A0A \geq 0: A=A<b|A| = A < b. If A<0A < 0: A=A<b    A>b|A| = -A < b \implies A > -b. Combining both cases: b<A<b-b < A < b.

Solution: 5x+25-5 \leq x + 2 \leq 5

Why this step? We're finding all xx where x+2x + 2 is at most 5 units from zero, which means between 5-5 and 55.

Subtract 2 from all parts: 7x3-7 \leq x \leq 3

Interval notation: [7,3][-7, 3]

Geometric check: The center is at x=2x = -2 (where x+2=0x + 2 = 0). We go 5 units in each direction: 25=7-2 - 5 = -7 and 2+5=3-2 + 5 = 3. ✓

Greater Than Inequalities

To solve A>b|A| > b where b>0b > 0:

Derivation:

  • A>b|A| > b means "the distance from AA to zero is greater than bb"
  • This happens when AA is outside the interval [b,b][-b, b]
  • So either A>bA > b (far right) OR A<bA < -b (far left)

WHY the OR? The number line has two regions far from zero: the positive side and the negative side. Being more than bb units away means being in either region, not both simultaneously.

Solution: Split into two cases:

  • Case 1: 3x1>83x - 1 > 8

    • Why? The expression is far to the right
    • 3x>93x > 9
    • x>3x > 3
  • Case 2: 3x1<83x - 1 < -8

    • Why? The expression is far to the left
    • 3x<73x < -7
    • x<73x < -\frac{7}{3}

Answer: x(,73)(3,)x \in (-\infty, -\frac{7}{3}) \cup (3, \infty)

Geometric interpretation: We want xx values where 3x13x - 1 is more than 8 units from zero. The center is at 3x1=0    x=133x - 1 = 0\implies x = \frac{1}{3}. Everything within 83\frac{8}{3} units of 13\frac{1}{3} is excluded, everything outside is included.

Advanced Techniques

Compound Absolute Value Equations

Solution: Identify critical points where expressions inside change sign: x=1x = 1 and x=2x = -2. These divide the number line into three regions.

Why critical points? At these points, the expressions equal zero, and the absolute value behavior switches.

  • Region 1: x<2x < -2 (both expressions negative)

    • x1=(x1)=1x|x - 1| = -(x - 1) = 1 - x
    • x+2=(x+2)=x2|x + 2| = -(x + 2) = -x - 2
    • Equation: (1x)+(x2)=5(1 - x) + (-x - 2) = 5
    • 2x1=5    x=3-2x - 1 = 5 \implies x = -3
    • Check: x=3<2x = -3 < -2
    • Verify: 31+3+2=4+1=5|-3 - 1| + |-3 + 2| = 4 + 1 = 5
  • Region 2: 2x<1-2 \leq x < 1 (first negative, second positive)

    • x1=1x|x - 1| = 1 - x
    • x+2=x+2|x + 2| = x + 2
    • Equation: (1x)+(x+2)=5(1 - x) + (x + 2) = 5
    • 3=53 = 5
    • No solution in this region!
  • Region 3: x1x \geq 1 (both positive)

    • x1=x1|x - 1| = x - 1
    • x+2=x+2|x + 2| = x + 2
    • Equation: (x1)+(x+2)=5(x - 1) + (x + 2) = 5
    • 2x+1=5    x=22x + 1 = 5 \implies x = 2
    • Check: x=21x = 2 \geq 1
    • Verify: 21+2+2=1+4=5|2 - 1| + |2 + 2| = 1 + 4 = 5

Answer: x{3,2}x \in \{-3, 2\}

Common Mistakes and Fixes

Why it feels right: We see an equation and solve it directly, forgetting absolute value has two "branches."

The fix: Always write both cases: x2=5x - 2 = 5 AND x2=5x - 2 = -5. The geometric intuition helps: "What's 5 units from 2?" has two answers: 2+5=72 + 5 = 7 and 25=32 - 5 = -3.

Why it feels right: Students memorize "x<3|x| < 3 means 3<x<3-3 < x < 3" and try to apply the same pattern.

The fix: Greater-than means outside the interval, so use OR: x>3x > 3 or x<3x < -3. Remember: "less than" is AND (between), "greater than" is OR (outside). The union symbol \cup interval notation reminds us it's separate regions.

Why it feels right: We trust our algebra and assume both case solutions are valid.

The fix: When the equation is A=B|A| = B with BB containing variables, always verify that B0B \geq 0 for your solution, AND that the sign assumption you made about AA holds. If B<0B < 0 at your xx-value, that solution is extraneous. Example 2 above shows both checks in action.

Why it feels right: Students confuse the "split into cases" approach from equations with the inequality rules.

The fix: For A<b|A| < b, write the single compound inequality b<A<b-b < A < b. Don't split! For A>b|A| > b, then you split into A>bA > b OR A<bA < -b. Pattern: "less than" stays together (AND), "greater than" splits apart (OR).

Memory Aids

  • x<5|x| < 5: LANDS between 5-5 and 555<x<5-5 < x < 5 (one interval, AND)
  • x>5|x| > 5: GOES to extremes → x<5x < -5 or x>5x > 5 (two intervals, OR)

Visual: Draw a number line. "Less than" shades the middle (landing zone). "Greater than" shades the ends (extremes).

Active Recall Practice

#flashcards/maths

What does x=a|x| = a translate to in terms of cases? :: Two equations: x=ax = a or x=ax = -a (provided a0a \geq 0). Geometric: numbers exactly aa units from zero.

What does x<a|x| < a translate to for a>0a > 0?
Single compound inequality: a<x<a-a < x < a. Geometric: all points within aa units of zero (between).
What does x>a|x| > a translate to for a>0a > 0?
Two separate inequalities: x>ax > a OR x<ax < -a. Geometric: all points more than aa units from zero (outside).
When solving A=B|A| = B where BB contains variables, what must you check?
Two things: (1) that B0B \geq 0 for each solution, and (2) that the sign assumption on AA for each case holds. If either fails, the solution is extraneous.
How do you solve equations with multiple absolute values like x1+x+2=5|x - 1| + |x + 2| = 5?
Find critical points (where each inner expression = 0), split the number line into regions, remove absolute value bars based on sign in each region, solve the resulting equation in each region, check solution is in its region.
What is the geometric meaning of x3<5|x - 3| < 5?
All numbers whose distance from 3 is less than 5. Solution: 35<x<3+53 - 5 < x < 3 + 5, so 2<x<8-2 < x < 8.
Why can x=4|x| = -4 have no solution?
Absolute value represents distance, which is always non-negative. No real number has a negative distance from zero.
Recall Explain to a 12-year-old

Imagine you're standing on a number line at zero. Absolute value is like asking "how many steps am I from zero?" whether you walked left or right. If you're at 5 or at -5, you're still 5 steps away from zero, so 5=5=5|5| = |-5| = 5.

When we solve x=3|x| = 3, we're asking: "Where can I stand to be exactly 3 steps from zero?" Two places: at 3 (three steps right) and at -3 (three steps left).

For x<3|x| < 3, we want: "Where can I stand to be fewer than 3 steps from zero?" Answer: anywhere between -3 and 3, because those are the only spots close enough.

For x>3|x| > 3, we want: "Where can I stand to be more than 3 steps from zero?" Answer: either past 3 on the right, OR past -3 on the left — the far away places on both sides!

The tricky part: when the problem is something like x2=5|x - 2| = 5, now zero has moved! We're measuring 5 steps from 2 instead of 0. So our answers are 2+5=72 + 5 = 7 and 25=32 - 5 = -3.

Connections

  • Algebraic equations — absolute value equations are special cases requiring analysis
  • Linear inequalities — absolute value inequalities combine linear inequalities with OR/AND logic
  • Number line and intervals — geometric interpretation of absolute value as distance
  • Function transformationsf(x)|f(x)| reflects negative parts of f(x)f(x) upward
  • Piecewise functions — absolute value is defined piecewise: x=x|x| = x if x0x \geq 0, x-x if x<0x < 0
  • Distance formulaxa|x - a| is the distance between xx and aa on the number line, generalizes to (x2x1)2+(y2y1)2\sqrt{(x_2-x_1)^2 + (y_2-y_1)^2} in 2D
  • Quadratic equations — squaring both sides of A=b|A| = b gives A2=b2A^2 = b^2, another solution method

Master absolute value by always thinking: "distance from zero" for the geometric intuition, then translate systematically into cases.

Concept Map

means

formalised as

equivalent to

drives

drives

yields

when b<0

variable RHS needs

less than (AND)

greater than (OR)

Absolute value |x|

Distance from zero

Piecewise definition

|x| equals sqrt of x squared

Equations |A| = b

Inequalities

Two cases A=b or A=-b

No solution if b < 0

|x| < b between -b and b

|x| > b outside -b and b

Check RHS non-negative

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, absolute value ka matlab bilkul simple hai — yeh sirf poochta hai ki koi number zero se kitni door hai, number line pe. Aur distance kabhi negative nahi hoti, isliye x|x| hamesha positive ya zero hota hai. Jab hum likhte hain x=5|x| = 5, toh actually hum pooch rahe hain ki "kaunse numbers zero se exactly 5 units door hain?" — aur iske do jawab hote hain: 55 aur 5-5. Yehi dual nature poore chapter ka core hai. Isiliye jab bhi absolute value equation solve karte ho, tumhe do cases banana padta hai: ek jab andar wala expression positive ho, aur ek jab negative ho.

Ab inequalities mein bhi yehi distance wala thinking kaam aati hai. x<5|x| < 5 ka matlab hai "zero se 5 units se kam door" — toh answer 5-5 aur 55 ke beech ka sab kuch. Aur x>5|x| > 5 ka matlab "5 units se zyada door" — toh answer left mein 5-5 se aage ya right mein 55 se aage. Bas is chhote se geometric picture ko yaad rakho, toh formula ratne ki zaroorat hi nahi padegi.

Ek important baat jo Example 2 sikhata hai — jab RHS mein bhi variable ho, toh tumhe har solution ko wapas check karna zaroori hai. Kabhi kabhi case solve karne pe answer aa jaata hai, par woh apni hi assumption ko todta hai — usse hum extraneous solution kehte hain, aur use reject karna padta hai. Yeh isliye matter karta hai kyunki exams mein aksar galat answer isi wajah se aata hai — students bina verify kiye dono solutions likh dete hain. Toh hamesha verify karo, phir hi confident raho.

Go deeper — visual, from zero

Test yourself — Algebra — Introduction & Intermediate

Connections