Main Page | See live article | Alphabetical index

State transition system

In theoretical computer science, a state transition system is an abstract machine used in the study of computation. The machine consists of a set of states and transitions between states.

State transition systems differ from finite state automata in several ways:

State transition systems with a finite number of states and transitions can be represented as directed graphs.

There are at least two basic types of state transition systems: labelled (or LTS for labelled transition system) or unlabelled.

Table of contents
1 Formal definition
2 Relation between labelled and unlabelled transition systems.
3 See also

Formal definition

Formally, an unlabelled state transition system is a tuple (S, &rarr) where S is a set (of states) and &rarr &sube S × S is a binary relation over S (of transitions.) If p,q &isin S, (p,q) &isin &rarr is usually written as p &rarr q. This represents the fact that there is a transition from state p to state q.

A labelled transition system is a tuple (S, &Lambda, &rarr) where S is a set (of states), &Lambda is a set (of labels) and &rarr &sube S × &Lambda × S is a ternary relation (of labelled transitions.) If p, q &isin S and &alpha &isin &Lambda, (p,&alpha,q) &isin &rarr is written

This represents the fact that there is a transition from state p to state q with label &alpha. Labels can represent different things depending on the language of interest. Typical uses of labels include representing input expected, conditions that must be true to trigger the transition, or actions performed during the transition.

Relation between labelled and unlabelled transition systems.

There are many relations between these concepts. Some are simple, such as observing that a labelled transition system where the set of labels consists of only one element is equivalent to an unlabelled transition system. However not all these relations are equally trivial.

See also