DEFINITION K_ind()
TYPE =
       P:KProp
         .(b:B.(P (Bind b)))(f:F.(P (Flat f)))k:K.(P k)
BODY =
        assume PKProp
        suppose Hb:B.(P (Bind b))
        suppose H1f:F.(P (Flat f))
        assume kK
          by cases on k we prove P k
             case Bind b:B 
                the thesis becomes P (Bind b)
                by (H .)
P (Bind b)
             case Flat f:F 
                the thesis becomes P (Flat f)
                by (H1 .)
P (Flat f)
          we proved P k
       we proved 
          P:KProp
            .(b:B.(P (Bind b)))(f:F.(P (Flat f)))k:K.(P k)