]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_depth.ma
update in delayed_updating
[helm.git] / matita / matita / contribs / lambdadelta / delayed_updating / syntax / path_depth.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 "delayed_updating/syntax/path.ma".
16 include "delayed_updating/notation/functions/flat_1.ma".
17 include "ground/arith/nat_plus.ma".
18
19 (* DEPTH FOR PATH ***********************************************************)
20
21 rec definition depth (p) on p: nat ā‰
22 match p with
23 [ list_empty     ā‡’ šŸŽ
24 | list_lcons l q ā‡’
25   match l with
26   [ label_d _ ā‡’ depth q
27   | label_m   ā‡’ depth q
28   | label_L   ā‡’ ā†‘(depth q)
29   | label_A   ā‡’ depth q
30   | label_S   ā‡’ depth q
31   ]
32 ].
33
34 interpretation
35   "depth (path)"
36   'Flat p = (depth p).
37
38 (* Basic constructions ******************************************************)
39
40 lemma depth_empty: šŸŽ = ā™­šž.
41 // qed.
42
43 lemma depth_d_sn (q) (n): ā™­q = ā™­(š—±nā——q).
44 // qed.
45
46 lemma depth_m_sn (q): ā™­q = ā™­(š—ŗā——q).
47 // qed.
48
49 lemma depth_L_sn (q): ā†‘ā™­q = ā™­(š—Ÿā——q).
50 // qed.
51
52 lemma depth_A_sn (q): ā™­q = ā™­(š—”ā——q).
53 // qed.
54
55 lemma depth_S_sn (q): ā™­q = ā™­(š—¦ā——q).
56 // qed.
57
58 (* Main constructions *******************************************************)
59
60 theorem depth_append (p1) (p2):
61         (ā™­p2)+(ā™­p1) = ā™­(p1ā—p2).
62 #p1 elim p1 -p1 //
63 * [ #n ] #p1 #IH #p2 <list_append_lcons_sn
64 [ <depth_d_sn <depth_d_sn //
65 | <depth_m_sn <depth_m_sn //
66 | <depth_L_sn <depth_L_sn //
67 | <depth_A_sn <depth_A_sn //
68 | <depth_S_sn <depth_S_sn //
69 ]
70 qed.
71
72 (* Constructions with list_rcons ********************************************)
73
74 lemma depth_d_dx (p) (n):
75       ā™­p = ā™­(pā—–š—±n).
76 // qed.
77
78 lemma depth_m_dx (p):
79       ā™­p = ā™­(pā—–š—ŗ).
80 // qed.
81
82 lemma depth_L_dx (p):
83       ā†‘ā™­p = ā™­(pā—–š—Ÿ).
84 // qed.
85
86 lemma depth_A_dx (p):
87       ā™­p = ā™­(pā—–š—”).
88 // qed.
89
90 lemma depth_S_dx (p):
91       ā™­p = ā™­(pā—–š—¦).
92 // qed.