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 ...

learn more… | top users | synonyms

1
vote
2answers
55 views

Does this language have a Pushdown Automata ( PDA )?

the language is: { An B(2n) Cn | where n>=0 } I think it has, because you can process it like this: push A's, push B's, for each C pop three times from stack, if there are no C's and stack is empty, ...
0
votes
0answers
9 views

Downloading Z specification for mac

sorry if this doesn't belong in overflow but I have a real urge to continue making specifications using Z, as I've come to learn it during uni this year. I wanted to know if its possible to download ...
0
votes
1answer
54 views

CFG and closure properties [closed]

I am solving one problem and I urgently need a hint to solve one problem: Use closure under union to show that the following language is context-free: {am bn cp dq : n=q or m <= p or ...
1
vote
1answer
49 views

converting grammar (written in ANTLR) of a language into formal language/mathematical notations

In my current project, my boss has assigned a job of expressing a grammar (written in ANTLR) of domain specific language into formal language/notations. For instance, the following is a small code ...
1
vote
2answers
70 views

Turing Machines

I'm reading a book on Languages & Automata and I'm not understanding Turing Machines. I've taught myself about DFA's NFA's and Pushdown Automata without any problems. Can someone please explain ...
1
vote
1answer
89 views

What is this grammar? Context-free or context sensitive

I am studying Formal Languages and Automata Theory, and I have a question about a problem inside the book that is not answered in it. the question is: Is this language Context Free, Regular or ...
0
votes
1answer
153 views

Validate string given Context Free Grammar in Java

How can someone validate if a string is part of a context free Grammar? Not just virtually, but build an algorithm for it? Given a context free grammar with rules such as V-> v1v2 v1->1 | 1v1 v2-> ...
0
votes
1answer
57 views

Regular expression for formal languages

I'm trying to write a regular expression for a language consisting of: Strings which contain any number of a’s followed by a single b and Strings which contain any number of a’s followed by a single ...
0
votes
0answers
26 views

Formal Language syntax

Here is the question: Show that: L = {0m1n, m > 1, n > 1, n < m } , where m & n are superscripts is not regular. I am not sure what superscripts mean in this situation? Does it mean ...
-3
votes
1answer
228 views

Finding Context Free Grammar of a given language [closed]

Find the Context Free Grammar(CFG) for a given language: L={0n 1m: m,n>=0 and n!=m 1}
0
votes
1answer
78 views

What is the intersection of two languages with different alphabets? [closed]

I did some googling on this and nothing really definitive popped up. Let's say I have two languages A and B. A = { w is a subset of {a,b,c}* such that the second to the last character of w is b } B ...
-2
votes
2answers
265 views

Is L = {a^n b^m | n>m} a regular or irregular language?

I have troubles in solving/proving this problem. Any ideas please?
1
vote
2answers
251 views

Tips for creating Context free grammar

I am new to CFG's, Can someone give me tips in creating CFG that generates some language For example L = {a^m b^n | m >= n} What I got is So -> a|aSo|aS1|e S1 -> b|bS1|e but I think ...
1
vote
3answers
89 views

Reading numbers as strings

I am new at R programming and I want to read a text file in R. One of the columns, lets say column 7 is numeric and each number represent an ID I want R to read the numbers as if they were ...
0
votes
1answer
33 views

How to define at least one occurrence of a string between two tokens in a CUP parser grammar

I am trying to define a non terminal symbol in a LALR(1) grammar (with CUP parser). It is requested that the <code> token must appear exactly two times, while <hour> token must appear at ...
0
votes
0answers
34 views

Searching different language specifications or handy notations to get acquainted with ANTLR [closed]

With ANTLR one can define his own lexer/parser/tree walker to process some custom formal language. It's handy when you have to process (read in, translate, check,...) some given data in ...
1
vote
2answers
55 views

How to evaluate an expression using β reduction in lamdba calculus?

I want to evaluate the following expression : (λx.y)((λz.zz)(λw.w)) using β reduction . The answer is : (λx.y)((λz.zz)(λw.w)) -> (λx.y)((λw.w)(λw.w)) -> (λx.y)(λw.w) -> y But I don't ...
-1
votes
1answer
115 views

Pumping lemma for CFL [closed]

I need some help with the following question: One of the languages is context-free and the other is not. Build a context-free grammar for the one that is. For the other one provide a proof that it ...
0
votes
0answers
94 views

Pumping lemma - Choosing the right string to pump

I have a problem finding the right string to pump for the following language: Which string should I choose to pump ? The problem is that I don't know how to handle the fact that I have p+q and q+r ...
1
vote
1answer
127 views

Pumping lemma for Context-Free Languages

I have a question about a specific pumping lemma problem for Context-Free Languages. Suppose we have the following Language: L = {(a^i)(b^j)(c^k)(d^l) | 0 < i < k AND j > l > 0 } Here ...
0
votes
1answer
141 views

Deciding if a given Language is Regular/Context-Free/Non Context-Free

I need some help with deciding if a given language is regular, context-free or not context-free. A brief, informal explanation is sufficient in the answer, hence no need to use pumping lemma. Lets ...
0
votes
2answers
61 views

Does this DFA have a solution?

I trying to create a DFA that can recognize strings with alphabet {a,b,c} where a and c appear a even number of times and where b appears an uneven number of times. I am wondering that this may only ...
1
vote
2answers
1k views

Left-Linear and Right-Linear Grammars

I need help with constructing a left-linear and right-linear grammar for the languages below? a) (0+1)*00(0+1)* b) 0*(1(0+1))* c) (((01+10)*11)*00)* For a) I have the following: Left-linear S ...
1
vote
1answer
263 views

LR(1) - Items, Look Ahead

I am having difficulties understanding the principle of lookahead in LR(1) - items. How do I compute the lookahead sets? Say for an example that I have the following grammar: S -> AB A -> aAb ...
0
votes
0answers
192 views

Context Free Grammars - LR(0) DFA

I need some help with constructing a LR(0) DFA for a CFG grammar. S -> A A -> aaAb | B B -> aBb | e This is what I got: State { S -> .A A -> .aaAb A -> .B B -> .aBb ...
0
votes
0answers
66 views

Context Free Language - Pumping lemma [closed]

I have a question regarding the pumping lemma for CFL. Say that i want to prove that L is not a CFL. L = { {a,b,c}* | #a(L) < #b(L) > #c(L) } My question is regarding how to choose a string ...
1
vote
1answer
151 views

Pumping lemma (Regular language)

I need some help with a pumping lemma problem. L = { {a,b,c}* | #a(L) < #b(L) < #c(L) } This is what I got so far: y = uvw is the string from the pumping lemma. I let y = abbc^n, n is the ...
0
votes
0answers
60 views

Rodin EventB Toolkit proof error- Types and '0×'1 do not match

On the line with the error, I was trying to do a range restriction and then obtain the domain. Download Project Code
0
votes
1answer
93 views

What is the formal definition for the format of an email address?

I would like to know the formal definition for the construction of an email address. I don't just want the answer, but how to get to it, as I'd to learn how to do it myself.
2
votes
2answers
497 views

Example of Non-Linear, UnAmbiguous and Non-Deterministic CFL?

In the Chomsky classification of formal languages, I need some examples of Non-Linear, Unambiguous and also Non-Deterministic Context-Free-Language(N-CFL)? Linear Language: For which Linear grammar ...
0
votes
1answer
158 views

Formal grammar of XML

Im trying to build small parser for XML files in C. I know, i could find some finished solutions but, i need just some basic stuff for embedded project. I`m trying to create grammar for describing XML ...
2
votes
0answers
159 views

Is there any easy way of solving “Construct a Turing machine …” questions?

I understood the logic of Turing machine. When the Turing machine is given , i can understand how it is working and how it halts. But when it is asked to construct a Turing machine , it is more ...
-3
votes
1answer
162 views

Find a regular expression for strings containing the substring 01a and even number of 1's over the alphabet {0,1,a} [closed]

Regular language given by its description: The set of all strings of {0,1, a}, which contain the substring '01a' and an even number of '1'. For example, '01a1 ', '101a', '101a101'. How to construct ...
4
votes
2answers
203 views

Extension to CFG, what is it?

Consider the following extension to context-free grammars that permits rules to have in the left-hand side, one (or more) terminal on the right side of the non-terminal. That is, rules of the form: A ...
3
votes
3answers
530 views

To make sure: Pumping lemma for infinite regular languages only?

So this is not about the pumping lemma and how it works, it's about a pre-condition. Everywhere in the net you can read, that regular languages must pass the pumping lemma, but noweher anybody talks ...
2
votes
1answer
97 views

Difference between L* and Σ*

Can someone please explain the exact difference between Σ* and L* , where L is a language and Σ is alphabet of the language L ? Thanks
1
vote
4answers
64 views

Understanding Σ* and Σ in formal languages

If I have Σ={a} , what words does Σ* has ? Σ*= {a,aa,aaa,aaaa.....} ? Thanks
0
votes
1answer
77 views

adding variables/types to a typing environment

I have an environment which contains a set of tokens that I have already come across; when I look at a new token I want to add that token to the current environment. Basically I want to express a ...
0
votes
0answers
27 views

Is a satisfiable FOL-sentence a prime event structure always satisfiable in a regular trace event structure?

Suppose first-order logic sentence is satisfiable in the class of prime event structure. Is it also satisfiable in some regular trace event structure? (for all notions I'm referring to Madhusudan's ...
0
votes
0answers
33 views

Grammar rewriting

Does someone know how to rewrite (expand) two token collections to all their permutations in (E)BNF; something like this: Char* Int* -> PERMUTATIONS(Char Int) e.g. {a, b, c} and {1,2} to {(a 1), (a ...
22
votes
3answers
442 views

What kind of formal languages can modern regex engines parse?

Here on SO people sometimes say something like "you cannot parse X with regular expressions, because X is not a regular language". From my understanding however, modern regular expressions engines can ...
0
votes
1answer
67 views

how can i see directly that a language is not regular

given L={a^n b^n c^n}, how can i say directly without looking at production rules that this language is not regular? i can use pumping lemma but some guys are saying just looking at the grammar that ...
0
votes
1answer
359 views

Use pumping lemma to prove grammar is not context free?

I'm trying to prove that L={y#x|(y is a substring of x) ∧x,y∈{a,b}^* } is not context free using the pumping lemma, but I can't seem to do that. If |vy|≠ε ,|vxy|≤k , uv^n xy^n z∈L ,∀n≥0 Then ...
1
vote
1answer
107 views

How to prove that L={w|#a(w)=#b(w)=#c(w)} is not context free using closure

How can I prove that the language L={w|#a(w)=#b(w)=#c(w)} is not context free using closure ? Thanks EDIT : I know that the language L1 = {a^i b^i c^i | i>=0} is not a context free language . ...
1
vote
1answer
170 views

Formal Methods, Logic and VDM past exam paper questions

I was hoping someone can help me with the following questions, answers would be best but if you can point me in the right direction that will be helpful also. I am a final year uni student and these ...
-1
votes
2answers
125 views

How come we write programs in context-free languages? Shouldn't programs be in recursively enumerable languages in order to be Turing complete? [closed]

I really can't understand how we can simulate the output of a Turing machine (which accepts a recursively enumerable language) if we mostly code in context-free languages.
-1
votes
1answer
188 views

Union in context-free languages

Is the union of a collection of context-free languages always context-free ? Justify your answer ..... I know that the answer is yes, but how can I prove it ?
0
votes
1answer
591 views

Drawing a simple non-deterministic finite automaton (NFA)

How can I draw NFA (automaton) for this question? First it should accept: alphabet = x,y,z L= { w | w such that, one of the number of occurrence x,y,z is multiple of three. } For example: {xxx, ...
-2
votes
2answers
85 views

Is there some other way to describe a formal language other than grammars?

I'm looking for the mathematical theory which deals with describing formal languages (set of strings) in general and not just grammar hierarchies.
1
vote
2answers
652 views

How can I prove if this language is regular or not?

How can I prove if this language is regular or not? L = {an bn: n≥1} union {an bn+2: n≥1}

1 2