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 with an input w}

I want to prove that HALTtm <=m Atm

I've tried some methods but I think they're far from the solution. Anyone can give some clues ??

link|improve this question

65% accept rate
This question would have been perfect for the upcoming Computer Science Stack Exchange. So, if you like to have a place for questions like this one, please go ahead and help this proposal to take off! – Raphael Dec 6 '11 at 12:36
What exactly is <=m supposed to mean? I read it as \leq_m, but how is that defined? – Raphael Dec 6 '11 at 12:37
feedback

3 Answers

Well, observe that for all (M,w) in HALTtm, it must be that (M,w) is in Atm. Then show there exists some (M',w') which is a member of Atm but which does not halt, and so is not in HALTtm.

link|improve this answer
1  
The second step isn't necessary. Note that he used "<=" which is presumably intended to mean "subset of or equal to". – sepp2k Mar 24 '10 at 18:57
I suspect <=m is intended to mean the existence of a many-one reduction. In that case, what the OP is trying to prove is not true. – Prateek Dec 6 '11 at 14:06
feedback

For each of the following languages, draw a transition diagram for a Turing Machine that accepts that language. 1. {aibj | i≠j}

link|improve this answer
feedback

What is <=m? I think you mean "many-one reduces to"? In that case, what you're asking for is a total computable function f such that for all strings x,

x belongs to HALTtm if and only if f(x) belongs to Atm

If such an f existed, we could decide the halting problem : given x, compute f(x) and check if f(x) belongs to Atm (Atm is easily recursive/decidable). But since the halting problem is not decidable, such an f cannot exist. So HALTtm does not many-one reduce to Atm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.