Processing math: 100%
+ - 0:00:00
Notes for current slide
Notes for next slide

CS-3110: Formal Languages and Automata

Deterministic Finite Automata

1 / 21

Example 1: DFA interpretion

2 / 21

Example 1

Given the DFA M on the next slide, determine:

Then give an English description of the language the automaton accepts.

3 / 21

Example 1

4 / 21

Example 1

  • What does this automaton "do"?

  • Maybe we can find some sort of interpretation for the states?

  • How can we get to an accepting state?

5 / 21

Example 1

  • We start in state q00

  • We can add consecutive pairs of 0s and 1s to get back there

  • When we add the first 0, we get to state q10

  • The only way to get back to our accepting state is by adding (at least) one more 0

6 / 21

Example 1

  • What are the other options to get to q10?

  • We can add a 1, then a 0, and then another 1

  • We can add a 1, then add three 0s, and then another 1

  • Suspicion: We always add an odd number of 0s

7 / 21

Example 1

  • What are the other options to get to q10?

  • We can add a 1, then a 0, and then another 1

  • We can add a 1, then add three 0s, and then another 1

  • Suspicion: We always add an odd number of 0s

  • ... and an even number of 1s

8 / 21

Example 1

  • Let's extend our suspicions to the other states

  • Each state is reachable after an even/odd number of 0s/1s has been added

  • There is one state for each combination

  • Our accepting state corresponds to words with an even number of 0s and an even number of 1s

9 / 21

Example 1

This automaton recognizes the language over Σ={0,1} consisting of words with an even number of 0s and an even number of 1s

10 / 21

Example 2: DFA

11 / 21

Example 2

Construct a Deterministic Finite Automaton that accepts words over the alphabet Σ={0,1} that represent binary numbers (without leading zeros) that are divisible by 3

12 / 21

The Horror

Remember from 2 weeks ago?

L4={0}1(010)10(1(010)10)

As promised then, this is much nicer with an automaton!

13 / 21

Basic Idea

  • How did we come up with this monstrosity?

  • We considered how adding digits to a number would change its divisibility

  • We did this by keeping track of the remainder, and how it changes when we add a digit

  • We can do this "keeping track" using states in a DFA, and only accept when the remainder (=state) is 0!

14 / 21

Remainder vs. adding digits

Add a01
Remainder
001
120
212

This is basically our transition function!

We just need to add some extra pieces to handle the number "0"

15 / 21

Automaton

Our automaton will consist of two parts

  • One part will handle the number "0": If we read a 0, we go to an accepting state, but if we read anything after that, we go to a "bad" state

  • The second part will handle numbers starting with 1: For each digit we add, we keep track what the remainder for a division by 3 would be. We only accept if we are in the state representing "remainder 0"

  • From the start state, if we read a 0 we go to the first part, and if we read a 1 we go to the second part

16 / 21

Automaton: Recognizing 0

Only accept if you read a single 0. Any 1 or any additional 0 will lead to the state q2, which is not an accepting state.

17 / 21

Automaton: Divisibility

Add a01
Remainder
001
120
212
18 / 21

Full Automaton

  • Now we need to connect these two automata

  • Note: Our second automaton would allow leading 0s.

  • Here's what we do: Use the start state from the first automaton, if we read a 0, we stay there, but if we read a 1, we move to the second automaton (and set our "current remainder" to 1)

  • We accept in either of the accepting states of the two automata

19 / 21

DFA

finite_state_machine only0 only0 bad bad only0->bad 0,1 s0 s0 s0->s0 0 s1 s1 s0->s1 1 pre pre secret_node->pre pre->only0 0 pre->s1 1 s1->s0 1 s2 s2 s1->s2 0 bad->bad 0,1 s2->s1 0 s2->s2 1

(0 decimal)

20 / 21

Mojo

21 / 21

Example 1: DFA interpretion

2 / 21
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow