$D$ is decision problem whose inputs are the natural numbers.
Suppose $A$ is an algorithm to solve $D$ in which we know that it is:
- partially correct for all inputs
- halts on all inputs >= 1000.
Can I deduce that $D$ is decidable?
On the one hand, the number of inputs that are unknown is finite, so maybe we can precompute the results of $D$ on those 1000 inputs and for all others use $A$? On the other hand, it seems like it might be possible to reduce the Halting Problem to $D$ somehow? I'm not sure.
Thanks!