Introduction to Computability Theory

43
1 Introduction to Computability Theory Lecture4: Regular Expressions Prof. Amos Israeli

description

Introduction to Computability Theory. Lecture4: Regular Expressions Prof. Amos Israeli. Introduction. R egular languages are defined and described by use of finite automata . - PowerPoint PPT Presentation

Transcript of Introduction to Computability Theory

Page 1: Introduction to Computability Theory

1

Introduction to Computability Theory

Lecture4: Regular ExpressionsProf. Amos Israeli

Page 2: Introduction to Computability Theory

Regular languages are defined and described by use of finite automata.

In this lecture, we introduce Regular Expressions as an equivalent way, yet more elegant, to describe regular languages.

Introduction

2

Page 3: Introduction to Computability Theory

If one wants to describe a regular language, La, she can use the a DFA, D or an NFA N, such that that .

This is not always very convenient.

Consider for example the regular expression describing the language of binary strings containing a single 1.

Motivation

3

LaDL

**100

Page 4: Introduction to Computability Theory

Basic Regular Expressions

A Regular Expression (RE in short) is a string of symbols that describes a regular Language.

• Let be an alphabet. For each , the symbol is an RE representing the set .

• The symbol is an RE representing the set . (The set containing the empty string).

• The symbol is an RE representing the empty set.

4

Page 5: Introduction to Computability Theory

Inductive Construction

Let and be two regular expressions representing languages and , resp.

• The string is a regular expression representing the set .

• The string is a regular expression representing the set .

• The string is a regular expression representing the set .

1R 2R1L 2L

21 RR 21 LL

21RR21 LL

*1R*

1L

5

Page 6: Introduction to Computability Theory

Inductive Construction - Remarks

1. Note that in the inductive part of the definition larger RE-s are defined by smaller ones. This ensures that the definition is not circular.

6

Page 7: Introduction to Computability Theory

Inductive Construction - Remarks

2. This inductive definition also dictates the way we will prove theorems: For any theorem T.

Stage 1: Prove T correct for all base cases. Stage 2: Assume T is correct for and .

Prove correctness for , , and .

1R 21 RR 21RR

*1R

7

2R

Page 8: Introduction to Computability Theory

Some Useful Notation

Let be a regular expression:• The string represents , and it also

holds that .• The string represents .

• The string represents . • The Language represented by R is denoted by

.

R

RL

8

R *RR *RR

kR times

...k

RRR

k ...,, 11

Page 9: Introduction to Computability Theory

Precedence Rules

• The star (*) operation has the highest precedence.

• The concatenation ( ) operation is second on the preference order.

• The union ( ) operation is the least preferred.

• Parentheses can be omitted using these rules.

9

Page 10: Introduction to Computability Theory

Examples

• – .• – .• – .

• – .

• – .

**100**1

** str

** 011

1 singlea contains | ww 1 singlea least at has | ww substringa as contains | strww

1 singlea least at by followed is in 0every | ww

* length even of is | ww

10

Page 11: Introduction to Computability Theory

Examples

• - all words starting and ending with the same letter.

• - all strings of forms 1,1,…,1 and 0,1,1,…1 .

• - A set concatenated with the empty set yields the empty set .

• - .

101100 **

*10

R*

11

*

** 101

Page 12: Introduction to Computability Theory

Regular expressions and finite automata are equivalent in their descriptive power. This fact is expressed in the following Theorem:

TheoremA set is regular if and only if it can be described by a regular expression.

The proof is by two Lemmata (Lemmas):

Equivalence With Finite Automata

12

,

Page 13: Introduction to Computability Theory

If a language L can be described by regular expression then L is regular.

Lemma ->

13

,

,

Page 14: Introduction to Computability Theory

Proofs Using Inductive Definition

The proof follows the inductive definition of RE-s as follows:

Stage 1: Prove correctness for all base cases.Stage 2: Assume correctness for and , and

show its correctness for , and .

1R 2R 21 RR 21RR

*1R

14

Page 15: Introduction to Computability Theory

Induction Basis

1. For any , the expression describes the set , recognized by:

2. The set represented bythe expression is recognized by:

3. The set represented bythe expression is recognized by:

15

4q0q

4q

4q

Page 16: Introduction to Computability Theory

Now, we assume that and represent two regular sets and claim that , and represent the corresponding regular sets.

The proof for this claim is straight forward using the constructions given in the proof for the closure of the three regular operations.

The Induction Step

16

1R 2R

21 RR 21 RR *

1R

Page 17: Introduction to Computability Theory

Show that the following regular expressions represent regular languages:

1. .

2. .

To be demonstrated on the Blackboard.

Examples

17

*aab

ababa *

Page 18: Introduction to Computability Theory

If a language L is regular then L can be described by some regular expression.

Lemma <-

18

Page 19: Introduction to Computability Theory

The proof follows the following stages:1. Define Generalized Nondeterministic Finite

Automaton (GNFA in short).2. Show how to convert any DFA to an

equivalent GNFA.3. Show an algorithm to convert any GNFA to an

equivalent GNFA with 2 states.4. Convert a 2-state GNFA to an equivalent RE.

Proof Stages

19

,

Page 20: Introduction to Computability Theory

1. A GNFA is a finite automaton in which each transition is labeled with a regular expression over the alphabet .

2. A single initial state with all possible outgoing transitions and no incoming trans.

3. A single final state without outgoing trans.4. A single transition between every two states,

including self loops.

Properties of a Generalized NFA

20

,

Page 21: Introduction to Computability Theory

Example of a Generalized NFA

21

startq

acceptq

*ab

baab

b

aa

ab

*a

*aa

*b

Page 22: Introduction to Computability Theory

A computation of a GNFA is similar to a computation of an NFA. except:In each step, a GNFA consumes a block of symbols that matches the RE on the transition used by the NFA.

A Computation of a GNFA

22

Page 23: Introduction to Computability Theory

Consider abba or bb or abbbaaaaabbbbb

Example of a GNFA Computation

23

startq

acceptq

*ab

baab

b

aa

ab

*a

*aa

*b

Page 24: Introduction to Computability Theory

Conversion is done by a very simple process:1. Add a new start state with an - transition

from the new start state to the old start state.

2. Add a new accepting state with - transition from every old accepting state to the new accepting state.

Converting a DFA (or NFA) to a GNFA

24

Page 25: Introduction to Computability Theory

4. Replace any transition with multiple labels by a single transition labeled with the union of all labels.

5. Add any missing transition, including self transitions; label the added transition by .

Converting a DFA to a GNFA (Cont)

25

Page 26: Introduction to Computability Theory

Stage 1: Convert D to a GNFA

1.0 Start with D

26

0

aq

bq

1

cq

1

0

1,0

Page 27: Introduction to Computability Theory

Stage 1: Convert D to a GNFA

1.1 Add 2 new states

27

0

aq

bq

1

cq

1

0

1,0

acceptqstartq

Page 28: Introduction to Computability Theory

Stage 1: Convert D to a GNFA

1.2 Make the initial state and the finalstate.

28

0

aq

bq

1

cq

1

0

1,0

acceptqstartq

startq acceptq

Page 29: Introduction to Computability Theory

Stage 1: Convert D to a GNFA

1.3 Replace multi label transitions by their union.

29

0

aq

bq

1

cq

1

0

10

acceptqstartq

Page 30: Introduction to Computability Theory

Stage 1: Convert D to a GNFA

1.4 Add all missing transitions and label them .

30

0

aq

bq

1

cq

1

0

startq

acceptq

10

Page 31: Introduction to Computability Theory

The final element needed for the proof is a procedure in which for any GFN G, any state of G, not including and , can be ripped off G, while preserving .This is demonstrated in the next slide by considering a general state, denoted by , and an arbitrary pair of states, and , as demonstrated in the next slide:

Ripping a state from a GNFA

31

GLstartq acceptq

ripqiq jq

Page 32: Introduction to Computability Theory

Removing a state from a GNFA

32

1R

iqjq

ripq

4R

3R

2R

43*

21 RRRR iq jq

Before Ripping After Ripping

Note: This should be done for every pair of outgoing and incoming outgoing .ripq

Page 33: Introduction to Computability Theory

Consider the RE ,representing all strings that enable transition from via to .

What we want to do is to augment the Regular expression of transition , namely , so These strings can pass through . This is done by setting it to .

Ellaboration

33

1R

iqjq

ripq

4R

3R

2Rripq

43*

214 RRRR

4R ji qq ,

iqjq

3*

21 RRR

ji qq ,

Page 34: Introduction to Computability Theory

Note: In order to achieve an equivalent GNFA in which is disconnected,this procedure should becarried out separately, for everypair of transitions of the form and . Then can be removed, as demonstrated on the next slide:

Ellaboration

34

1R

iqjq

ripq

4R

3R

2R

ripq

ripi qq , jrip qq , ripq

Page 35: Introduction to Computability Theory

Elaboration

Assume the following situation:In order to rip , all pairsof incoming and outgoingtransitions should be considered in the way showed on the previous slide namely consider one after the other. After that can be ripped while preserving .

35

1t 2t 3t

5t4t 53

4352425141

,,,,,,,,,,,

tttttttttttt

ripq

ripq

ripq GL

Page 36: Introduction to Computability Theory

In Particular

Replace with .

36

1R 3R

2R

4R

aq

ripq

4R 3*

214 RRRR

Page 37: Introduction to Computability Theory

A (half?) Formal Proof of Lemma<-

The first step is to formally define a GNFA.Each transition should be labeled with an RE.Define the transition function as follows:

where denotes all regular expressions over .

Note: The def. of is different then for NFA.

37

REqQqQ startaccept:

RE

Page 38: Introduction to Computability Theory

Changes in Definition

Note: The definition of as:

is different than the original definitions (For DFA and NFA).

In this definition we rely on the fact that every 2 states (except and ) are connected in both directions.

38

REqQqQ startaccept:

startq

acceptq

Page 39: Introduction to Computability Theory

A Generalized Finite Automaton is a 5-tupple where:

1. is a finite set called the states.2. is a finite set called the alphabet.3. * is the transition

function.4. is the start state, and5. is the accept state.

REqQqQ startaccept:

GNFA – A Formal Definition

39

acceptstart qqQ ,,,, Q

Qqstart

Qqaccept

Page 40: Introduction to Computability Theory

A GNFA accepts a string if and there exists a sequence of states , satisfying:

For each , , , where , or in other words, is the expression on the arrow from to .

GNFA – Defining a Computation

40

*w kwwww 21

acceptstart qqqq 21

i ki 1 ii RLw iii qqR ,1 iR

iq 1iq

Page 41: Introduction to Computability Theory

Procedure CONVERT takes as input a GNFA G with k states.

If then these 2 states must be and , and the algorithm returns

.If , the algorithm converts G to an

equivalent G’ with states by use of the ripping procedure described before.

Procedure CONVERT

41

acceptstart qq ,

2k startqacceptq

2k1k

Page 42: Introduction to Computability Theory

Convert 1. ;2. If return ;3. ;4. ;5. For any and any

for return ;

Procedure CONVERT

42

2kstartq Grip QtateGetRandomSq

G|| GQk

acceptstart qq ,

ripG qQQ 'accepti qQq ' starti qQq '

43*

21,' RRRRqq ji ripi qqR ,1 irip qrR ,3 riprip qqR ,2 ji qqR ,4

acceptstart qqQG ,,',,''

Page 43: Introduction to Computability Theory

In this lecture we:1. Motivated and defined regular expressions as

a more concise and elegant method to represent regular Languages.

2. Proved that FA-s (Deterministic as well as Nondeterministic) and RE-s is identical by:2.1 Defined GNFA – s.2.2 Showed how to convert a DFA to a GNFA.2.3 Showed an algorithm to converted a GNFA with states to an equivalent GNFA with states.

Recap

43

K1K