How do you find the domain and range of #f(x) = 2 / (1 - x²)#?

1 Answer
Jun 24, 2015

Domain is defined by inequalities:
#x!=+-1# or a union of three intervals
#(-oo,-1)#, #(-1,1)#, #(1,+oo)#

Range is a combination of two intervals
#-oo < f(x) < 0# and #2 <= f(x) < +oo#

Explanation:

Domain of this function is determined by the fact that denominator might be equal to zero and the function would be undefined in this case. So, we are talking about the following restriction on domain:
#1-x^2 != 0# or
#x^2 != 1# or
#x != +-1#
In other words, the domain is a union of three intervals:
#-oo < x <-1#;
#-1 < x < 1#;
#1 < x < +oo#
or, in another notation,
#(-oo,-1)#, #(-1,1)#, #(1,+oo)#

To determine the range, it's most useful to graph this function.
The easiest way is to start by drawing a graph of a function #y=1-x^2#, invert it into #y=1/(1-x^2)# and multiply the latter by a factor 2 to get #y=2/(1-x^2)#.

#y=1-x^2#

graph{(1-x^2) [-10, 10, -5, 5]}

#y=1/(1-x^2)#

graph{1/(1-x^2) [-10, 10, -5, 5]}

#y=2/(1-x^2)#

graph{2/(1-x^2) [-10, 10, -5, 5]}

As you see, on the left and on the right graph is located below the X-axis and goes to negative infinity, while in the middle it has a minimum of #2# at #x=0# and from that goes to positive infinity.

That's why the range is represented as two intervals:

#-oo < f(x) < 0# and #2 <= f(x) < +oo#

or, in another notation,

#(-oo, 0)# and #[2,+oo)#

Notice, that value #y=2# is included into the second interval.