Non-algorithmic computer capabilities

  • Thread starter Thread starter nomadreid
  • Start date Start date
  • Tags Tags
    Computer
AI Thread Summary
The discussion centers on the debate regarding the potential advantages of non-algorithmic computers compared to algorithmic ones, particularly in the context of human cognition. It critiques Roger Penrose's arguments that humans possess non-algorithmic capabilities, suggesting that any advantage would primarily be speed rather than a fundamental computational superiority. The Church-Turing thesis is highlighted, emphasizing that no mechanism has been found that is more computationally powerful than a Turing machine, which was designed to reflect human computational abilities. The conversation also touches on theoretical constructs like oracle Turing machines, which can solve undecidable problems but remain largely theoretical. Ultimately, the discussion questions the existence of any substantial benefits of non-algorithmic processes beyond speed.
nomadreid
Gold Member
Messages
1,748
Reaction score
243
(This concerns a general principle about computer hardware/software, not a specific application. I hope this is the correct subforum.)
One of the arguments that some people (e.g., Roger Penrose) use to posit the superiority of humans to algorithmic computers is to claim (without any solid basis) that the human is a non-algorithmic computer. But suppose the human were a non-algorithmic computer. The only advantage that this would confer, as far as I am aware, is that of speed, so that there would still be no advantage in principle, only in practice in that a non-algorithmic computer could complete calculations more quickly. Is there any other advantage?

For example, Penrose misuses Gödel's First Incompleteness Theorem, as did Lucas before him; although Fefferman tore Penrose's arguments to pieces, Fefferman did note that the whole argument concerned (the equivalent of) algorithmic processes. So Penrose claimed that the addition of non-algorithmic elements would vindicate his arguments based on Gödel's theorem. But that theorem does not mention time, I do not see that Penrose's claim could have any merit. Is there any substance to the hope that a non-algorithmic (but not mystical) process could add anything of substance besides speed?
 
Technology news on Phys.org
This question is deeply related to the Church-Turing thesis. According to the Church-Turing thesis, everything which is effectively computable can be computed by a Turing machine. Any system which can simulate a Turing machine, and which can be simulated by a Turing machine, is Turing equivalent. As of yet, nobody has been able to describe a mechanism more computationally powerful than the Turing machine (which could actually exist). In other words, if human beings can do more than Turing machines, we don't know how they do it.

It helps to remember that Turing defined his machines according to a distilled version of the actions of a human computer (i.e., a person with pen and paper doing calculations). That is, Turing machines were originally defined so as to capture what human beings were capable of computing. It's certainly possible that Turing made a mistake and forgot some fundamental action that human computers can perform, but every attempt to extend his machines - or define other machines via a different approach - has failed to yield anything that is more powerful.

Of course, you can assume the existence of oracles for undecidable problems and, by incorporating these into the model of computation, solve previously undecidable problems. For instance, you could define a TM which solves the halting problem, and use this to construct TMs which solve a variety of otherwise unsolvable problems. However, we can't really find a good way to define this oracle TM... so it's more an exercise in theory than in practice.

Naturally, alternative formulations of computation can drastically affect the computational complexity. For instance, determining whether a given string is in the language of palindromes (i.e. whether it is a palindrome like "racecar" or "mom") can be solved in linear time in a random access machine (you can write a fairly simple C function to do this), but you can't possible do better than a quadratic TM (somebody correct me if I'm wrong).
 
Thank you, aegrisomnia. A very good answer.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top