Regular Languages.html


* created: 2026-05-01T23:40
* modified: 2026-05-05T00:31

title

Title

description

Description

related notes

Regular Languages

A Formal Languages that can be recognized by a finite automaton.

Regular Expressions

A word R is a regular expression of an alphabet \Sigma if it's part of the following and \{\epsilon, \emptyset, | , \cdot, *, (, ) \} \cup \Sigma = \emptyset:

  1. a (a\in\Sigma)
  2. \epsilon
  3. \emptyset
  4. (R_1 | R_2)
  5. R_1 \cdot R_2
  6. R_1^*
  7. (R_1)