10

Let A and B be languages with A ⊆ B, and B is Turing-recognizable. Can A be not Turing-recognizable? If so, is there any example?

Raphael
  • 72,336
  • 29
  • 179
  • 389
gfe
  • 203
  • 1
  • 6

4 Answers4

18

This is something that confuses many students. The point here is that being subset of another language does not imply much about their difficulty of computation. You can always consider the trivial language $\emptyset$ and $\Sigma^*$ and any other language is between them w.r.t. set inclusion.

Therefore just knowing that a language contains or is contained in a easy to compute language doesn't say anything about the difficulty of computing it.

Kaveh
  • 22,231
  • 4
  • 51
  • 111
1

When a Turing-recognizable language $X$ is not decidable, it implies that it is not co-Turing-recognizable (in other words: $X^c$ is not recognizable). Since $X^c$ is a perfectly valid subset of $\Sigma^*$, this supports the fact that for a language $A \subseteq B$ where $B$ is Turing-recognizable, $A$ may very well not be.

David Richerby
  • 81,689
  • 26
  • 141
  • 235
Sander
  • 111
  • 2
  • I think Kaveh's answer is better and more to the point. Any language is a subset of $\Sigma^$ and we know that $\Sigma^$ is decidable and that there are arbitrarily hard languages. – Pål GD Apr 06 '14 at 19:48
  • That's what I tried to explain, as $X$ could be any language, because $X \subset \Sigma^*$ automatically holds. ;) – Sander Apr 07 '14 at 17:48
-2

Your discussion successfully confused me :(

"Can A be not Turing-recognizable?"

I feel A is always Turing-recognizable. Here is my thinking,

Since B is Turing Recognizable => There is some TM which accepts all the words of language B => There is a TM which accepts (all the words of language A + some other words) => There is a TM which accepts all the words of language A => A is Turing Recognizable.

Is this wrong? Can there be any case where A is Non-TRL while B is TRL. Kindly help

bongubj
  • 563
  • 1
  • 6
  • 11
  • 1
    Yes, it is wrong: an acceptor for a language must not accept any words except those in the language. – reinierpost Jul 11 '12 at 14:18
  • Please don't post follow-up questions as answers. Use comments (after you have proven to the system that you are trustworthy) or create a new post if the new question is significantly different (not the case here). – Raphael Jul 17 '12 at 14:36
-4

In this case A couldn't be Turing-recognizable. Take this as an example:

language B is the union of a language t.r (C) and a language not t.r(A). you can create a turing machine that recognizes B. A is not t.r and A ⊆ B.

is that right? i dont know if it is..so.. =)

  • 3
    not every union of $C\in RE$ and $A\notin RE$ is recognizable. For instance, let $C=\emptyset$ and $A$ the halting problem. You cannot create a turing machine that recognizes $B=A \cup C$. – Ran G. Apr 22 '12 at 07:33