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:
- a (a\in\Sigma)
- \epsilon
- \emptyset
- (R_1 | R_2)
- R_1 \cdot R_2
- R_1^*
- (R_1)