Clayton

753
reputation
203 views

Registered User

name Clayton
member for 1 year
seen Nov 23 at 2:46
website
location
age
2d
awarded  Student
Sep
26
awarded  Yearling
Aug
5
comment Computer Science problems that have yet to be solved
Just re-read the section on CT from my old Formal Languages book (Sudkamp 91), and it does agree with your statement that CT is not a mathematical theorm. It doesn't say it's a statement about the physical world though, but rather that it's an attempt to define algorithmic computation. Basically it says that a TM can implement any algorithm, and that if a TM cannot be constructed to implement a solution for a problem, that problem is not "decidable", which is rougly the same as "solveable".
Aug
5
comment Computer Science problems that have yet to be solved
Or is an expensive and essentially pointless excercise with no hope of success?
Aug
5
comment Computer Science problems that have yet to be solved
I would not consider a TM that access an Oracle a proper TM any more than I'd consider an FSA that has access to a stack a proper FSA. In any case, I believe the formal CT thesis relies on the formal definition of a TM. That said, what CT proposes is that even if you did have an Oracle, the functioning of that Oracle could be described by a TM, assuming the Oracle solves problems algorithmically, as opposed to some form of "magic". I don't think even Quantum Algorithms would qualify as "magic". They're faster, but they're still algorithms. As soon as you invoke magic all bets ar off.
Jul
29
comment What would a P=NP proof be like, hypothetically?
Good article on Quantum Computing: scientificamerican.com/article.cfm?id=the-limits-… This states that QC cannot solve NP-complete problems, or at least will not "collapse the complexity class".
Jul
29
comment Computer Science problems that have yet to be solved
How so? It's a statement about the computability of certain functions. Granted, the thesis is stated in terms of being solvable by a Turing Machine, but that's not the same as a physical computer. For example, a TM is allowed to have infinite memory. It can have only a finite set of states, but the number of states is not strictly bounded, so you can have "as many as you want".
Jul
29
comment Computer Science problems that have yet to be solved
That's not an unsolved problem. It has been proven to be NP-Complete, but that's not the same as unsolved. A brute force solution is to simply calculate the length of all possible routes, then pick the shortest one. That's computationally expensive to the point of being impractical, but it is a solution.