Concept

Definition

<aside> ℹ️ Finite State Machine (FSM): abstract model to describe real world systems

$$ FSM = ( S, I, O, \pi) $$

Mealy Machine

123s.png

Moore Machine

Untitled


Analysis

<aside> ℹ️ Core Idea: given state table → derive function (e.g., K-map)

</aside>

$$ S_{t+1}=f(I_t,\ S_t)\\ O_{t+1} = g(I_t, S_t) $$

Where $f$ and $g$ can be made using combinatorial logics.

Excitation Table

<aside> ℹ️ Excitation Table: what inputs are required to transit from one state to the next.

</aside>

Untitled

Example