DEFINITION bool_ind()
TYPE =
       P:boolProp.(P true)(P false)b:bool.(P b)
BODY =
        assume PboolProp
        suppose Htrue
        suppose H1false
        assume bbool
          by cases on b we prove P b
             case true 
                the thesis becomes the hypothesis H
             case false 
                the thesis becomes the hypothesis H1
          we proved P b
       we proved P:boolProp.(P true)(P false)b:bool.(P b)