I'm stuck trying to solve an inequality of the form $\left|\frac{f(x)}{g(x)}\right| \geq 1$; specifically, $\left|\frac{2x + 5}{x + 1}\right| \geq 1$
I tried the approach that was taught for solving inequalities in general, and solved first for x when the part enclosed in absolute value signs is $\geq 1$, and then solved for when it is $\leq -1$, but plugging in numbers for the resulting domain $[-4, -2]$ back into the original inequality resulted in some answers that were not $\geq 1$.
Where have I gone wrong in trying to solve this inequality? How is this different from solving an inequality like $\left|\frac{3}{x + 1}\right| \geq 1$?
EDIT: Okay, since I'm clearly messing this up horribly(and now realize that I was absent-mindedly taking the intersection and not the union of my results in spite of having not mixed up the two many times before), I'll edit with the specifics of the solution I was trying and which had me confused before I asked the question. So:
$\left|\frac{2x + 5}{x + 1}\right| \geq 1$
Meaning 1: $\frac{2x + 5}{x + 1} \geq 1$ or 2: $\frac{2x + 5}{x + 1} \leq -1$
Tackling the first: multiplied 1 by $x + 1$, forgetting to account for the fact that $x + 1$ could potentially be negative: $2x + 5 \geq x + 1$, then rearrange for $x \geq -4$.
Now the other inequality: multiplied -1 by $x + 1$, again forgetting to consider $x + 1$ being negative: $2x + 5 \leq -x - 1$ , rearrange and divide by 3 for $x \leq -2$.
Domain is the union, so $[-4, \infty] \cup [-\infty, -2]$, so $R - { 1 }$. This is obviously not right, as plugging in -3 shows.
So, in inequalities where the denominator is some function g(x), if I split it and choose to multiply, will I have to solve each part of the inequality twice(once assuming g(x) is positive, a second time assuming it's negative) and then check which solution makes sense by plugging in numbers?
Your answer of $[-4,-2]$ appears to be the solution set to $\left|\frac{2x + 5}{x + 1}\right| \leq 1$. Without seeing all of your work, I can't be sure what happened.
In general, for inequalities of this type (actually, pretty much any inequalities involving a quotient with variables in the denominator), the method I'd suggest is the following:
Split it into two inequalities to solve separately: $\frac{f(x)}{g(x)} \geq 1$ or $-1\geq \frac{f(x)}{g(x)}$. Once these are solved, take the union of their solution sets (only one of these inequalities must be true for your original inequality to hold).
For each of these two inequalities, manipulate them so that the comparison is to 0 instead of 1 or -1. For example, $\frac{f(x)}{g(x)} \geq 1$ can be rewritten as $\frac{f(x)}{g(x)}-1\geq 0$ or $\frac{f(x)-g(x)}{g(x)} \geq 0$.
When solving an inequality that compares an expression of the form $\frac{a(x)}{b(x)}$ to zero, the solution set will be the union of intervals whose endpoints are at the zeros of $a(x)$ or $b(x)$. That is:
This is sometimes called the "boundary algorithm" or the "test-point method" for solving inequalities.
edit: Regarding "if I split it and choose to multiply, will I have to solve each part of the inequality twice," well... sort of.
Here, you should have $(2x+5\geq x+1\text{ and }x\geq -1)\text{ or }(2x+5\leq x+1\text{ and }x<-1)$. In solving, remember that the "and" becomes an intersection of solution sets and the "or" becomes a union of solution sets.
As I'd indicated in the comments, I use the method I originally described in order to avoid this sort of casework.
edit 2: As an example of the method that I describe above, let's solve $\frac{2x+5}{x+1}\geq 1$. Subtract 1 from both sides, get a common denominator on the left side, and combine the terms to get $\frac{x+4}{x+1}\geq 0$. The only zero of the numerator is -4; the only zero of the denominator is -1. Graphing these on a number line gives: $$\leftarrow\!\!\underset{-4}{-\!\!\bullet\!\!-}\!\!-\!\!\underset{-1}{-\!\!\circ\!\!-}\!\!\rightarrow$$ (open circle at -1 because $x=-1$ makes the quotient undefined, closed circle at -4 because $x=-4$ makes the numerator 0, so the quotient is 0, and the inequality is $\geq 0$).
Now, there are 3 intervals to test: $(-\infty,-4]$, $[-4,-1)$, and $(-1,\infty)$. Relatively simple-to-test values in the intervals are -5, -2, and 0, respectively. $\frac{-5+4}{-5+1}=\frac{-}{-}=+\geq 0$; $\frac{-2+4}{-2+1}=\frac{+}{-}=-\not\geq 0$; $\frac{0+4}{0+1}=\frac{+}{+}=+\geq 0$. So, the solution is $(-\infty,-4]\cup(-1,\infty)$.
(To complete the original problem, you still need to solve $\frac{2x+5}{x+1}\leq -1$ and take the union of that solution with the set we just found.)