Computing - Regular Expressions
What regular expression is this?

\[ab\]
 What regular expression is this?
\[a|b\]
What regular expression is this?

\[a+\]
What regular expression is this?

\[a*\]
Visualise the finite state machine for $ab$?
Visualise the finite state machine for $a \vert b$?
 |
Visualise the finite state machine for $a+$?
Visualise the finite state machine for $a*$?
What is the precedence for regular expressions?
()
*
+
?
|