Lax314295.MSOTransductionIffRegular
MSO transductions define exactly the regular functions
concepts/Lax314295/MSOTransductionIffRegular.lean · lax-314295
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 127 of the paper of lax-157538, Transducers
Theorem
String-to-string mso transductions define exactly the regular functions (Theorem C.4.8 of Transducers, Engelfriet and Hoogeboom). The two implications are the separate statements and ; this statement is their conjunction.
Lean source view on GitHub
| 1 | import Lax916827.RegularFunctions |
| 2 | import Lax314295.MSOTransductions |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: MSO transductions define exactly the regular functions |
| 7 | type: theorem |
| 8 | --- |
| 9 | String-to-string mso transductions define exactly the regular functions |
| 10 | (Theorem C.4.8 of *Transducers*, Engelfriet and Hoogeboom). The two |
| 11 | implications are the separate statements `RegularOfMSOTransduction` and |
| 12 | `MSOTransductionOfRegular`; this statement is their conjunction. |
| 13 | |
| 14 | # Formalization notes |
| 15 | |
| 16 | Both alphabets are assumed finite. |
| 17 | -/ |
| 18 | |
| 19 | namespace Lax314295.MSOTransductionIffRegular |
| 20 | |
| 21 | open Lax916827.RegularFunctions Lax314295.MSOTransductions |
| 22 | |
| 23 | /-- A function is defined by an mso transduction if and only if it is regular. -/ |
| 24 | axiom isMSOTransduction_iff_isRegularFun {A B : Type} [Finite A] [Finite B] |
| 25 | (f : List A → List B) : IsMSOTransduction f ↔ IsRegularFun f |
| 26 | |
| 27 | end Lax314295.MSOTransductionIffRegular |
| 28 |
Formalization notes
Both alphabets are assumed finite.
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