The halting problem is a famous problem in theoretical computer science. Given as input a description of a program (typically a Turing machine) and an input to that program, the Halting problem is to decide whether that program terminates on that input.

learn more… | top users | synonyms

-1
votes
0answers
8 views

Data structures and algorithms? [closed]

i have problem to prove this for the Halting problem. if anybody knows how to prove it...cause i m stacked . Let H be a program that partially solves the halting problem, ie, to give an affirmative ...
-3
votes
1answer
156 views

Is there an operating system (or other runtime environment) that can detect infinite loops? [closed]

EDIT: this question has been ported here, where it seems to fit a little better. Does there exist an OS (or any other runtime environment) that can detect infinite loops and subsequently stop the ...
0
votes
1answer
20 views

Can a Turing machine decide if a formal model of computation is Turing complete?

That is, can a Turing machine take a formal system, S, as its input and decide if S is Turing complete? I think this is an undecidable problem, am I right? If it is undecidable, why can we (as ...
0
votes
0answers
93 views

Prove that ATM is undeciable by reducing HALTTM to ATM

This is basically the inverse of the halting problem. So far my idea is: Assume ATM is decided by a machine R. Construct a machine, S, that on input simulates w on R. If R accepts or reject, accept. ...
3
votes
3answers
140 views

Automated computation of algorithm time complexity for terminating algorithms

There are a lot of related questions here on SO, but they all ask about writing a program to compute the complexity of arbitrary algorithms (which is obviously undecideable). I am willing to make the ...
4
votes
5answers
119 views

Java: Iterative method returning an object

Out of curiosity I came to write the following method: public Object getObject() { return this.getObject(); } Why would Java allow me to write this? This method would never return any ...
3
votes
2answers
101 views

Will this algorithm terminate?

With different values in a collection, will this algorithm (pseudeocode) ever terminate? while (curElement != average(allElements)) { curElement = average(allElements); nextElement(); } ...
-2
votes
2answers
219 views

The use of System.currentTimeMillis() in loops in Java [closed]

Let's observe the following segment of code in Java that uses System.currentTimeMillis() in a for loop. package loops; final public class Main { public static void main(String... args) { ...
5
votes
2answers
182 views

Automatically and deterministicly testing a function for associativity, commutativity etc

Is it possible to construct a higher order function isAssociative that takes another function of two arguments and determines whether that function is associative? Similar question but for other ...
78
votes
15answers
4k views

Infinite loops in Java

Look at the following infinite while loop in Java. It causes a compile-time error for the statement below it. while(true) { System.out.println("inside while"); } System.out.println("while ...
4
votes
1answer
983 views

How does this proof, that the halting problem‍​ is undecidable, work?

I'm going over the proof for The Halting Problem in Intro to the Theory of Computation by Sipser and my main concern is about the proof below: If TM M doesn't know when it's looping (it can't accept ...
0
votes
1answer
130 views

Why does the halting problem make it impossible for software to determine the time complexity of an algorithm

I've read some articles about big-Oh calculation and the halting problem. Obviously it's not possible for ALL algoritms to say if they ever are going to stop, for example: ...
3
votes
1answer
1k views

Proof that the halting problem is NP-hard?

(I apologize if this is the wrong site for this question, but given that there are many "not-hard-enough-for-CS-Theory" CS theory questions floating around here, I think that this might be a good fit. ...
1
vote
2answers
219 views

Detecting if a Program is in an Infinite Loop (Read: Solving the Halting Problem)

Is detecting whether a deterministic program (i.e. state machine) is in an infinite loop equivalent to solving the halting problem? I came up with a solution, and I'm not sure why it shouldn't work: ...
0
votes
0answers
1k views

ODD_WLS_labs Oracle VM VirtualBox images - 'No bootable medium found' error

I've downloaded the pre-built developer VM for Oracle WebLogic Server Development from here and done all the install instructions. But when I started the VM from VirtualBox, the following error ...
0
votes
2answers
511 views

Android 3.0 emulator launching issue

I am trying to test a simple status bar notification program on Android 3.0 emulator. when i try to run my application from eclipse, sometimes either i see a message that "apk can't be installed"' ...
6
votes
3answers
298 views

“Finding all the code in a given binary is equivalent to the Halting problem.” Really?

Was just reading the highly voted question regarding Emulators and the statement It's been proven that finding all the code in a given binary is equivalent to the Halting problem. Really ...
1
vote
1answer
512 views

Controller action is called twice

I've noticed, that "index" action of my controller is called twice. The action has following structure: def index if params[:tags].nil? # [fork #1] just return the whole collection of model ...
0
votes
4answers
151 views

why there can't be a program that checks another program

I am trying to find the logical alan turing explanation why there can't be a program that checks another programs. I remember we learned in on the computation course but now i just can't find the ...
1
vote
3answers
1k views

Turing machine halting problem

I have a question about turing machines and halting problem. Suppose that we have Atm = {(M,w) where M is a turing machine and w is an input} and HALTtm = {(M,w) where M is a turing machine halts ...
3
votes
7answers
352 views

Is there a “good enough” solution for the halting problem?

It is known that the halting problem cannot have a definite solution, one that a) returns true <==> the program does indeed halt, and b) handles any input, but I was wondering if there are good ...
10
votes
6answers
25k views

iPhone + UITableView + row height

I am setting the row height of my UITableView using following code [tableView setRowHeight: 100.00]; I am using the single line as separator in the UITableView. Eventhough setting the height ...
9
votes
8answers
482 views

Do all regular expressions halt?

Is there any regular expression that will, for some input string, search for a match forever?
28
votes
21answers
4k views

What exactly is the halting problem?

Whenever people ask about the halting problem as it pertains to programming, people respond with "If you just add one loop, you've got the halting program and therefore you can't automate task" Makes ...
1
vote
11answers
630 views

What would programming languages look like if every computable thing could be done in 1 second?

Inspired by this question Suppose we had a magical Turing Machine with infinite memory, and unlimited CPU power. Use your imagination as to how this might be possible, e.g. it uses some sort of ...
0
votes
2answers
259 views

the halting problem and background compilation?

I'm trying to figure out how I could write an autocompletion algorithm for Lua, but since as with many scripting languages it lacks a static type system I think I need background compilation, but ...
10
votes
3answers
938 views

Halting in non-turing languages

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. I was wondering if there are any ...
12
votes
7answers
3k views

Detecting infinite loop in brainfuck program

I have written a simple brainfuck interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out ...
17
votes
10answers
3k views

Practical non-Turing-complete languages?

Nearly all programming languages used are Turing Complete, and while this affords the language to represent any computable algorithm, it also comes with its own set of problems. Seeing as all the ...
52
votes
14answers
4k views

The Halting Problem in the Field

When have you ever personally come upon the halting problem in the field? This can be when a co-worker / boss suggested a solution which would violate the fundamental limits of computation, or when ...
16
votes
21answers
1k views

How do you apply Theoretical Computer Science?

Why is theory useful? Do you ever use it in your day-to-day coding? For example, we learned about the halting problem, Turing machines, reductions, etc... a lot of classmates are saying it's abstract ...