17

It is arguable that most languages created to describe everyday problems are context-sensitives. In the other hand, it is possible and not hard to find some languages that are not recursive or even not recursively-enumerable.

Between these two types are the recursive non-context-sensitive languages. Wikipedia gives one example here:

An example of recursive language that is not context-sensitive is any recursive language whose decision is an EXPSPACE-hard problem, say, the set of pairs of equivalent regular expressions with exponentiation.

So the question: What others problems exists that are decidable but yet non-context-sensitive? Is this class of problems the same as decidable EXPSPACE-hard?

Kaveh
  • 22,231
  • 4
  • 51
  • 111
  • 3
    Lots of (arguably natural) verification problems are (if decidable) at least PSPACE-complete. I am not sure wether this is sufficient for non-context-sensitivity, but there are plenty of problems with an EXPSPACE lower bound, too. – Raphael Mar 13 '12 at 07:14

3 Answers3

11

CSL is the same as $\mathsf{NSpace}(n)$ (non-deterministic linear space). Any language which is outside $\mathsf{NSpace}(n)$ is not CSL.

To get a feeling of the situation, remember that $SAT \in \mathsf{NSpace}(n)$ and even TQBF.

What others problems exists that are decidable but yet non-context-sensitive?

The are many problems. Any problem that is complete for a complexity class larger than $\mathsf{PSpace}$ will do (we need $\mathsf{PSpace}$ because problems like TQBF in $\mathsf{NSpace}(n)$ that are complete for $\mathsf{PSpace}$ because a (polynomial time) reduction can blow up the size of an input by a polynomial). Giving an example will mean proving a lowerbound for the complexity class containing the problem and that is very very difficult task. The only major way we know so far to do this is diagonalization which intuitively means that the larger class should be able to simulate the smaller class.

So $\mathsf{ExpSpace\text{-}hard}$ seems a natural place to start to look for natural examples of language which are not CSL.

Is this class of problems the same as decidable EXPSPACE-hard?

No. By the space hierarchy theorem, there are languages which are in $\mathsf{NSpace}(n^2)$ which are not in $\mathsf{NSpace}(n)$. If you are asking for nice examples, that is going to be difficult because the theorem works using diagonalization and therefore the language it proves to satisfy these conditions is very artificial.

I suggest that you ask a separate question for a natural problem that separates $\mathsf{NSpace}(n^2)$ from $\mathsf{NSpace}(n)$.

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

Just like $\{a^nb^n:n\geq 0\}$ is context-free but not regular, the language $L=\{a^nb^nc^n:n\geq 0\}$ is decidable but not context-free. However, $L$ can be solved using logarithmic space (you just need a counter for each of the symbols $a$, $b$ and $c$), so it is not EXSPACE-hard.

Also, the language $\{(r_1,r_2):L(r_1)=L(r_2)\}$, where $r_1$ and $r_2$ are regular expressions, is PSPACE-complete. I'm almost sure it's not context-sensitive, but I don't remember a proof and I'm writing from my phone, so it's not easy to go looking for references.

Janoma
  • 5,535
  • 3
  • 20
  • 21
0

intersection operator\to the syntax of regular expressions, deciding whethertwo such expressions describe the same language is EXPSPACE-hardcheck here hence this language is not context sensitive but recursive https://jeffe.cs.illinois.edu/teaching/algorithms/book/12-nphard.pdf

  • Please don't copy-paste from external sources without attribution. We require that you indicate all copied material following the guidelines in https://cs.stackexchange.com/help/referencing, including using quotes to indicate which portion is copied. – D.W. Oct 25 '21 at 15:11