vertical asymptotes are associated with limits which become infinite , whereas horizontal asymptotes are associated with limits as a function's argument approaches infinity .Definition: lim x-> infinity f(x) = L
means that the values of f(x) can be made arbitrarily close to L by taking x sufficiently largeThis is often said as "f(x) asymptotically approaches L as x approaches infinity."
Definition: L is a horizontal asymptote of f(x)
if
lim x-> - infinity f(x) = L orlim x-> + infinity f(x) = L Negative powers of x asymptotically approach 0, as x-> infinity
lim x-> infinity x -r = 0 Note: a function can have different horizontal asymptotes, as well as more than one vertical asymptote.
Knowledge of a functions asymptotes (both vertical and horizontal) is one of several key pieces of information, needed to graph the function accurately.
Definition: lim x -> infinity f(x) = + infinity
if for some positive number M, there is a number N>0 such that f(x)>M if x>N.
1.
with(plots):2.
p1 := plot( (x^2-1)/(x^2+1), x=-20..20):
p2 := plot( 1, x=-20..20):
display([p1,p2]);
3.