713 views
0 votes
0 votes

Consider a language L for which there exists a Turing machine that, when presented with any finite input string w over the alphabet, halts and accepts if ω ?  L, and halts and rejects otherwise. Which one of the following statements is/are TRUE?

  • 1. 

    L is recursive but not recursively enumerable.

    img

  • 2. 

    L is recursively enumerable but not recursive.

    img

  • 3. 

    L is recursively enumerable.

    img

  • 4. 

    None of the above

1 Answer

1 votes
1 votes

The language referring to the problem is a property of halting Turing Machine and hence the language is decidable(recursive)..In other words the problem given is membership problem for recursive language which is decidable and hence recursive..

And we know if a language is recursive then language will be recursively enumerable as well..

Hence C) is correct answer..

Related questions

0 votes
0 votes
1 answer
2
3 votes
3 votes
2 answers
4
Sandeep Verma asked Nov 12, 2017
2,305 views
If a language(L1) is Recursive enumerable (RE) and L2 is Recursive (REC) , then what will be L1 - L2 ? Can we directly use set difference property or do the s...