home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best Objectech Shareware Selections
/
UNTITLED.iso
/
boss
/
educ
/
math
/
030
/
limit.eka
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-06-30
|
254 b
|
10 lines
; Demo of infinite limits.
; It finds the limits for a and c, but fails on b.
a = LIMIT(x SIN(1/x),x,1,INF)
b = LIMIT(LN(x)/x,x,1,INF)
f(x) := (x^3 + x^2 LN(x))/(x (20 - 3x^2))
c = LIMIT(f(x),x,10,INF)
; Omit the dummy x variable
SHOW a, b, c