edited by
2,745 views
4 votes
4 votes

Which of the following problems is/are decidable problem(s) (recursively enumerable) on turing machine $M$?

  1. $G$ is a CFG with $L(G)=\phi$
  2. There exist two TMs $M_1$ and $M_2$ such that $L(M) \subseteq \{L(M_1) \cup L(M_2)\} = $ language of all TMs​​​​​.
  3. $M$ is a TM that accepts $\omega$ using at most $2^{\mid \omega \mid}$ cells of tape
  1. i and ii only
  2. i only
  3. i, ii and iii
  4. iii only
edited by

1 Answer

1 votes
1 votes

B is the answer according to me. 

a) is decidable because emptiness problem for Context free languages is decidable. L(G)=ϕ, where G is CFG is decidable.

b) is the subset problem for Turing machines. Since M1 and M2 are TMS so {L(M1) U L(M2)} is also accepted by a  TM (closed under union). Hence, L(M) ⊆ {L(M1) U L(M2)} is undecidable because subset problem is only decidable for regular languages.

c) is the membership problem for Turing machines, hence undecidable.  We cannot say whether w∈M or not. 

Answer:

Related questions

4 votes
4 votes
2 answers
2
Arjun asked Jul 2, 2019
4,619 views
How many states are there in a minimum state automata equivalent to regular expression given below?Regular expression is $a^*b(a+b)$$1$$2$$3$$4$
1 votes
1 votes
1 answer
3