Lax916827.SSTIffRegular
Streaming string transducers compute exactly the regular functions
concepts/Lax916827/SSTIffRegular.lean · lax-916827
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
In the paper
- page 110 of the paper of lax-157538, Transducers
Theorem
A string-to-string function is computed by a streaming string transducer if and only if it is regular (Theorem C.3.2 of Transducers). The two implications are the separate statements and ; this statement is their conjunction.
Lean source view on GitHub
| 1 | import Lax916827.RegularFunctions |
| 2 | import Lax916827.StreamingStringTransducers |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Streaming string transducers compute exactly the regular functions |
| 7 | type: theorem |
| 8 | --- |
| 9 | A string-to-string function is computed by a streaming string transducer if and |
| 10 | only if it is regular (Theorem C.3.2 of *Transducers*). The two implications |
| 11 | are the separate statements `SSTOfRegular` and `RegularOfSST`; this statement |
| 12 | is their conjunction. |
| 13 | |
| 14 | # Formalization notes |
| 15 | |
| 16 | Both alphabets are assumed finite. |
| 17 | -/ |
| 18 | |
| 19 | namespace Lax916827.SSTIffRegular |
| 20 | |
| 21 | open Lax916827.RegularFunctions Lax916827.StreamingStringTransducers |
| 22 | |
| 23 | /-- A function is computed by a streaming string transducer if and only if it is |
| 24 | regular. -/ |
| 25 | axiom isSST_iff_isRegularFun {A B : Type} [Finite A] [Finite B] (f : List A → List B) : |
| 26 | IsSST f ↔ IsRegularFun f |
| 27 | |
| 28 | end Lax916827.SSTIffRegular |
| 29 |
Formalization notes
Both alphabets are assumed finite.
Used by
none
From Mathlib
none
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