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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There are five top-level concatenated components of this regex. According to the algorithm recoverable from a part of Kleene's theorem, you can make NFA-Lambdas for these, then form the concatenation by connecting final states of one to initial states of the next.

When you see a union, that means you make two machines and combine them by making a new start state with two lambda transitions.

Kleene closure is a little more involved, but basically make the machine for the thing being repeated, then transform it by adding a new accepting start state and a loop to it from the old final states.

The base case is the machine for a single letter, which is two states, initial and final, with the appropriately labelled transition.

Work recursively from the simplest machines (innermost subexpressions) up to the whole thing, combining as necessary. Simplify the result as much as you like, possibly converting to a minimal DFA.

link|improve this answer
ok so far im good with everything up to: ((a*b)*Ub)*. Once I get there I dont know what to do – tehman Oct 3 '11 at 14:59
The outermost operation is *. So first, built a machine for (a*b)* U b. The outermost operation here is U, so build two machines: one for (a*b)* and one for b. The machine for b is trivial. For the other, the outermost operation is *, so build a machine for a*b. The outermost operation is concatenation, so build machines for a* and b. The machine for b is trivial. The outermost operation for the other is *, so build a machine for a; this is trivial. Now, go back up the recursion stack and apply the appropriate rules to form Kleene closures, concatenations and unions. – Patrick87 Oct 3 '11 at 15:06
when you say its trivial, do you mean we stop building on to it? – tehman Oct 3 '11 at 15:19
@tehman: have you read the proof of Kleene's theorem? It gives an algorithm for converting finite automata into regular expressions and conversely. If you read it, you will discover what Patrick87 means by "trivial." – danportin Oct 4 '11 at 12:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.