Tagged Questions
6
votes
4answers
1k views
Is it possible to simplify this regular expression any further?
I'm working on some homework for my compiler class and I have the following problem:
Write a regular expression for all strings of a's and b's that contain an odd number of a's or an odd number of ...
4
votes
3answers
191 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 ...
3
votes
2answers
357 views
Proving a Language to be regular
Pumping Lemma is used to prove a language to be not regular. But How a language can be
proved to be regular ? In particular,
Let L be a language. Define half(L) to be
{ x | for some y such that ...
3
votes
2answers
571 views
Theory of Computation - Showing that a language is regular
I'm reviewing some notes for my course on Theory of Computation and I'm a little bit stuck on showing the following statement and I was hoping somebody could help me out with an explanation :)
Let A ...
2
votes
5answers
100 views
How should one proceed to prove (or find) if two regular expressions are same or equivalent?
For example, in an assignment given to me, we were asked to find out if two regular expressions are equal or not.
(a+b+c)* and ((ab)**c*)*
My question is how is one supposed to do that? If I draw ...
2
votes
3answers
90 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
2answers
131 views
Proving that a language is regular by giving a regular expression
I am stumped by this practice problem (not for marks):
{w is an element of {a,b}* : the number of a's is even and the number of b's is even }
I can't seem to figure this one out.
In this case 0 is ...
2
votes
1answer
204 views
How do you classify languages into regular, context free, and phrase-structure?
If you're given a language, how do you figure out if it's regular, CF but not regular, or phrase-structure but not CF? Is there a good way to attack this problem? I could randomly try to make FAs or ...
1
vote
1answer
103 views
Regular expression. Regular or Irregular?
I just want to get a second opionion on these expression and whether they are irregular or regular.
{0^n 1^m | n >= m >=0} REGULAR
{0^n 1^m | n,m >=0}* REGULAR
{0^n 0^n | n>=0} ...
1
vote
2answers
48 views
Describing RE's in English Language
I have the following question from a past exam paper:
I am struggling to formalise their definitions within the necessary 15 word limit. So far I have:
i) The empty string or set of strings that ...
1
vote
1answer
377 views
Using Closure Properties to prove Regularity
Here's a homework problem:
Is L_4 Regular?
Let L_4 = L*, where L={0^i1^i | i>=1}.
I know L is non-regular and I know that Kleene Star is a closed operation, so my assumption is that L_4 is ...
1
vote
2answers
259 views
Design a language L such that neither L nor its complement has an infinite regular subset?
I'm having a class on automata theory, and right now we are learning the pumping lemma. There is an exercise question asking us to "Design a language L such that neither L nor its complement has an ...
1
vote
1answer
263 views
Quick/Simple Regex/Regular Language Clarification
I feel like a moron posting such simple questions on here, but the knowledge base of this site is just amazing. Thanks for your understanding.
Concerning a question about finding the minimum pumping ...
1
vote
1answer
195 views
FA for regular expression
Give an FA for the set of the strings with alphabet {a,b} that contain both or neither aa and bb as substrings.
It means FA accept all strings without aa and bb as substrings. correct me if I wrong ...
1
vote
1answer
146 views
Scheme, When to use Symbols instead of Strings?
I apologize in advance for my primitive english; i will try my best to avoid grammatical errors and such.
Two weeks ago i decided to freshen my knowledge of Scheme (and its enlightnings) whilst ...
1
vote
2answers
312 views
deriving regular expressions from a regular language
Given the language below, how do i find a regular expression for the language
L = {a ^n b ^m | n => 1, m =>1, nm =>3}
0
votes
2answers
28 views
Is Regular language always infinite
I'm kind of confused by the concept of regular language.
Since all regular language can be accepted by a dfa and dfa always has loops in it. So it seems like the dfa can accpet infinite number of ...
0
votes
1answer
68 views
identify regular language
I'm quite lost in identifying regular language.
I know that if R is a regular language then if A = RR, since is a concatenation of R therefore A is a regular language
But is B = {ww| w <- R} ...
0
votes
1answer
132 views
How would I convert regular expression to finite automata?
How would I change the following regular expression to finite automata?
(abUb)(bUaaa)b*b((a*b)*Ub)*
note: U means union in this case
0
votes
2answers
279 views
Is the given language: (regular|context-free|etc)
Assume E = {a, b}. Let L0 = {(b^(n))(a^(2n)) : n >= 0}. Let L = ((NOT OPERATION)L0)
Is L regular, context-free but not regular, or not context-free? Prove your answer.
I'm looking for what L ...