]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/ground/arith/wf1_ind_plt.ma
partial update in static_2
[helm.git] / matita / matita / contribs / lambdadelta / ground / arith / wf1_ind_plt.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 include "ground/arith/pnat_lt.ma".
16
17 (* WELL-FOUNDED INDUCTION ***************************************************)
18
19 fact wf1_ind_plt_aux (A1) (f:A1→pnat) (Q:predicate …):
20      (∀p. (∀a1. f a1 < p → Q a1) → ∀a1. f a1 = p → Q a1) →
21      ∀p,a1. f a1 = p → Q a1.
22 #A1 #f #Q #H #p @(pnat_ind_lt … p) -p /3 width=3 by/
23 qed-.
24
25 lemma wf1_ind_plt (A1) (f:A1→pnat) (Q:predicate …):
26       (∀p. (∀a1. f a1 < p → Q a1) → ∀a1. f a1 = p → Q a1) →
27       ∀a1. Q a1.
28 #A #f #Q #H #a1 @(wf1_ind_plt_aux … H) -H //
29 qed-.