|
| 1 | +tags:: Algorithmics |
| 2 | +alias:: Cobham-Edmonds Thesis |
| 3 | +topic:: [[Computer Science]] |
| 4 | +algo:: Unit 4 Outcome 3 |
| 5 | + |
| 6 | +- |
| 7 | +- named after Alan Cobham and Jack Edmonds, who first proposed it in the early 1960s |
| 8 | +- is a statement about the feasibility of computational problems |
| 9 | +- asserts that computational problems can be feasibly computed on some computational device only if they can be computed in polynomial time |
| 10 | + - if a problem can be solved by an algorithm that runs in polynomial time, then it is considered to be a feasible problem |
| 11 | +- Cobham's Thesis strengths |
| 12 | + - it provides a clear and concise definition of what it means for a problem to be *feasible* |
| 13 | + - it suggests that there is a fundamental limit to what can be computed in practice. |
| 14 | + - it has helped to guide the development of new algorithms and to identify problems that are likely to be intractable |
| 15 | +- Cobham's Thesis limitations |
| 16 | + - it does not take into account the constant factors in the running time of algorithms and lower order terms |
| 17 | + - it ignores the size of the exponent |
| 18 | + - an algorithm with a polynomial running time may still be infeasible if the constant factor is large |
| 19 | + - does not apply to problems that are defined over infinite inputs |
| 20 | + - under Cobham's thesis, a problem for which the best algorithm takes $n^{200}$ instructions is considered feasible, and a problem with an algorithm that takes $2^{0.00001 n}$ instructions infeasible—even though one could never solve an instance of size $n = 2$ with the former algorithm, whereas an instance of the latter problem of size $n = 10^6$ could be solved without difficulty |
| 21 | +- relationship between the [[Church-Turing Thesis]] and Cobham's thesis |
| 22 | + - the [[Church-Turing Thesis]] establishes a limit on what can be **computed** |
| 23 | + - any [[Algorithm]] that can be executed by a human or another computing device can also be executed by a [[Turing Machine]] |
| 24 | + - it does not say anything about the *feasibility* of computing particular problems |
| 25 | + - Cobham's thesis refines the [[Church-Turing thesis]] |
| 26 | + - only problems that can be computed in polynomial time are **feasible** |
| 27 | + - even if a problem can be solved by a [[Turing Machine]] , it may still be *infeasible* if it takes too long to compute the solution |
| 28 | +- |
| 29 | +- Further Research |
| 30 | + background-color:: purple |
| 31 | + - Read |
| 32 | + - [Cobham's thesis - Wikipedia](https://en.wikipedia.org/wiki/Cobham's_thesis) |
0 commit comments