Introduction

The aim of the application is to provide a tool for simulating automata: finite state automata, FA, and push down automata, PDA.
Automata play an essential role in computer science. An automaton acts as a language recognizer: it receives an input string and it delivers an indication whether the input is considered acceptable.

The program AUTOMATA also provides grammar simulation. Grammars are formalisms used to specify languages. A grammar can be viewed as a language generator, because it establishes the rules that we can use to form correct sentences in the language.


Back to Index