Lax194892.PebbleContinuity
Pebble transducers are continuous
concepts/Lax194892/PebbleContinuity.lean · lax-194892
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
In the paper
- page 165 of the paper of lax-157538, Transducers
Theorem
Pebble transducers compute continuous functions (Theorem D.2.1 of Transducers). The languages recognised by pebble automata — pebble transducers with a yes/no answer — are regular, by induction on the number of pebbles; running an automaton for the target language on the output turns the transducer into a pebble automaton.
Lean source view on GitHub
| 1 | import Lax765601.Continuity |
| 2 | import Lax194892.PebbleTransducers |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Pebble transducers are continuous |
| 7 | type: theorem |
| 8 | --- |
| 9 | Pebble transducers compute continuous functions (Theorem D.2.1 of |
| 10 | *Transducers*). The languages recognised by pebble automata — pebble |
| 11 | transducers with a yes/no answer — are regular, by induction on the number of |
| 12 | pebbles; running an automaton for the target language on the output turns the |
| 13 | transducer into a pebble automaton. |
| 14 | |
| 15 | # Formalization notes |
| 16 | |
| 17 | Both alphabets are assumed finite, as in the book. |
| 18 | -/ |
| 19 | |
| 20 | namespace Lax194892.PebbleContinuity |
| 21 | |
| 22 | open Lax765601.Continuity Lax194892.PebbleTransducers |
| 23 | |
| 24 | /-- A function computed by a pebble transducer is continuous. -/ |
| 25 | axiom continuous_of_isPebbleTransducer {A B : Type} [Finite A] [Finite B] {f : List A → List B} |
| 26 | (hf : IsPebbleTransducer f) : Continuous f |
| 27 | |
| 28 | end Lax194892.PebbleContinuity |
| 29 |
Formalization notes
Both alphabets are assumed finite, as in the book.
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments