Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Print value of vertical & horizontal asymptote?

asked 11 years ago

bxdin gravatar image

By default the program draws a blue line displaying the vertical asymptote of a function, which is very helpful. If I could get it to display a line through the horizontal asymptote, & print their value, if would be very helpful.

I attempted the following to get the vertical asymptote & had no luck at all:

ans = solve( 7/(x-3) == 0, x)
v0 = ans[0].rhs()
print(v0)

Error message:

Traceback (click to the left of this block for traceback)
...
IndexError: list index out of range
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

tmonteil gravatar image

updated 11 years ago

When you write:

solve( 7/(x-3) == 0, x)

you look for solutions of the equation 7/(x3)=0, which has no solution. If you want to discover the poles of your function (not the zeroes) to locate where your function has vertical asymptotes, you should look for the zeroes of the inverse of your function:

sage: f(x) = 7/(x-3)
sage: ans = solve(1/f == 0, x)
sage: ans[0].rhs()
3

If you want to locate the horizontal asymptotes, you shoult look at the limit of your function in + and :

sage: limit(f,x=+infinity)
x |--> 0
sage: limit(f,x=-infinity)
x |--> 0

Here, the vertical asymptote has equation x=3, and the horizontal asymptote has equation y=0.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 1,231 times

Last updated: Jun 30 '13