Finding values for which a function is greater that 0

  • Context:
  • Thread starter Thread starter tmt1
  • Start date Start date
  • Tags Tags
    Function
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
tmt1
Messages
230
Reaction score
0
I have a function

$$g(x) = \frac{x - 1}{x + 2}$$.

How would I find all of the x-values for which $g(x) > 0$.

I'm used to doing this for functions that need to be factored but not fractions.
 
Physics news on Phys.org
tmt said:
I have a function

$$g(x) = \frac{x - 1}{x + 2}$$.

How would I find all of the x-values for which $g(x) > 0$.

I'm used to doing this for functions that need to be factored but not fractions.
There are other was, but this one is fairly standard for polynomial fractions.

There are two critical points here: when the numerator is 0 and when the denominator is 0. So the critical points are at x = 1 and x = -2. Now you have three intervals to test: [math] ( -\infty , -2 ) [/math], [math]( -2, 1)[/math], and [math](1, \infty)[/math]. See which of these are greater than 0.

-Dan
 
A fraction is positive if and only if the numerator and denominator have the same sign.
$$\frac{x- 1}{x+ 2}> 0$$ if and only if either
1) x-1> 0 and x+ 2> 0. The first inequality gives x> 1 and the second gives x> -2. They will both be true for x> 1.

2) x-1< 0 and x+ 2< 0. The first inequality gives x< 1 and the second x< -2. They will both be true when x< - 2.

The fraction is positive when x< -2, is not defined at x= -2, is negative when -2< x< 2, is 0 when x= 1, and is positive again when x> 1.