Post Reply 
Graphing
11-24-2014, 04:19 AM
Post: #1
Graphing
Hi all,

Is there any way to find the asymptotes of your graph like how you can find them in the TI calculators?

Thanks in Advance,
Shaheer
Find all posts by this user
Quote this message in a reply
11-24-2014, 05:02 PM (This post was last modified: 11-24-2014 06:08 PM by Helge Gabert.)
Post: #2
RE: Graphing
Not directly in the plot menu (under Fcn), if that is what you mean - - but just use limit in CAS. If your function is already defined (e.g., in F1), you can also use limit(F1(x), x, limit_value, 0 or -1 or 1) . . . etc.
Find all posts by this user
Quote this message in a reply
11-25-2014, 01:48 AM (This post was last modified: 11-25-2014 01:48 AM by Han.)
Post: #3
RE: Graphing
(11-24-2014 04:19 AM)shaheer07 Wrote:  Hi all,

Is there any way to find the asymptotes of your graph like how you can find them in the TI calculators?

Thanks in Advance,
Shaheer

In CAS view

If you have a rational function, using partfrac() will give you the "long division" result from which you can then determine oblique asymptotes. For example:

partfrac((x^2+1)/(x-1)) ---> x+1 + 2/(x-1)

So the oblique asymptote would be y=x+1 (just eliminate the rational remainder)

Horizontal asymptoes are found using the limit() function at infinity.

limit(|x|/(x-1),x,+infinity) ---> 1

So y=1 would be one of the horizontal asymptotes

limit(|x|/(x-1),x,-infinity) ---> -1

So y=-1 would be another asymptote.

For finding vertical asymptotes, use the limit() function as Helge suggested.

limit(2/(x-1),x,1,-1) ---> -infinity
limit(2/(x-1),x,1,+1) ---> +infinity

to confirm that x=1 is a vertical asymptote.

In the Function App

Aside from using the limit() function, you can also determine asymptotes from the Function app and the Num view. After plotting the function, you can use the trace option and move the cursor toward where you think a vertical asymptote may be and (depending on your window settings) the vertical asymptotes will show "NaN".

You can also just type in the X value in the keypad (in the plot view) to get the cursor to move to that location immediately).

In the Num view, you will see NaN appear in the output column.

Those are a few ways to find asymptotes. I'm not sure if that's what you were looking for. Is there some specific command or set of actions on the TI calculator (and which model?) that you list so that we may better answer your question?

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)