Can the halting problem be solved for any non-turing languages? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T08:32:13Z http://stackoverflow.com/feeds/question/475350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages 7 Can the halting problem be solved for any non-turing languages? Shalmanese 2009-01-24T02:23:56Z 2009-05-02T12:25:22Z <p>The halting problem cannot be solved for turing complete languages and it can be solved trivially for some non TC languages like regexes where it always halts. </p> <p>I was wondering if there are any languages where it has both the ability to halt and not halt and there is also an algorithm that can determine whether it halts.</p> http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages/475369#475369 13 Answer by adrian for Can the halting problem be solved for any non-turing languages? adrian 2009-01-24T02:36:28Z 2009-01-24T03:04:13Z <p>The <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">halting problem</a> does not act on languages. Rather, it acts on machines (i.e., programs): it asks whether a given program halts on a given input.</p> <p>Perhaps you meant to ask whether it can be solved for other models of computation (like regular expressions, which you mention, but also like <a href="http://en.wikipedia.org/wiki/Pushdown_automaton" rel="nofollow">push-down automata</a>).</p> <p>Halting can, in general, be detected in models with finite resources (like regular expressions or, equivalently, finite automata, which have a fixed number of states and no external storage). This is easily accomplished by enumerating all possible configurations and checking whether the machine enters the same configuration twice (indicating an infinite loop); with finite resources, we can put an upper bound on the amount of time before we <em>must</em> see a repeated configuration if the machine does not halt.</p> <p>Usually, models with infinite resources (unbounded TMs and PDAs, for instance), cannot be halt-checked, but it would be best to investigate the models and their open problems individually.</p> <p>(Sorry for all the Wikipedia links, but it actually is a very good resource for this kind of question.)</p> http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages/475380#475380 5 Answer by Erik Engbrecht for Can the halting problem be solved for any non-turing languages? Erik Engbrecht 2009-01-24T02:49:21Z 2009-01-24T02:49:21Z <p>The short answer is yes, and such languages can even be extremely useful.</p> <p>There was a discussion about it a few months ago on LtU: <a href="http://lambda-the-ultimate.org/node/2846" rel="nofollow">http://lambda-the-ultimate.org/node/2846</a></p> http://stackoverflow.com/questions/475350/can-the-halting-problem-be-solved-for-any-non-turing-languages/475429#475429 7 Answer by A. Rex for Can the halting problem be solved for any non-turing languages? A. Rex 2009-01-24T03:26:50Z 2009-05-02T12:25:22Z <p>Yes. One important class of this kind are <a href="http://en.wikipedia.org/wiki/Primitive%5Frecursive%5Ffunction" rel="nofollow">primitive recursive functions</a>. This class includes all of the basic things you expect to be able to do with numbers (addition, multiplication, etc.), as well as some complex classes like <a href="#475369" rel="nofollow">@adrian</a> has mentioned (regular expressions/finite automata, context-free grammars/pushdown automata). There do, however, exist functions that are not primitive recursive, such as the <a href="http://en.wikipedia.org/wiki/Ackermann%5Ffunction" rel="nofollow">Ackermann function</a>.</p> <p>It's actually pretty easy to understand primitive recursive functions. They're the functions that you could get in a programming language that had no true recursion (so a function f cannot call itself, whether directly or by calling another function g that then calls f, etc.) and has no while-loops, instead having bounded for-loops. A bounded for-loop is one like "for i from 1 to r" where r is a variable that has already been computed earlier in the program; also, i cannot be modified within the for-loop. The point of such a programming language is that <em>every</em> program halts.</p> <p>Most programs we write are actually primitive recursive (I mean, can be translated into such a language).</p>