How To Solve An Equation With Two Absolute Values

4 min read

How to Solve an Equation with Two Absolute Values

Solving an equation that contains two absolute‑value expressions can feel intimidating at first, but the process follows a clear, logical pattern. Consider this: by breaking the problem into cases based on the sign of each absolute‑value term, you can transform the original equation into a set of simpler linear (or quadratic) equations that are easy to handle. This guide walks you through the entire method, provides worked examples, highlights common pitfalls, and answers frequently asked questions so you can master how to solve an equation with two absolute values confidently.


Understanding Absolute Value Basics

Before tackling two absolute values, recall the definition:

[ |x| = \begin{cases} x, & \text{if } x \ge 0 \ -x, & \text{if } x < 0 \end{cases} ]

The absolute value measures distance from zero on the number line, always yielding a non‑negative result. Because of that, when an expression inside the absolute value changes sign, the overall expression switches between the original form and its negative. This property is the key to solving equations with multiple absolute values.

Real talk — this step gets skipped all the time.


Step‑by‑Step Procedure

1. Identify the Critical Points

Each absolute‑value term (|A|) becomes zero when its inner expression (A = 0). Solve (A = 0) for every term; these solutions are the critical points where the sign of the expression inside the absolute value may change.

2. Divide the Number Line into Intervals

Place the critical points on a real number line. They split the line into intervals. Within any single interval, each inner expression maintains a constant sign (either always non‑negative or always negative). This means each absolute value can be replaced by either the expression itself or its negative, without ambiguity.

3. Write the Equation for Each Interval

For every interval, substitute the appropriate sign for each absolute value:

  • If the inner expression is ≥ 0 in that interval, replace (|A|) with (+A).
  • If the inner expression is < 0, replace (|A|) with (-A).

After substitution, the absolute‑value symbols disappear, leaving a regular algebraic equation (often linear, sometimes quadratic) And that's really what it comes down to..

4. Solve the Resulting Equation

Solve the equation obtained in step 3 using standard algebraic techniques (isolating variables, factoring, quadratic formula, etc.).

5. Verify Solutions Against the Interval

A solution is valid only if it lies within the interval you used to derive it. Discard any root that falls outside its originating interval, because the sign assumptions would no longer hold No workaround needed..

6. Collect All Valid Solutions

Combine the valid solutions from all intervals. The union of these roots is the solution set of the original absolute‑value equation.


Worked Examples

Example 1: Linear‑Linear Case

Solve (|2x - 3| + |x + 4| = 7).

Step 1 – Critical points

  • (2x - 3 = 0 \Rightarrow x = \frac{3}{2})
  • (x + 4 = 0 \Rightarrow x = -4)

Step 2 – Intervals
((-\infty, -4)), ([-4, \frac{3}{2}]), ((\frac{3}{2}, \infty))

Step 3 – Equation per interval

Interval Sign of (2x-3) Sign of (x+4) Substituted Equation
(x < -4) negative negative (-(2x-3) -(x+4) = 7)
(-4 \le x \le \frac{3}{2}) negative non‑negative (-(2x-3) + (x+4) = 7)
(x > \frac{3}{2}) non‑negative non‑negative ((2x-3) + (x+4) = 7)

Step 4 – Solve

  1. (x < -4): (-2x+3 -x -4 = 7 \Rightarrow -3x -1 = 7 \Rightarrow -3x = 8 \Rightarrow x = -\frac{8}{3}).
    Check: (-\frac{8}{3} \approx -2.67) is not < −4 → reject Simple as that..

  2. (-4 \le x \le \frac{3}{2}): (-2x+3 + x +4 = 7 \Rightarrow -x +7 = 7 \Rightarrow -x = 0 \Rightarrow x = 0).
    Check: 0 lies in ([-4, 1.5]) → accept.

  3. (x > \frac{3}{2}): (2x-3 + x +4 = 7 \Rightarrow 3x +1 = 7 \Rightarrow 3x = 6 \Rightarrow x = 2).
    Check: 2 > 1.5 → accept Small thing, real impact..

Step 5 – Solution set
(\boxed{{0,,2}})


Example 2: Quadratic‑Linear Case

Solve (|x^2 - 4| = |x - 1|).

Step 1 – Critical points

  • (x^2 - 4 = 0 \Rightarrow x = \pm 2)
  • (x - 1 = 0 \Rightarrow x = 1)

Step 2 – Intervals
((-\infty, -2)), ([-2, 1]), ([1, 2]), ([2, \infty))

Step 3 – Substitute signs

Interval Sign of (x^2-4) Sign of (x-1) Equation
(x < -2) positive (since (x^2>4)) negative (x^2-4 = -(x-1))
(-2 \le x \le 1) negative or zero negative or zero (-(x^2-4) = -(x-1))
(1 \le x \le 2) negative or zero non‑negative (-(x^2-4) = (x-1))
(x \ge 2) positive non‑negative (x^2-4 = (x-1))

Step 4 – Solve each

  1. (x < -2): (x^2-4 = -x+1 \Rightarrow x^2 + x -5 = 0).
    Roots: (x = \frac{-1 \pm \sqrt{1+20}}{2} = \frac{-1 \pm \sqrt{21}}{2}).
    Approx: (\frac{-1 - 4.58}{2} = -2.79) (valid), (\frac{-1 + 4.58}{2} = 1.79) (invalid).
    Keep (x = \frac{-1 - \sqrt{21}}{2}) Turns out it matters..

  2. (-2 \le x \le 1): (-x^2+4 = -x+1 \Rightarrow -x^2 + x

Currently Live

New and Fresh

Picked for You

Related Corners of the Blog

Thank you for reading about How To Solve An Equation With Two Absolute Values. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home