2

I am wondering, if the Church-Turing thesis holds (all effectively calculable functions are computable by Turing machines/lambda calculus) and I can compute the limit of a function by hand, what is the encoding of e.g. the derivative $\lim_{h\to 0} \frac{df(x)}{dh} = \frac{f(x+h)-f(x)}{h}$.

I know the encoding for the divide and plus sequences, but how would one encode the limit?

dustin
  • 8,241
qrzx
  • 21

1 Answers1

1

First of all, we have to be careful here. Just because you and I can solve particular limits by hand, do you have an algorithmic method (by hand or otherwise) to solve limits that'll work for EVERY limit problem?

Also, it would be impossible to represent the result of each limit problem finitely since the cardinality of the reals outnumber the cardinality of finite length strings over any finite alphabet. Because of this, I would say computing limits in general (and thus derivatives) is uncomputable.

Of course however, there are numerical methods that give us good approximations for these kind of things.

benguin
  • 3,846