3,509 views
6 votes
6 votes
What is state entry problem? How Halting Problem can decide is it decidable or undecidable?

1 Answer

Best answer
9 votes
9 votes

State entry problem :- Let suppose we have a TM 'M' ,does our TM will ever enter(visit) some state 'q' during it's computation on any arbitrary input W.

In simple words will our TM ever enter a particular state for w ∈ ∑* .

Halting problem has nothing to do with State entry problem , it's decidability and undecidability that's the concern.

Let  A ⊆p B  from this reducibility we can claim two things

1) If A is undecidable then B will too.

2) If B is decidable then A will decidable too.

We basically use this concept to prove the decidability and undecidability of a language. and as HP is undecidable (RE but not REC) so if we can reduce this to state entry problem , we can then claim that SEP too undecidable.

Proof is simple , have a look here

http://www.cs.cornell.edu/courses/cs381/2002su/Materials/Homeworks/hw6/hw6-solns.pdf

selected by

Related questions

2 votes
2 votes
1 answer
2
monty asked Oct 26, 2016
784 views
5 votes
5 votes
2 answers
3
Kapil asked Sep 27, 2016
2,073 views
Can anyone provide the proof of halting problem of turing machines by contradiction ? If possible, give example, how is it reduced to other turing problems ?
2 votes
2 votes
0 answers
4
Na462 asked Jan 21, 2018
1,428 views
I totally understand the Halting problem, what about complement of halting problem? Is this the set of all those language which never halts? Why complement of halting pro...