1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "ground/arith/nat_lt.ma".
17 (* WELL-FOUNDED INDUCTION ***************************************************)
19 fact wf1_ind_nlt_aux (A1) (f:A1→nat) (Q:predicate …):
20 (∀n. (∀a1. f a1 < n → Q a1) → ∀a1. f a1 = n → Q a1) →
21 ∀n,a1. f a1 = n → Q a1.
22 #A1 #f #Q #H #n @(nat_ind_lt … n) -n /3 width=3 by/
26 lemma wf1_ind_nlt (A1) (f:A1→nat) (Q:predicate …):
27 (∀n. (∀a1. f a1 < n → Q a1) → ∀a1. f a1 = n → Q a1) →
29 #A #f #Q #H #a1 @(wf1_ind_nlt_aux … H) -H //