Step * of Lemma apply-2-partial

[A,B,C:Type].
  (∀[f:Base]
     (∀[a:partial(A)]. ∀[b:partial(B)].  (f b ∈ partial(C))) supposing 
        ((∀a:partial(A). ∀b:partial(B).  ((f b)↓  ((a)↓ ∧ (b)↓))) and 
        (∀a:partial(A). ∀b:partial(B).  (((¬is-exception(a)) ∧ is-exception(b)))  is-exception(f b)))) and 
        (f ∈ A ⟶ B ⟶ C))) supposing 
     (value-type(C) and 
     (value-type(B) ∧ (B ⊆Base)) and 
     (value-type(A) ∧ (A ⊆Base)))
BY
(RepeatFor (Intro)
   THEN (Assert partial(Base) ⊆Base BY
               Auto)
   THEN (Assert partial(A) ⊆Base BY
               Auto)
   THEN (Assert partial(B) ⊆Base BY
               Auto)
   THEN Intros
   THEN (BLemma `base-member-partial` THENA Auto)) }

1
1. Type
2. Type
3. Type
4. value-type(A) ∧ (A ⊆Base)
5. value-type(B) ∧ (B ⊆Base)
6. value-type(C)
7. Base
8. partial(Base) ⊆Base
9. partial(A) ⊆Base
10. partial(B) ⊆Base
11. f ∈ A ⟶ B ⟶ C
12. ∀a:partial(A). ∀b:partial(B).  (((¬is-exception(a)) ∧ is-exception(b)))  is-exception(f b)))
13. ∀a:partial(A). ∀b:partial(B).  ((f b)↓  ((a)↓ ∧ (b)↓))
14. partial(A)
15. partial(B)
⊢ value-type(C)

2
1. Type
2. Type
3. Type
4. value-type(A) ∧ (A ⊆Base)
5. value-type(B) ∧ (B ⊆Base)
6. value-type(C)
7. Base
8. partial(Base) ⊆Base
9. partial(A) ⊆Base
10. partial(B) ⊆Base
11. f ∈ A ⟶ B ⟶ C
12. ∀a:partial(A). ∀b:partial(B).  (((¬is-exception(a)) ∧ is-exception(b)))  is-exception(f b)))
13. ∀a:partial(A). ∀b:partial(B).  ((f b)↓  ((a)↓ ∧ (b)↓))
14. partial(A)
15. partial(B)
⊢ b ∈ supposing (f b)↓

3
1. Type
2. Type
3. Type
4. value-type(A) ∧ (A ⊆Base)
5. value-type(B) ∧ (B ⊆Base)
6. value-type(C)
7. Base
8. partial(Base) ⊆Base
9. partial(A) ⊆Base
10. partial(B) ⊆Base
11. f ∈ A ⟶ B ⟶ C
12. ∀a:partial(A). ∀b:partial(B).  (((¬is-exception(a)) ∧ is-exception(b)))  is-exception(f b)))
13. ∀a:partial(A). ∀b:partial(B).  ((f b)↓  ((a)↓ ∧ (b)↓))
14. partial(A)
15. partial(B)
⊢ ¬is-exception(f b)


Latex:


Latex:
\mforall{}[A,B,C:Type].
    (\mforall{}[f:Base]
          (\mforall{}[a:partial(A)].  \mforall{}[b:partial(B)].    (f  a  b  \mmember{}  partial(C)))  supposing 
                ((\mforall{}a:partial(A).  \mforall{}b:partial(B).    ((f  a  b)\mdownarrow{}  {}\mRightarrow{}  ((a)\mdownarrow{}  \mwedge{}  (b)\mdownarrow{})))  and 
                (\mforall{}a:partial(A).  \mforall{}b:partial(B).
                      (((\mneg{}is-exception(a))  \mwedge{}  (\mneg{}is-exception(b)))  {}\mRightarrow{}  (\mneg{}is-exception(f  a  b))))  and 
                (f  \mmember{}  A  {}\mrightarrow{}  B  {}\mrightarrow{}  C)))  supposing 
          (value-type(C)  and 
          (value-type(B)  \mwedge{}  (B  \msubseteq{}r  Base))  and 
          (value-type(A)  \mwedge{}  (A  \msubseteq{}r  Base)))


By


Latex:
(RepeatFor  7  (Intro)
  THEN  (Assert  partial(Base)  \msubseteq{}r  Base  BY
                          Auto)
  THEN  (Assert  partial(A)  \msubseteq{}r  Base  BY
                          Auto)
  THEN  (Assert  partial(B)  \msubseteq{}r  Base  BY
                          Auto)
  THEN  Intros
  THEN  (BLemma  `base-member-partial`  THENA  Auto))




Home Index