Tagged Questions
The study of formal languages concerns the definition, description (generation) and parsing (recognition) of sets of strings over finite sets of symbols. The set of all binary representations of integers, the set of all palindromes over the lowercase Latin alphabet, and the set of all binary representations of Turing machines which do not accept themselves are examples of formal languages.
6
votes
1answer
183 views
What class of language can Perl regular expressions be used against?
I know that some of the capabilities of the Perl regular expression engine are not regular. However, what class is it? It might be context-free, but CS theory was never my strongest subject.
5
votes
4answers
236 views
Checking if a string consists of balanced parenthesis
I wrote the following program to check strings for balanced parenthesis:
isBalanced xs = isBalanced' xs []
isBalanced' [] [] = True
isBalanced' [] _ = False
isBalanced' ('(':xs) ys = isBalanced' ...
5
votes
2answers
139 views
Shift-reduce: when to stop reducing?
I'm trying to learn about shift-reduce parsing. Suppose we have the following grammar, using recursive rules that enforce order of operations, inspired by the ANSI C Yacc grammar:
S: A;
P
: ...
4
votes
3answers
166 views
How do I find the language from a regular expression?
How would I find the language for the following regular expressions over the alphabet {a, b}?
aUb*
(ab*Uc)
ab*Ubc*
a*bc*Uac
EDIT: Before i get downvoted like crazy, i'd appreciate it if someone ...
4
votes
6answers
267 views
Distance between regular expression
Can we compute a sort of distance between regular expressions ?
The idea is to mesure in which way two regular expression are similar.
3
votes
3answers
136 views
OOP design of tool for teaching formal languages & automata
I am thinking of using some spare time to play around with designing and implementing a teaching tool for a course on formal languages and automata theory. I am trying to decide whether an OOP ...
3
votes
1answer
221 views
Verifying that a grammar is strong LL(2)
Problem 19.5 of Sudkamp's Languages and Machines asks the reader to verify that the grammar
G : S' -> S##
S -> aSa | bSb | λ
is strong LL(2). The FIRST and FOLLOW sets for the variable S ...
3
votes
3answers
158 views
regular languages with concatenations
the regular languages are closed under the operation:
init(L) = the set of the strings w such that for some x, wx is in L.
EDIT :
x can be any string, a character or empty string
How can I prove ...
3
votes
1answer
83 views
Is there an algorithm for determining if the set of all valid XML instances in respect with a specific XSD schema is a regular language or not?
Essentially I want to know if a specific XSD schema can be replaced by a regular expression or not. I know that XML Schema language can produce XSDs whose set of valid XML instances can be of any type ...
3
votes
0answers
204 views
Which formal language class are XML and JSON with unique keys (they are not context-free) [closed]
Please don't answer here but at cstheory.stackexchange, where I copied this question to!
JSON and XML are both frequently called to be context-free languages - they are both specified mainly by a ...
2
votes
3answers
70 views
find a regular expression for strings containing the substring aba over the alphabet {a, b}? (formal language theory)
The questions asks to find a regular expression for strings containing the substring aba over the alphabet {a, b}.
Does this mean anything can precede/procede aba so that the regular expression would ...
2
votes
3answers
248 views
What is a regular language?
I'm trying to understand the concept of languages levels (regular, context free, context sensitive, etc..).
I can look this up easily, but all explanations I find are a load of symbols and talk about ...
2
votes
2answers
163 views
Conversion to Chomsky Normal Form
I do need your help.
I have these productions:
1) A--> aAb
2) A--> bAa
3) A--> ε
I should apply the Chomsky Normal Form (CNF).
In order to apply the above rule I should:
eliminate ε ...
2
votes
4answers
241 views
Python: String manipulation of type String substitution in mathematical expression
Imagine something like
exp(49/200)+(x-49/200)
I want to pass as argument of the function "roundn" whatever operation that is not a addtion or a subtraction
So my expresion became
...
2
votes
5answers
141 views
Regular Expression: Mathematically vs. Programmatically
Consider the following regular expressions:
7+
(7)+
Does anyone that is very familiar with regular expression theory in Mathematics agree that the two regular expressions are semantically the ...
2
votes
3answers
246 views
Recursive languages vs context-sensitive languages
In Chomsky's hierarchy, the set of recursive languages is not defined. I know that recursive languages are a subset of recursively enumerable languages and that all recursive languages are decidable.
...
2
votes
4answers
597 views
What is a formal programming language?
What does it mean that a programming language is a formal programming language? And which languages are formal programming languages? And which are informal programming languages?
I haven't found a ...
2
votes
4answers
595 views
Recursive Sets vs Recursive Functions
What s the difference between a recursive set and recursive function?
1
vote
2answers
117 views
Why is the complement of a regular language still a regular language?
According to my textbook, the complement of L1 = A* - L1 is a regular language as long as L1 is a regular language.
Doesn't A* also include Context Free languages, Context Sensitive languages, and ...
1
vote
2answers
45 views
Production rules for a grammar
Before anything, yes, this is from coursework and I've been at it sporadically while dealing with another project.
A language consists of those strings (of terminals 'a' and 'b') where the number of ...
1
vote
1answer
129 views
undecidable language proof
Consider the following language:
L={M| M is a Turing Machine and there exist input x of length k such that M halts after at most k steps}
Is L undecidable?
I think it is but I couldn't prove ...
1
vote
2answers
115 views
CFG grammar definition
Define a CFG (context free language) that generates the language:
L={a^n b^m c^n | n,m>=0}
Can anyone tell me how to address the problem?
My understanding is that L is made of elements like: { ...
1
vote
2answers
274 views
Does logical AND and NOT exists in ANTLR?
Is there NOT logic in ANTLR? Im basically trying to negate a rule that i have and was wondering if its possible, also is there AND logic?
1
vote
1answer
151 views
Simple Formal Language and Automata question
I know this question is really stupid but I would really appreciate it if someone can help me out.
Q: When you are proving a language is decidable, what are you effectively doing?
Thank you
1
vote
3answers
304 views
chomsky hierarchy and programming languages
I'm trying to learn some aspects of the Chomsky Hierarchy which are related to programming languages, and i still have to read the Dragon Book.
I've read that most programming languages can be ...
0
votes
1answer
26 views
How to convert a non-embedding context free grammer to regular grammer?
Please note that I am aware the undecidability of the conversion of context-free grammer to regular grammer. But given the non-embedding property of the input context-free grammer, is there any ...
0
votes
1answer
67 views
Find a non-deterministic CFL whose reverse is deterministic
I have a homework assignment, and i am finished other then one question (see title)
For the life of my, i cannot figure this out... so i started to think it was a trick question.
the current answer ...
0
votes
3answers
68 views
How do I figure out the language generated by this context-free grammar?
I am dealing with the following grammar:
G = ( {S, A}, {a, b}, P, S )
P = { S -> aAb, S -> bAa,
A -> aSa,
A -> S,
A -> epsilon}
I need to find out L(G).
The thing is, I figured ...
0
votes
4answers
177 views
Why do we need prefix, postfix notation
I know how each of them can be converted to one another but never really understood what their applications are. The usual infix operation is quite readable, but where does it fail which led to ...
0
votes
1answer
45 views
How to recognize English words via ANTLR?
I would like to determirmine if a word is in a large list of keywords (vulgar and so on) and a parser should be a good solution (it should be fast as far as I know) because I need a few rules how to ...
0
votes
1answer
58 views
what is the length of a language that contains epsilon?
1, I have an NFA that can recognize two words, "aa" and "epsilon".
So the language L1 this NFA recognizes is a set {aa, epsilon}.
What is the length of this language?
Is |L1| = 1? or |L1| = 2?
2, ...
0
votes
3answers
80 views
constructing CFG
How can I construct a Context-Free Grammer for the language x^a y^b z^2(a+b) where a>=0, b>=0.
Thanks for helps...
0
votes
0answers
169 views
Eliminate left recursion from the grammar [closed]
How can I solve this question?
Eliminate left recursion from the grammar
S-> Aa|b
A-> Sc|Ad|e
0
votes
2answers
66 views
stack translator in formal languages
Can someone explain how a stack translator works ? I think it is mainly used for lexical analysis (i could be very much wrong) . Any additional material or links are welcome ! Thanks !
0
votes
1answer
158 views
Ambiguous Regular Grammar?
Does such a thing exist? If so, could you please provide an example? Thanks.
0
votes
3answers
153 views
Regular expressions
First of all I do not know if this is the correct translation for what I am asking.
In one of my courses we just stared learning about regular expressions, formal languages and so on.
Alphabet ...
0
votes
1answer
79 views
How to Design an acceptor for integers in a programming language C
I was reading a book named "An introduction to Formal Languages and Automata" by Peter Linz. In one of it's questions, it asked me to, "Design an acceptor for integers in a programming language C" Can ...
0
votes
2answers
144 views
formal languages: what does R-trivial mean?
What is an R-trivial language? I.e. what is the definition?
What is an R-trivial monoid?
Context: Formal languages. Afaik, R-trivial languages is a subset of the starfree languages.
I mostly have ...
0
votes
0answers
292 views
MATLAB: String manipulation of type String substitution in mathematical expression
Imagine something like
exp(49/200)+(x-49/200)
I want to pass as argument of the function "roundn" whatever operation that is not a addtion or a subtraction
So my expresion became
...
0
votes
2answers
84 views
Is the valid state domain of a program a regular language?
If you look at the call stack of a program and treat each return pointer as a token, what kind of automata is needed to build a recognizer for the valid states of the program?
As a corollary, what ...
-1
votes
1answer
42 views
Formal regular expression for a language over a,b,c such that a is never adjacent to b [closed]
I am trying to write a regex query for a language with letters a,b,c such that a is never adjacent to b.
Can it be done by using only the alternation (plus), concatenation and repetition ...
-2
votes
0answers
23 views
Context-free grammar Prefix arithmetic notation [closed]
This is a homework question, however help would be appreciated.
I know how the prefix notation works...but how would I go about making the context free grammar for it.
-2
votes
1answer
72 views
Following language is recursively enumerable or not? [closed]
Define languages L0 and L1 as follows:
L0 = {<M, w, 0> | M halts on w}
L1 = {<M, w, 1> | M does not halt on w}
Here is a triplet, whose first component, M, is an encoding of a Turing
...
-2
votes
1answer
51 views
Is it possible to get nesting done properly in a php/html-style situation?
I suspect that there might even be a mathematical proof that the answer to this is "no", but, question: Could one invent a type of php-like language (ie with some lines that evaluate code behind the ...
-6
votes
1answer
183 views
I need to find an automaton for this language [closed]
Please help me find a grammar or automaton to decide the following language:
anbncn where n≥1