Week 4 Lecture 2 - Finite State Transducers: Moore and Mealy Machines

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

What is the difference between a finite state transducer (FST) and a deterministic state automaton (DFA)?

When processing an input string, a FST produces an output string rather than a yes/no decision at the end of processing.

It can therefore be thought of as a machine to translate from input strings (from input alphabet) to output strings (from output alphabet).

2
New cards

For an FST M, FM denotes the function represented by M:

FM: Σ* → Γ*, where Σ is the input alphabet and Γ is the output alphabet.

3
New cards

Why is an FST (finite state transducer) deterministic?

The output is uniquely determined by the input.

4
New cards

What is a moore machine?

Where are the symbols?

How many symbols does it have?

What is the accepting state?

A type of FST.

They have states emitting output symbols.

One extra symbol is emitted, one symbol more is outputted than there is in the input string

No accepting state, outputs are more inportant than whether a string is accepted.

5
New cards
<p>Is this a Moore machine or a Mealy machine, why, and what does it flag?</p>

Is this a Moore machine or a Mealy machine, why, and what does it flag?

It is a moore machine because the states have symbols.

It flags a 1 everytime there is an occurance ‘aab’ in a string of ‘a’s and ‘b’s.

6
New cards

Formal definition of a Moore machine (the 6 components).

M = ⟨Q, Σ, Γ, δ, θ, q0

→ Q, a finite set of states.
→ Σ, the input alphabet.
→ Γ, the output alphabet.
→ δ : Q × Σ → Q, a transition function.
→ θ : Q → Γ, an output function.
→ q0, an initial state (q0 ∈ Q)

7
New cards

Suppose a moore machine is in state qi and has input a. If δ(qi , a) = qj and θ(qj ) = b, what happens?

The idea is that M will move to state qj and produce output b.

8
New cards

What is a Mealy machine?

Where are the symbols?

Another type of FST.

The transitions emit output symbols.

9
New cards
<p>Is this a Moore or Mealy machine, why, and if there is an input of 0110, what would the output be?</p>

Is this a Moore or Mealy machine, why, and if there is an input of 0110, what would the output be?

This is a mealy machine because the transitions emit output symbols.

If there is an input of 0110, the output would be 1001.

10
New cards
<p>Is this a Moore or Mealy machine, and what does it do?</p>

Is this a Moore or Mealy machine, and what does it do?

It is a Mealy machine.

Given k-bit binary numbers n, output k-bit binary numbers corresponding to n+1 (increment). The overflow is ignored.

11
New cards

Formal definition of a Mealy machine (the 6 components).

M = ⟨Q, Σ, Γ, δ, θ, q0

→ Q, a finite set of states.
→ Σ, the input alphabet.
→ Γ, the output alphabet.
→ δ : Q × Σ → Q, a transition function.
→ θ : Q x Σ → Γ, an output function.
→ q0, an initial state (q0 ∈ Q)

12
New cards

Suppose a mealy machine is in state qi and has input a. If δ(qi , a) = qj and θ(qj, a) = b, what happens?

The idea is that M will move to state qj and produce output b.

13
New cards

How to show equivalence of Mealy and Moore machines?

Let Me be a mealy machine and Mo be a moore machine.

Ignore the very first output from the start state because there are no accepting strings.

Equivalent if, for every input string, the output string from Mo is exactly x (the output from the start state) prepended to the output string from Me

14
New cards
<p>What would be the equivalent Mealy Machine to this Moore Machine?</p>

What would be the equivalent Mealy Machine to this Moore Machine?

knowt flashcard image
15
New cards
<p>What would be the equivalent Mealy machine to this Moore machine?</p>

What would be the equivalent Mealy machine to this Moore machine?

knowt flashcard image
16
New cards
<p>What would be the Moore machine to this Mealy machine?</p>

What would be the Moore machine to this Mealy machine?

Can not simply reverse the moore to mealy process because the outputs on the incoming transitions may be different. Need to split the state into 2 or more states based on the outputs on the incoming transitions.

<p>Can not simply reverse the moore to mealy process because the outputs on the incoming transitions may be different. Need to split the state into 2 or more states based on the outputs on the incoming transitions.</p>
17
New cards
<p>What would be the Moore machine to this Mealy machine?</p>

What would be the Moore machine to this Mealy machine?

knowt flashcard image
18
New cards
<p>Given this sequential circuit, and the summary of its behaviour, what would be the Mealy machine?</p>

Given this sequential circuit, and the summary of its behaviour, what would be the Mealy machine?

knowt flashcard image