airforceone
New member
- Joined
- Sep 10, 2007
- Messages
- 13
How do I do this?
Suppose I have: 1/(sqrt(x^2 - 4))
I know that there should not be a negative square root and a zero in the bottom of a fraction, so I tried this:
x^2 - 4 >= 0
x^2 >= 4
x >= 2 , -2
D: {x: x >= 2, -2}
But then I got confused that the bottom of a fraction can't be zero also, so I tried this:
x^2 - 4 <> 0
x^2 <> 4
x <> 2, -2
D: {x: x <> 2, -2}
The correct answer is:
D: {x: x > 2 or x < 2}
How did they do it algebraically? I already know how it's right.
Suppose I have: 1/(sqrt(x^2 - 4))
I know that there should not be a negative square root and a zero in the bottom of a fraction, so I tried this:
x^2 - 4 >= 0
x^2 >= 4
x >= 2 , -2
D: {x: x >= 2, -2}
But then I got confused that the bottom of a fraction can't be zero also, so I tried this:
x^2 - 4 <> 0
x^2 <> 4
x <> 2, -2
D: {x: x <> 2, -2}
The correct answer is:
D: {x: x > 2 or x < 2}
How did they do it algebraically? I already know how it's right.