Message Boards Message Boards

0
|
13379 Views
|
2 Replies
|
0 Total Likes
View groups...
Share
Share this post:

How do you find the y intercepts and where the function is undefined?

Posted 11 years ago
The function is f(x)= 6x^2 -9x-6/ 2x^2-x-6
I found the x intercepts but how do you find the y intercepts and where the function is undefined without using just the graph?
POSTED BY: Jen Pancaldo
2 Replies
Probably the function was intended to be
f[x_] := (6 x^2 - 9 x - 6)/(2 x^2 - x - 6)
POSTED BY: Ilian Gachevski
Posted 10 years ago
Y intercepts
f[x_] := 6 x^2 - 9 x - 6/2 x^2 - x - 6
Solve[f[x] == 0, x]
(*{{x -> 1/3 (5 - Sqrt[43])}, {x -> 1/3 (5 + Sqrt[43])}}*)


For the indefinites then

Solve[(1/f[x]) == 0, x]
(*{}*)


Checking

Simplify[f[x]]
(*-6 - 10 x + 3 x^2*)
POSTED BY: Diego Zviovich
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract