Limit Guessing Algorithm

Roy Smith roy at panix.com
Sun Dec 2 15:53:55 EST 2007


In article 
<6527e349-27ba-4de4-bc29-75ff4511787c at b40g2000prf.googlegroups.com>,
 "ram.rachum at gmail.com" <ram.rachum at gmail.com> wrote:

> Hello hello,
> 
> I'm looking for a piece of code, preferably in Python, that will do
> the following. It will accept a few data points (x,f(x)) of a function
> that converges to some finite value when x converges to infinity. I
> need the algorithm to guess what that limit is, to whatever precision
> it can.
> 
> For example, if the input is:
> 
> [
> [1,8],
> [2,7.5],
> [3,7.25],
> [4,7.125]
> ]
> 
> Then the output will be 7. Or at least something close.
> 
> Does anyone know anything like that?

I suggest any introductory calculus or math analysis text.  Perhaps even 
the one your professor assigned you for the course :-)

Look under "limits" in the table of contents.



More information about the Python-list mailing list