Thms automata 4 Sections AutomataTheory Doc

NOTE: This operator coercing a to a Prop is normally invisible since it is pretty obvious when it is needed.

assert Def b == if b True else False fi

Thm* b:. b Prop

equiv_rel Def EquivRel x,y:T. E(x;y) == Refl(T;x,y.E(x;y)) & Sym x,y:T. E(x;y) & Trans x,y:T. E(x;y)

Thm* T:Type, E:(TTProp). (EquivRel x,y:T. E(x,y)) Prop

lang_rel Def L-induced Equiv(x,y) == z:A*. L(z @ x) L(z @ y)

Thm* A:Type, L:LangOver(A). L-induced Equiv A*A*Prop

iff Def P Q == (P Q) & (P Q)

Thm* A,B:Prop. (A B) Prop

languages Def LangOver(Alph) == Alph*Prop

Thm* Alph:Type{i}. LangOver(Alph) Type{i'}

pi2 Def 2of(t) == t.2

Thm* A:Type, B:(AType), p:a:AB(a). 2of(p) B(1of(p))

trans Def Trans x,y:T. E(x;y) == a,b,c:T. E(a;b) E(b;c) E(a;c)

Thm* T:Type, E:(TTProp). Trans x,y:T. E(x,y) Prop

sym Def Sym x,y:T. E(x;y) == a,b:T. E(a;b) E(b;a)

Thm* T:Type, E:(TTProp). Sym x,y:T. E(x,y) Prop

refl Def Refl(T;x,y.E(x;y)) == a:T. E(a;a)

Thm* T:Type, E:(TTProp). Refl(T;x,y.E(x,y)) Prop

rev_implies Def P Q == Q P

Thm* A,B:Prop. (A B) Prop

append Def as @ bs == Case of as; nil bs ; a.as' a.(as' @ bs) (recursive)

Thm* T:Type, as,bs:T*. (as @ bs) T*

About:
recursive_def_notice!abstractionlist_indconsalluniverselist
memberimpliespropfunctionspreadproductand
applyifthenelsetruefalseboolassert