0% found this document useful (0 votes)
31 views

Lecture 4

This document discusses minimizing deterministic finite automata (DFAs). It begins by presenting examples of DFAs and determining whether they are minimal or not. It then proves that for every regular language, there exists a unique minimal DFA recognizing that language. The document introduces an algorithm for minimizing a DFA by partitioning its states into equivalence classes based on distinguishability. It provides details on applying a table-filling algorithm to determine which states are distinguishable and cannot be merged. Finally, it proves that the minimized DFA produced by this algorithm is unique and that there is a one-to-one correspondence between its states and those of any other minimized DFA recognizing the same language.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

Lecture 4

This document discusses minimizing deterministic finite automata (DFAs). It begins by presenting examples of DFAs and determining whether they are minimal or not. It then proves that for every regular language, there exists a unique minimal DFA recognizing that language. The document introduces an algorithm for minimizing a DFA by partitioning its states into equivalence classes based on distinguishability. It provides details on applying a table-filling algorithm to determine which states are distinguishable and cannot be merged. Finally, it proves that the minimized DFA produced by this algorithm is unique and that there is a one-to-one correspondence between its states and those of any other minimized DFA recognizing the same language.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPT, PDF, TXT or read online on Scribd
You are on page 1/ 37

15-453

FORMAL LANGUAGES,
AUTOMATA AND
COMPUTABILITY
For next time: Read 2.1 & 2.2
1
MINIMIZING DFAs

2
IS THIS MINIMAL?
NO
0

1
1 1 0
1 0

3
IS THIS MINIMAL?

0
1

4
THEOREM
For every regular language L, there exists
a unique (up to re-labeling of the states)
minimal DFA M such that L = L(M)

5
NOT TRUE FOR NFAs
0

0
6
EXTENDING 
Given DFA M = (Q, Σ, , q0, F) extend 
to ^ : Q  Σ* → Q as follows:
^ ε) = q
(q,
^ ) = (q, )
(q,
^ w …w ) = ( (q,
(q, ^ w …w ), w )
1 k+1 1 k k+1

A string w  Σ* distinguishes states q1 from q2 if


^ , w)  F  (q
(q ^ , w)  F
1 2

7
q1 1
0
0,1
1
q0 q2

0 0

1
q3

ε distinguishes accept from non-accept states


8
Fix M = (Q, Σ, , q0, F) and let p, q, r  Q
Definition:
p is distinguishable from q iff there is a w  Σ*
that distinguishes p from q

p is indistinguishable from q iff p is not


distinguishable from q

9
Fix M = (Q, Σ, , q0, F) and let p, q, r  Q
Define relation “~”:
p ~ q iff p is indistinguishable from q
p ~/ q iff p is distinguishable from q
Proposition: “~” is an equivalence relation
p ~ p (reflexive)
p ~ q  q ~ p (symmetric)
p ~ q and q ~ r  p ~ r (transitive)
p q r
Suppose not:
10 w w
Fix M = (Q, Σ, , q0, F) and let p, q, r  Q
Proposition: “~” is an equivalence relation
so “~” partitions the set of states of M into
disjoint equivalence classes
[q] = { p | p ~ q }
Q
q
q0

11
0

1
1 1 0
1 0

12
Algorithm MINIMIZE
Input: DFA M
Output: DFA MMIN such that:
M  MMIN
MMIN has no inaccessible states
MMIN is irreducible
||
states of MMIN are pairwise distinguishable

Theorem: MMIN is the unique minimum

13
TABLE-FILLING ALGORITHM
Input: DFA M = (Q, Σ, , q0, F)
Output: (1) DM = { (p,q) | p,q  Q and p ~/ q }
(2) EM = { [q] | q  Q }

IDEA!

•Make best effort to find pairs of states


that are distinguishable.
•Pairs left over will be indistinguishable.

17
TABLE-FILLING ALGORITHM
Input: DFA M = (Q, Σ, , q0, F)
Output: (1) DM = { (p,q) | p,q  Q and p ~/ q }
(2) EM = { [q] | q  Q }
q0
q1 Base Case: p accepts
and q rejects  p ~/ q

qi

qn
q0 q1 qi qn
18
TABLE-FILLING ALGORITHM
Input: DFA M = (Q, Σ, , q0, F)
Output: (1) DM = { (p,q) | p,q  Q and p ~/ q }
(2) EM = { [q] | q  Q }
q0
q1 Base Case: p accepts
and q rejects  p ~/ q

qi d d d
Recursion:
d 
p p
~
/  p ~/ q
qn d 
q q
q0 q1 qi qn
19
q0

q1 d

q2 d d
q3 d d d
q0 q1 q2 q3
0,1
1 0

0 0 1
q0 q1 q2 q3
1
20
0
q0 q1

1
1 1 0
1 0
q0
q3 q2
q1 d 0

q2 d

q3 d d
q0 q1 q2 q3
21
If 2 states are not distinguished by table-
filling algorithm, then they are equivalent
Proof (by contradiction):
Suppose there exist states p and q that aren’t
distinguished by the T-F algorithm, but p ~/ q
Then there exists w such that:
^ w)  F and (q,
(p, ^ w)  F (Why is |w| >0 ?)

Of all such bad pairs, let (p, q) be a pair with


the smallest |w| So, w = w, where   Σ
Let p = (p,) and q = (q,)
Then (p, q) is also a bad pair
22
Algorithm MINIMIZE
Input: DFA M
Output: DFA MMIN
(1) Remove all inaccessible states from M
(2) Apply Table-Filling algorithm to get
EM = { [q] | q is an accessible state of M }
MMIN = (QMIN, Σ, MIN, q0 MIN, FMIN)

QMIN = EM, q0 MIN = [q0], FMIN = { [q] | q  F }

MIN( [q], ) = [ ( q, ) ]


Must show MIN is well defined!
23
Algorithm MINIMIZE
Input: DFA M
Output: DFA MMIN
(1) Remove all inaccessible states from M
(2) Apply Table-Filling algorithm to get
EM = { [q] | q is an accessible state of M }
MMIN = (QMIN, Σ, MIN, q0 MIN, FMIN)

QMIN = EM, q0 MIN = [q0], FMIN = { [q] | q  F }

MIN( [q], ) = [ ( q, ) ]


Claim: MMIN  M
24
MINIMIZE
0
q0 q1 0

1
0 1 0
1

q2
0

1
1
25
1 0 0,1
0
q0 q1 q4
1 1

0 0 q5
q0 0,1

q1 1
d q2 q3
q3 d d
q4 d d
q5 d d d d
26
q0 q1 q3 q4 q5
1 0 0,1
0
q0 q1 q4
1 1

0 0 q5
q0

q1 d q3
q3 d d
q4 d d
q5 d d d d
27
q0 q1 q3 q4 q5
*MMIN is the unique minimal DFA equivalent to M
Suppose MMMIN, and M has no inaccessible
states and is irreducible
Claim: There exists a 1-1 onto correspondence
(preserving transitions) between M and MMIN

29
*MMIN is the unique minimal DFA equivalent to M
Suppose MMMIN, and M has no inaccessible
states and is irreducible
Claim: There exists a 1-1 onto correspondence
(preserving transitions) between M and MMIN

NB: If M is minimal, then M has no inaccessible states and is


irreducible. (So claim implies * )
This Claim is also implying the converse, ie if M has no
inaccessible states and is irreducible, then M is minimal.
Proof. Let Mmin ( M  MMIN) be minimal. Then Mmin  MMIN
So, by Claim, both Mmin and M are isomorphic to MMIN

30 NOT TRUE for NFAs !


*MMIN is the unique minimal DFA equivalent to M
Suppose MMMIN, and M has no inaccessible
states and is irreducible
Claim: There exists a 1-1 onto correspondence
(preserving transitions) between M and MMIN
Proof: We will construct a map recursively
Base Case: q0 MIN → q0
Recursive Step: If p → p
  Then q → q
q q

31
Base Case: q0 MIN → q0
Recursive Step: If p → p
  Then q → q
q q
We need to prove:
The map is defined everywhere
The map is well defined
The map is a bijection

32
Base Case: q0 MIN → q0
Recursive Step: If p → p
  Then q → q
q q
The map is defined everywhere
That is, for all q  MMIN there is a
q  M such that q → q
If q  MMIN, there is w such that
^MIN(q0 MIN,w) = q
^
Let q = (q0,w)

33
Base Case: q0 MIN → q0
Recursive Step: If p → p
  Then q → q
q q
The map is well defined
Suppose there exist q and q such that
q → q and q → q
We show that q and q are indistinguishable,
so it must be that q = q

34
Suppose there exist q and q such that
q → q and q → q

Suppose q and q are not indistinguishable

MMIN M
Accept

Accept
u w u w
q0 MIN q q0 q

v w v w

Reject
Reject

q0 MIN q q0 q


35
Base Case: q0 MIN → q0
Recursive Step: If p → p
  Then q → q
q q
The map is onto
For all q  M there is a q  MMIN
such that q → q
If q  M, there is w such that
^
(q0,w) = q

Let q = ^MIN(q0 MIN,w)

36
The map is 1-1
Suppose there exist p and q such that
p → q and q → q
Suppose p and q are not indistinguishable

MMIN M
Accept

Accept
u w u w
q0 MIN p q0 q

v w v w

Reject
Reject

q0 MIN q q0 q
37
How do we prove two regular
expressions are equivalent?

38
39
40
Finish Reviewing Chapter 1 of the book
and
Read 2.1 & 2.2 for next time

41

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy