2013-09-06 18:31:47 -07:00
|
|
|
Variable A : Type
|
|
|
|
Variable B : Type
|
|
|
|
Variable A' : Type
|
|
|
|
Variable B' : Type
|
2013-12-06 13:23:20 -08:00
|
|
|
Axiom H : (A -> B) = (A' -> B')
|
2013-09-06 18:31:47 -07:00
|
|
|
Variable a : A
|
|
|
|
Check DomInj H
|
|
|
|
Theorem BeqB' : B = B' := RanInj H a
|
2013-12-18 21:18:45 -08:00
|
|
|
SetOption pp::implicit true
|
2013-09-06 18:31:47 -07:00
|
|
|
Show DomInj H
|
|
|
|
Show RanInj H a
|