src/HOL/Hyperreal/Transcendental.ML
author paulson
Tue, 27 Jan 2004 15:39:51 +0100
changeset 14365 3d4df8c166ae
parent 14355 67e2e96bfe36
child 14370 b0064703967b
permissions -rw-r--r--
replacing HOL/Real/PRat, PNat by the rational number development of Markus Wenzel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     1
(*  Title       : Transcendental.ML
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     2
    Author      : Jacques D. Fleuriot
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     3
    Copyright   : 1998,1999  University of Cambridge
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     4
                  1999 University of Edinburgh
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     5
    Description : Power Series
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     6
*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
     7
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
     8
fun multr_by_tac x i = 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
     9
       let val cancel_thm = 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
    10
           CLAIM "[| (0::real)<z; x*z<y*z |] ==> x<y" 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
    11
       in
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
    12
           res_inst_tac [("z",x)] cancel_thm i 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
    13
       end;
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14266
diff changeset
    14
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    15
Goalw [root_def] "root (Suc n) 0 = 0";
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
    16
by (safe_tac (claset() addSIs [some_equality,power_0_Suc] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    17
    addSEs [realpow_zero_zero]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    18
qed "real_root_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    19
Addsimps [real_root_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    20
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    21
Goalw [root_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    22
     "0 < x ==> (root(Suc n) x) ^ (Suc n) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    23
by (dres_inst_tac [("n","n")] realpow_pos_nth2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    24
by (auto_tac (claset() addIs [someI2],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    25
qed "real_root_pow_pos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    26
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    27
Goal "0 <= x ==> (root(Suc n) x) ^ (Suc n) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    28
by (auto_tac (claset() addSDs [real_le_imp_less_or_eq]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    29
              addDs [real_root_pow_pos],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    30
qed "real_root_pow_pos2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    31
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    32
Goalw [root_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    33
     "0 < x ==> root(Suc n) (x ^ (Suc n)) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    34
by (rtac some_equality 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
    35
by (forw_inst_tac [("n","n")] zero_less_power 2);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
    36
by (auto_tac (claset(),simpset() addsimps [zero_less_mult_iff]));
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
    37
by (res_inst_tac [("x","u"),("y","x")] linorder_cases 1);
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents: 13958
diff changeset
    38
by (dres_inst_tac [("n1","n"),("x","u")] (zero_less_Suc RSN  (3, realpow_less)) 1);
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents: 13958
diff changeset
    39
by (dres_inst_tac [("n1","n"),("x","x")] (zero_less_Suc RSN (3, realpow_less)) 4);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
    40
by (auto_tac (claset(),simpset() addsimps [order_less_irrefl])); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    41
qed "real_root_pos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    42
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    43
Goal "0 <= x ==> root(Suc n) (x ^ (Suc n)) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    44
by (auto_tac (claset() addSDs [real_le_imp_less_or_eq,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    45
              real_root_pos],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    46
qed "real_root_pos2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    47
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    48
Goalw [root_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    49
     "0 < x ==> 0 <= root(Suc n) x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    50
by (dres_inst_tac [("n","n")] realpow_pos_nth2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    51
by (Safe_tac THEN rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    52
by (auto_tac (claset() addSIs [order_less_imp_le] 
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
    53
    addDs [zero_less_power],simpset() addsimps [zero_less_mult_iff]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    54
qed "real_root_pos_pos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    55
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    56
Goal "0 <= x ==> 0 <= root(Suc n) x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    57
by (auto_tac (claset() addSDs [real_le_imp_less_or_eq]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    58
              addDs [real_root_pos_pos],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    59
qed "real_root_pos_pos_le";  
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    60
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    61
Goalw [root_def] "root (Suc n) 1 = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    62
by (rtac some_equality 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    63
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    64
by (rtac ccontr 1);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
    65
by (res_inst_tac [("x","u"),("y","1")] linorder_cases 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    66
by (dres_inst_tac [("n","n")] realpow_Suc_less_one 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
    67
by (dres_inst_tac [("n","n")] power_gt1_lemma 4);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
    68
by (auto_tac (claset(),simpset() addsimps [order_less_irrefl]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    69
qed "real_root_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    70
Addsimps [real_root_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    71
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    72
(*----------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    73
(* Square root                                                          *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    74
(*----------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    75
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    76
(*lcp: needed now because 2 is a binary numeral!*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    77
Goal "root 2 = root (Suc (Suc 0))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    78
by (simp_tac (simpset() delsimps [numeral_0_eq_0, numeral_1_eq_1]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    79
	                addsimps [numeral_0_eq_0 RS sym]) 1);  
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    80
qed "root_2_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    81
Addsimps [root_2_eq];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    82
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    83
Goalw [sqrt_def] "sqrt 0 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    84
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    85
qed "real_sqrt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    86
Addsimps [real_sqrt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    87
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    88
Goalw [sqrt_def] "sqrt 1 = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    89
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    90
qed "real_sqrt_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    91
Addsimps [real_sqrt_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    92
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    93
Goalw [sqrt_def] "(sqrt(x) ^ 2 = x) = (0 <= x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    94
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    95
by (cut_inst_tac [("r","root 2 x")] realpow_two_le 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    96
by (stac numeral_2_eq_2 2); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    97
by (rtac real_root_pow_pos2 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    98
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
    99
qed "real_sqrt_pow2_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   100
Addsimps [real_sqrt_pow2_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   101
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   102
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   103
Addsimps [realpow_two_le_add_order RS (real_sqrt_pow2_iff RS iffD2)];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   104
Addsimps [simplify (simpset()) (realpow_two_le_add_order RS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   105
           (real_sqrt_pow2_iff RS iffD2))];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   106
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   107
Goalw [sqrt_def] "0 < x ==> sqrt(x) ^ 2 = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   108
by (stac numeral_2_eq_2 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   109
by (etac real_root_pow_pos 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   110
qed "real_sqrt_gt_zero_pow2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   111
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   112
Goal "(sqrt(abs(x)) ^ 2 = abs x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   113
by (rtac (real_sqrt_pow2_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   114
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   115
qed "real_sqrt_abs_abs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   116
Addsimps [real_sqrt_abs_abs];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   117
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   118
Goalw [sqrt_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   119
      "0 <= x ==> sqrt(x) ^ 2 = sqrt(x ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   120
by (stac numeral_2_eq_2 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   121
by (auto_tac (claset() addIs [real_root_pow_pos2 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   122
    RS ssubst, real_root_pos2 RS ssubst],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   123
     simpset() delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   124
qed "real_pow_sqrt_eq_sqrt_pow";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   125
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   126
Goal "0 <= x ==> sqrt(x) ^ 2 = sqrt(abs(x) ^ 2)";
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
   127
by (asm_full_simp_tac (simpset() addsimps [real_pow_sqrt_eq_sqrt_pow]) 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   128
qed "real_pow_sqrt_eq_sqrt_abs_pow2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   129
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   130
Goal "0 <= x ==> sqrt(x) ^ 2 = abs(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   131
by (rtac (real_sqrt_abs_abs RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   132
by (res_inst_tac [("x1","x")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   133
     (real_pow_sqrt_eq_sqrt_abs_pow2 RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   134
by (rtac (real_pow_sqrt_eq_sqrt_pow RS sym) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   135
by (assume_tac 1 THEN arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   136
qed "real_sqrt_pow_abs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   137
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   138
Goal "(~ (0::real) < x*x) = (x = 0)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   139
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   140
by (rtac ccontr 1);
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
   141
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   142
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   143
by (ftac (real_mult_order) 2);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   144
by (asm_full_simp_tac (simpset() addsimps [zero_less_mult_iff]) 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   145
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   146
qed "not_real_square_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   147
Addsimps [not_real_square_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   148
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   149
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   150
(* proof used to be simpler *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   151
Goalw [sqrt_def,root_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   152
      "[| 0 < x; 0 < y |] ==>sqrt(x*y) =  sqrt(x) * sqrt(y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   153
by (dres_inst_tac [("n","1")] realpow_pos_nth2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   154
by (dres_inst_tac [("n","1")] realpow_pos_nth2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   155
by (asm_full_simp_tac (simpset() delsimps [realpow_Suc]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   156
                                 addsimps [numeral_2_eq_2]) 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   157
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   158
by (rtac someI2 1 THEN Step_tac 1 THEN Blast_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   159
by (Asm_full_simp_tac 1 THEN Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   160
by (rtac someI2 1 THEN Step_tac 1 THEN Blast_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   161
by (Asm_full_simp_tac 1 THEN Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   162
by (res_inst_tac [("a","xa * x")] someI2 1);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
   163
by (auto_tac (claset() addEs [order_less_asym],
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   164
    simpset() addsimps mult_ac@[power_mult_distrib RS sym,realpow_two_disj,
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   165
    zero_less_power, real_mult_order] delsimps [realpow_Suc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   166
qed "real_sqrt_mult_distrib";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   167
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   168
Goal "[|0<=x; 0<=y |] ==> sqrt(x*y) =  sqrt(x) * sqrt(y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   169
by (auto_tac (claset() addIs [ real_sqrt_mult_distrib],
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
   170
    simpset() addsimps [order_le_less]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   171
qed "real_sqrt_mult_distrib2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   172
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   173
Goal "(r * r = 0) = (r = (0::real))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   174
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   175
qed "real_mult_self_eq_zero_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   176
Addsimps [real_mult_self_eq_zero_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   177
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   178
Goalw [sqrt_def,root_def] "0 < x ==> 0 < sqrt(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   179
by (stac numeral_2_eq_2 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   180
by (dtac realpow_pos_nth2 1 THEN Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   181
by (rtac someI2 1 THEN Step_tac 1 THEN Blast_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   182
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   183
qed "real_sqrt_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   184
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   185
Goal "0 <= x ==> 0 <= sqrt(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   186
by (auto_tac (claset() addIs [real_sqrt_gt_zero],
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
   187
    simpset() addsimps [order_le_less]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   188
qed "real_sqrt_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   189
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   190
Goal "0 <= sqrt (x ^ 2 + y ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   191
by (auto_tac (claset() addSIs [real_sqrt_ge_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   192
qed "real_sqrt_sum_squares_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   193
Addsimps [real_sqrt_sum_squares_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   194
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   195
Goal "0 <= sqrt ((x ^ 2 + y ^ 2)*(xa ^ 2 + ya ^ 2))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   196
by (auto_tac (claset() addSIs [real_sqrt_ge_zero],simpset() 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   197
    addsimps [zero_le_mult_iff]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   198
qed "real_sqrt_sum_squares_mult_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   199
Addsimps [real_sqrt_sum_squares_mult_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   200
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   201
Goal "sqrt ((x ^ 2 + y ^ 2) * (xa ^ 2 + ya ^ 2)) ^ 2 = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   202
\     (x ^ 2 + y ^ 2) * (xa ^ 2 + ya ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   203
by (auto_tac (claset(),simpset() addsimps [real_sqrt_pow2_iff,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   204
    zero_le_mult_iff] delsimps [realpow_Suc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   205
qed "real_sqrt_sum_squares_mult_squared_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   206
Addsimps [real_sqrt_sum_squares_mult_squared_eq];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   207
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   208
Goal "sqrt(x ^ 2) = abs(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   209
by (rtac (abs_realpow_two RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   210
by (rtac (real_sqrt_abs_abs RS subst) 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   211
by (stac real_pow_sqrt_eq_sqrt_pow 1);
13097
c9c7f23d0ceb Had to update proof for some strange reason
nipkow
parents: 12486
diff changeset
   212
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2, abs_mult]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   213
qed "real_sqrt_abs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   214
Addsimps [real_sqrt_abs];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   215
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   216
Goal "sqrt(x*x) = abs(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   217
by (rtac (realpow_two RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   218
by (stac (numeral_2_eq_2 RS sym) 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   219
by (rtac real_sqrt_abs 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   220
qed "real_sqrt_abs2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   221
Addsimps [real_sqrt_abs2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   222
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   223
Goal "0 < x ==> 0 < sqrt(x) ^ 2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   224
by (asm_full_simp_tac (simpset() addsimps [real_sqrt_gt_zero_pow2]) 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   225
qed "real_sqrt_pow2_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   226
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   227
Goal "0 < x ==> sqrt x ~= 0";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   228
by (ftac real_sqrt_pow2_gt_zero 1);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
   229
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2, order_less_irrefl]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   230
qed "real_sqrt_not_eq_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   231
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   232
Goal "0 < x ==> inverse (sqrt(x)) ^ 2 = inverse x";
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   233
by (cut_inst_tac [("n1","2"),("a1","sqrt x")] (power_inverse RS sym) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   234
by (auto_tac (claset() addDs [real_sqrt_gt_zero_pow2],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   235
qed "real_inv_sqrt_pow2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   236
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   237
Goal "[| 0 <= x; sqrt(x) = 0|] ==> x = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   238
by (dtac real_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   239
by (auto_tac (claset() addDs [real_sqrt_not_eq_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   240
qed "real_sqrt_eq_zero_cancel";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   241
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   242
Goal "0 <= x ==> ((sqrt x = 0) = (x = 0))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   243
by (auto_tac (claset(),simpset() addsimps [real_sqrt_eq_zero_cancel]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   244
qed "real_sqrt_eq_zero_cancel_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   245
Addsimps [real_sqrt_eq_zero_cancel_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   246
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   247
Goal "x <= sqrt(x ^ 2 + y ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   248
by (subgoal_tac "x <= 0 | 0 <= x" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   249
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   250
by (rtac real_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   251
by (auto_tac (claset(),simpset() delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   252
by (res_inst_tac [("n","1")] realpow_increasing 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   253
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2 RS sym]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   254
				 delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   255
qed "real_sqrt_sum_squares_ge1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   256
Addsimps [real_sqrt_sum_squares_ge1];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   257
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   258
Goal "y <= sqrt(z ^ 2 + y ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   259
by (simp_tac (simpset() addsimps [real_add_commute] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   260
    delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   261
qed "real_sqrt_sum_squares_ge2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   262
Addsimps [real_sqrt_sum_squares_ge2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   263
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   264
Goal "1 <= x ==> 1 <= sqrt x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   265
by (res_inst_tac [("n","1")] realpow_increasing 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   266
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2 RS sym, real_sqrt_gt_zero_pow2,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   267
    real_sqrt_ge_zero] delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   268
qed "real_sqrt_ge_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   269
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   270
(*-------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   271
(* Exponential function                                                    *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   272
(*-------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   273
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   274
Goal "summable (%n. inverse (real (fact n)) * x ^ n)";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   275
by (cut_facts_tac [zero_less_one RS real_dense] 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   276
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   277
by (cut_inst_tac [("x","r")] reals_Archimedean3 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   278
by Auto_tac;
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   279
by (dres_inst_tac [("x","abs x")] spec 1 THEN Safe_tac);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   280
by (res_inst_tac [("N","n"),("c","r")] ratio_test 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   281
by (auto_tac (claset(),
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   282
     simpset() addsimps [abs_mult,mult_assoc RS sym] delsimps [fact_Suc]));
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   283
by (rtac mult_right_mono 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   284
by (res_inst_tac [("b1","abs x")] (mult_commute RS ssubst) 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   285
by (stac fact_Suc 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   286
by (stac real_of_nat_mult 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   287
by (auto_tac (claset(),simpset() addsimps [abs_mult,inverse_mult_distrib]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   288
by (auto_tac (claset(), simpset() addsimps 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   289
     [mult_assoc RS sym, abs_eqI2, positive_imp_inverse_positive]));
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   290
by (rtac order_less_imp_le 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   291
by (res_inst_tac [("z1","real (Suc na)")] (real_mult_less_iff1
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   292
    RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   293
by (auto_tac (claset(),simpset() addsimps [real_not_refl2 RS not_sym,
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   294
    mult_assoc,abs_inverse]));
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   295
by (etac order_less_trans 1);
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   296
by (auto_tac (claset(),simpset() addsimps [mult_less_cancel_left]@mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   297
qed "summable_exp";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   298
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   299
Addsimps [real_of_nat_fact_gt_zero,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   300
    real_of_nat_fact_ge_zero,inv_real_of_nat_fact_gt_zero,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   301
    inv_real_of_nat_fact_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   302
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   303
Goalw [real_divide_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   304
     "summable (%n. \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   305
\          (if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   306
\          else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   307
\               x ^ n)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   308
by (res_inst_tac [("g","(%n. inverse (real (fact n)) * abs(x) ^ n)")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   309
    summable_comparison_test 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   310
by (rtac summable_exp 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   311
by (res_inst_tac [("x","0")] exI 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   312
by (auto_tac (claset(), simpset() addsimps [power_abs RS sym,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   313
    abs_mult,zero_le_mult_iff]));
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   314
by (auto_tac (claset() addIs [mult_right_mono],
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   315
    simpset() addsimps [positive_imp_inverse_positive,abs_eqI2]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   316
qed "summable_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   317
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   318
Goalw [real_divide_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   319
      "summable (%n. \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   320
\          (if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   321
\          (- 1) ^ (n div 2)/(real (fact n)) else 0) * x ^ n)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   322
by (res_inst_tac [("g","(%n. inverse (real (fact n)) * abs(x) ^ n)")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   323
    summable_comparison_test 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   324
by (rtac summable_exp 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   325
by (res_inst_tac [("x","0")] exI 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   326
by (auto_tac (claset(), simpset() addsimps [power_abs RS sym,abs_mult,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   327
    zero_le_mult_iff]));
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   328
by (auto_tac (claset() addSIs [mult_right_mono],
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   329
    simpset() addsimps [positive_imp_inverse_positive,abs_eqI2]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   330
qed "summable_cos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   331
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   332
Goal "(if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   333
\      else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) * 0 ^ n = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   334
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   335
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   336
val lemma_STAR_sin = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   337
Addsimps [lemma_STAR_sin];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   338
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   339
Goal "0 < n --> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   340
\     (- 1) ^ (n div 2)/(real (fact n)) * 0 ^ n = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   341
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   342
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   343
val lemma_STAR_cos = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   344
Addsimps [lemma_STAR_cos];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   345
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   346
Goal "0 < n --> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   347
\     (-1) ^ (n div 2)/(real (fact n)) * 0 ^ n = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   348
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   349
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   350
val lemma_STAR_cos1 = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   351
Addsimps [lemma_STAR_cos1];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   352
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   353
Goal "sumr 1 n (%n. if even n \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   354
\                   then (- 1) ^ (n div 2)/(real (fact n)) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   355
\                         0 ^ n \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   356
\                   else 0) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   357
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   358
by (case_tac "n" 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   359
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   360
val lemma_STAR_cos2 = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   361
Addsimps [lemma_STAR_cos2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   362
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   363
Goalw [exp_def] "(%n. inverse (real (fact n)) * x ^ n) sums exp(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   364
by (rtac (summable_exp RS summable_sums) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   365
qed "exp_converges";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   366
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   367
Goalw [sin_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   368
      "(%n. (if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   369
\           else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   370
\                x ^ n) sums sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   371
by (rtac (summable_sin RS summable_sums) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   372
qed "sin_converges";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   373
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   374
Goalw [cos_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   375
      "(%n. (if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   376
\          (- 1) ^ (n div 2)/(real (fact n)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   377
\          else 0) * x ^ n) sums cos(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   378
by (rtac (summable_cos RS summable_sums) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   379
qed "cos_converges";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   380
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   381
Goal "p <= n --> y ^ (Suc n - p) = ((y::real) ^ (n - p)) * y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   382
by (induct_tac "n" 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   383
by (subgoal_tac "p = Suc n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   384
by (Asm_simp_tac 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   385
by (dtac sym 1 THEN asm_full_simp_tac (simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   386
    [Suc_diff_le,real_mult_commute,realpow_Suc RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   387
    delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   388
qed_spec_mp "lemma_realpow_diff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   389
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   390
(*--------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   391
(* Properties of power series                                               *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   392
(*--------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   393
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   394
Goal "sumr 0 (Suc n) (%p. (x ^ p) * y ^ ((Suc n) - p)) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   395
\     y * sumr 0 (Suc n) (%p. (x ^ p) * (y ^ (n - p)))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   396
by (auto_tac (claset(),simpset() addsimps [sumr_mult] delsimps [sumr_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   397
by (rtac sumr_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   398
by (strip_tac 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   399
by (stac lemma_realpow_diff 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   400
by (auto_tac (claset(),simpset() addsimps mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   401
qed "lemma_realpow_diff_sumr";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   402
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   403
Goal "x ^ (Suc n) - y ^ (Suc n) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   404
\     (x - y) * sumr 0 (Suc n) (%p. (x ^ p) * (y ^(n - p)))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   405
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   406
by (auto_tac (claset(),simpset() delsimps [sumr_Suc]));
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   407
by (stac sumr_Suc 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   408
by (dtac sym 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   409
by (auto_tac (claset(),simpset() addsimps [lemma_realpow_diff_sumr,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   410
    right_distrib,real_diff_def] @ 
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   411
    mult_ac delsimps [sumr_Suc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   412
qed "lemma_realpow_diff_sumr2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   413
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   414
Goal "sumr 0 (Suc n) (%p. (x ^ p) * (y ^ (n - p))) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   415
\     sumr 0 (Suc n) (%p. (x ^ (n - p)) * (y ^ p))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   416
by (case_tac "x = y" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   417
by (auto_tac (claset(),simpset() addsimps [real_mult_commute,
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   418
    power_add RS sym] delsimps [sumr_Suc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   419
by (res_inst_tac [("c1","x - y")] (real_mult_left_cancel RS iffD1) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   420
by (rtac (minus_minus RS subst) 2);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   421
by (stac minus_mult_left 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   422
by (auto_tac (claset(),simpset() addsimps [lemma_realpow_diff_sumr2 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   423
    RS sym] delsimps [sumr_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   424
qed "lemma_realpow_rev_sumr";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   425
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   426
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   427
(* Power series has a `circle` of convergence,                              *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   428
(* i.e. if it sums for x, then it sums absolutely for z with |z| < |x|.     *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   429
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   430
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   431
Goal "[| summable (%n. f(n) * (x ^ n)); abs(z) < abs(x) |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   432
\     ==> summable (%n. abs(f(n)) * (z ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   433
by (dtac summable_LIMSEQ_zero 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   434
by (dtac convergentI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   435
by (asm_full_simp_tac (simpset() addsimps [Cauchy_convergent_iff RS sym]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   436
by (dtac Cauchy_Bseq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   437
by (asm_full_simp_tac (simpset() addsimps [Bseq_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   438
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   439
by (res_inst_tac [("g","%n. K * abs(z ^ n) * inverse (abs(x ^ n))")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   440
    summable_comparison_test 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   441
by (res_inst_tac [("x","0")] exI 1 THEN Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   442
by (subgoal_tac "0 < abs (x ^ n)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   443
by (res_inst_tac [("z","abs (x ^ n)")] (CLAIM_SIMP 
14305
f17ca9f6dc8c tidying first part of HyperArith0.ML, using generic lemmas
paulson
parents: 14294
diff changeset
   444
    "[| (0::real) <z; x*z<=y*z |] ==> x<=y" [mult_le_cancel_left]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   445
by (auto_tac (claset(),
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   446
    simpset() addsimps [mult_assoc,power_abs]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   447
by (dres_inst_tac [("x","0")] spec 2 THEN Force_tac 2); 
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   448
by (auto_tac (claset(),simpset() addsimps [abs_mult,power_abs] @ mult_ac));
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14288
diff changeset
   449
by (res_inst_tac [("a2","z ^ n")] (abs_ge_zero RS real_le_imp_less_or_eq
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   450
    RS disjE) 1 THEN dtac sym 2);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   451
by (auto_tac (claset() addSIs [mult_right_mono],
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   452
    simpset() addsimps [mult_assoc RS sym, power_abs,summable_def, power_0_left]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   453
by (res_inst_tac [("x","K * inverse(1 - (abs(z) * inverse(abs x)))")] exI 1);
14336
8f731d3cd65b Deleting more redundant theorems
paulson
parents: 14334
diff changeset
   454
by (auto_tac (claset() addSIs [sums_mult],simpset() addsimps [mult_assoc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   455
by (subgoal_tac 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   456
    "abs(z ^ n) * inverse(abs x ^ n) = (abs(z) * inverse(abs x)) ^ n" 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   457
by (auto_tac (claset(),simpset() addsimps [power_abs RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   458
by (subgoal_tac "x ~= 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   459
by (subgoal_tac "x ~= 0" 3);
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14288
diff changeset
   460
by (auto_tac (claset(),
14336
8f731d3cd65b Deleting more redundant theorems
paulson
parents: 14334
diff changeset
   461
     simpset() delsimps [abs_inverse, abs_mult]
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14288
diff changeset
   462
      addsimps [abs_inverse RS sym, realpow_not_zero, abs_mult RS sym,
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   463
    power_inverse, power_mult_distrib RS sym]));
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14288
diff changeset
   464
by (auto_tac (claset() addSIs [geometric_sums],
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   465
       simpset() addsimps [power_abs, inverse_eq_divide]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   466
by (res_inst_tac [("z","abs(x)")] (CLAIM_SIMP 
14305
f17ca9f6dc8c tidying first part of HyperArith0.ML, using generic lemmas
paulson
parents: 14294
diff changeset
   467
    "[|(0::real)<z; x*z<y*z |] ==> x<y" [mult_less_cancel_left]) 1);
14336
8f731d3cd65b Deleting more redundant theorems
paulson
parents: 14334
diff changeset
   468
by (auto_tac (claset(),simpset() addsimps [abs_mult RS sym,mult_assoc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   469
qed "powser_insidea";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   470
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   471
Goal "[| summable (%n. f(n) * (x ^ n)); abs(z) < abs(x) |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   472
\     ==> summable (%n. f(n) * (z ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   473
by (dres_inst_tac [("z","abs z")] powser_insidea 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   474
by (auto_tac (claset() addIs [summable_rabs_cancel],
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   475
    simpset() addsimps [power_abs RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   476
qed "powser_inside";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   477
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   478
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   479
(*               Differentiation of power series                            *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   480
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   481
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   482
(* Lemma about distributing negation over it *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   483
Goalw [diffs_def] "diffs (%n. - c n) = (%n. - diffs c n)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   484
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   485
qed "diffs_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   486
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   487
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   488
(* Show that we can shift the terms down one                                *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   489
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   490
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   491
Goal "sumr 0 n (%n. (diffs c)(n) * (x ^ n)) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   492
\     sumr 0 n (%n. real n * c(n) * (x ^ (n - Suc 0))) + \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   493
\     (real n * c(n) * x ^ (n - Suc 0))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   494
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   495
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc, 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   496
    real_add_assoc RS sym,diffs_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   497
qed "lemma_diffs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   498
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   499
Goal "sumr 0 n (%n. real n * c(n) * (x ^ (n - Suc 0))) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   500
\     sumr 0 n (%n. (diffs c)(n) * (x ^ n)) - \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   501
\     (real n * c(n) * x ^ (n - Suc 0))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   502
by (auto_tac (claset(),simpset() addsimps [lemma_diffs]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   503
qed "lemma_diffs2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   504
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   505
Goal "summable (%n. (diffs c)(n) * (x ^ n)) ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   506
\     (%n. real n * c(n) * (x ^ (n - Suc 0))) sums \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   507
\        (suminf(%n. (diffs c)(n) * (x ^ n)))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   508
by (ftac summable_LIMSEQ_zero 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   509
by (subgoal_tac "(%n. real n * c(n) * (x ^ (n - Suc 0))) ----> 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   510
by (rtac LIMSEQ_imp_Suc 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   511
by (dtac summable_sums 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   512
by (auto_tac (claset(),simpset() addsimps [sums_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   513
by (thin_tac "(%n. diffs c n * x ^ n) ----> 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   514
by (rotate_tac 1 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   515
by (dtac LIMSEQ_diff 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   516
by (auto_tac (claset(),simpset() addsimps [lemma_diffs2 RS sym,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   517
    symmetric diffs_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   518
by (asm_full_simp_tac (simpset() addsimps [diffs_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   519
qed "diffs_equiv";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   520
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   521
(* -------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   522
(* Term-by-term differentiability of power series                           *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   523
(* -------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   524
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   525
Goal "sumr 0 m (%p. (((z + h) ^ (m - p)) * (z ^ p)) - (z ^ m)) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   526
\       sumr 0 m (%p. (z ^ p) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   527
\       (((z + h) ^ (m - p)) - (z ^ (m - p))))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   528
by (rtac sumr_subst 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   529
by (auto_tac (claset(),simpset() addsimps [right_distrib,
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   530
    real_diff_def,power_add RS sym] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   531
    @ mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   532
qed "lemma_termdiff1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   533
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   534
(* proved elsewhere? *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   535
Goal "m < n --> (EX d. n = m + d + Suc 0)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   536
by (induct_tac "m" 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   537
by (case_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   538
by (case_tac "d" 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   539
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   540
qed_spec_mp "less_add_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   541
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   542
Goal " h ~= 0 ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   543
\       (((z + h) ^ n) - (z ^ n)) * inverse h - \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   544
\           real n * (z ^ (n - Suc 0)) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   545
\        h * sumr 0 (n - Suc 0) (%p. (z ^ p) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   546
\              sumr 0 ((n - Suc 0) - p) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   547
\                (%q. ((z + h) ^ q) * (z ^ (((n - 2) - p) - q))))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   548
by (rtac (real_mult_left_cancel RS iffD1) 1 THEN Asm_simp_tac 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   549
by (asm_full_simp_tac (simpset() addsimps [right_diff_distrib]
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   550
    @ mult_ac) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   551
by (asm_full_simp_tac (simpset() addsimps [real_mult_assoc RS sym]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   552
by (case_tac "n" 1 THEN auto_tac (claset(),simpset() 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   553
    addsimps [lemma_realpow_diff_sumr2,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   554
    right_diff_distrib RS sym,real_mult_assoc] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   555
    delsimps [realpow_Suc,sumr_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   556
by (auto_tac (claset(),simpset() addsimps [lemma_realpow_rev_sumr]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   557
    delsimps [sumr_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   558
by (auto_tac (claset(),simpset() addsimps [real_of_nat_Suc,sumr_diff_mult_const,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   559
    left_distrib,CLAIM "(a + b) - (c + d) = a - c + b - (d::real)",
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   560
    lemma_termdiff1,sumr_mult]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   561
by (auto_tac (claset() addSIs [sumr_subst],simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   562
    [real_diff_def,real_add_assoc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   563
by (fold_tac [real_diff_def] THEN dtac less_add_one 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   564
by (auto_tac (claset(),simpset() addsimps [sumr_mult,lemma_realpow_diff_sumr2] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   565
    @ mult_ac delsimps [sumr_Suc,realpow_Suc]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   566
qed "lemma_termdiff2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   567
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   568
Goal "[| h ~= 0; abs z <= K; abs (z + h) <= K |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   569
\     ==> abs (((z + h) ^ n - z ^ n) * inverse h - real n * z ^ (n - Suc 0)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   570
\         <= real n * real (n - Suc 0) * K ^ (n - 2) * abs h";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   571
by (stac lemma_termdiff2 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   572
by (asm_full_simp_tac (simpset() addsimps [abs_mult,real_mult_commute]) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   573
by (stac real_mult_commute 2); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   574
by (rtac (sumr_rabs RS real_le_trans) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   575
by (asm_full_simp_tac (simpset() addsimps [real_mult_assoc RS sym]) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   576
by (rtac (real_mult_commute RS subst) 2);
13097
c9c7f23d0ceb Had to update proof for some strange reason
nipkow
parents: 12486
diff changeset
   577
by (auto_tac (claset() addSIs [sumr_bound2],simpset() addsimps [abs_mult]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   578
by (case_tac "n" 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   579
by (dtac less_add_one 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   580
by (auto_tac (claset(),simpset() addsimps [power_add,real_add_assoc RS sym,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   581
    CLAIM_SIMP "(a * b) * c = a * (c * (b::real))" mult_ac] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   582
    delsimps [sumr_Suc]));
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   583
by (auto_tac (claset() addSIs [mult_mono],simpset()delsimps [sumr_Suc])); 
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   584
by (auto_tac (claset() addSIs [power_mono],
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   585
            simpset() addsimps [power_abs] delsimps [sumr_Suc] ));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   586
by (res_inst_tac [("j","real (Suc d) * (K ^ d)")] real_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   587
by (subgoal_tac "0 <= K" 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   588
by (arith_tac 3);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   589
by (dres_inst_tac [("n","d")] zero_le_power 2);
13097
c9c7f23d0ceb Had to update proof for some strange reason
nipkow
parents: 12486
diff changeset
   590
by (auto_tac (claset(),simpset() delsimps [sumr_Suc] ));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   591
by (rtac (sumr_rabs RS real_le_trans) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   592
by (rtac sumr_bound2 1 THEN 
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   593
    auto_tac (claset() addSDs [less_add_one]
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   594
    addSIs [mult_mono], simpset() addsimps [abs_mult, power_add]));
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   595
by (auto_tac (claset() addSIs [power_mono,zero_le_power],
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   596
              simpset() addsimps [power_abs]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   597
by (ALLGOALS(arith_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   598
qed "lemma_termdiff3";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   599
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   600
Goalw [LIM_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   601
  "[| 0 < k; \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   602
\     (ALL h. 0 < abs(h) & abs(h) < k --> abs(f h) <= K * abs(h)) |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   603
\  ==> f -- 0 --> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   604
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   605
by (subgoal_tac "0 <= K" 1);
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
   606
by (dres_inst_tac [("x","k/2")] spec 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   607
by (ftac real_less_half_sum 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   608
by (dtac real_gt_half_sum 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   609
by (auto_tac (claset(),simpset() addsimps [abs_eqI2]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   610
by (res_inst_tac [("z","k/2")] (CLAIM_SIMP 
14305
f17ca9f6dc8c tidying first part of HyperArith0.ML, using generic lemmas
paulson
parents: 14294
diff changeset
   611
    "[| (0::real) <z; x*z<=y*z |] ==> x<=y" [mult_le_cancel_left]) 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   612
by (auto_tac (claset() addIs [abs_ge_zero RS real_le_trans],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   613
by (dtac real_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   614
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   615
by (subgoal_tac "0 < (r * inverse K) * inverse 2" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   616
by (REPEAT(rtac (real_mult_order) 2));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   617
by (dres_inst_tac [("d1.0","r * inverse K * inverse 2"),("d2.0","k")]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   618
    real_lbound_gt_zero 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   619
by (auto_tac (claset(),simpset() addsimps [positive_imp_inverse_positive,
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   620
    zero_less_mult_iff]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   621
by (rtac real_le_trans 2 THEN assume_tac 3 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   622
by (res_inst_tac [("x","e")] exI 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   623
by (res_inst_tac [("y","K * abs x")] order_le_less_trans 1);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
   624
by (res_inst_tac [("y","K * e")] order_less_trans 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   625
by (res_inst_tac [("z","inverse K")] (CLAIM_SIMP 
14305
f17ca9f6dc8c tidying first part of HyperArith0.ML, using generic lemmas
paulson
parents: 14294
diff changeset
   626
    "[|(0::real) <z; z*x<z*y |] ==> x<y" [mult_less_cancel_left]) 3);
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   627
by (asm_full_simp_tac (simpset() addsimps [mult_assoc RS sym]) 4);
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   628
by (Force_tac 1);
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   629
by (asm_full_simp_tac (simpset() addsimps [mult_less_cancel_left]) 1); 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   630
by (auto_tac (claset(),simpset() addsimps mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   631
qed "lemma_termdiff4";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   632
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   633
Goal "[| 0 < k; \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   634
\           summable f; \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   635
\           ALL h. 0 < abs(h) & abs(h) < k --> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   636
\                   (ALL n. abs(g(h) (n::nat)) <= (f(n) * abs(h))) |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   637
\        ==> (%h. suminf(g h)) -- 0 --> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   638
by (dtac summable_sums 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   639
by (subgoal_tac "ALL h. 0 < abs h & abs h < k --> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   640
\         abs(suminf (g h)) <= suminf f * abs h" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   641
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   642
by (subgoal_tac "summable (%n. f n * abs h)" 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   643
by (simp_tac (simpset() addsimps [summable_def]) 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   644
by (res_inst_tac [("x","suminf f * abs h")] exI 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   645
by (dres_inst_tac [("c","abs h")] sums_mult 3);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   646
by (asm_full_simp_tac (simpset() addsimps mult_ac) 3);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   647
by (subgoal_tac "summable (%n. abs(g(h::real)(n::nat)))" 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   648
by (res_inst_tac [("g","%n. f(n::nat) * abs(h)")] summable_comparison_test 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   649
by (res_inst_tac [("x","0")] exI 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   650
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   651
by (res_inst_tac [("j","suminf(%n. abs(g h n))")] real_le_trans 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   652
by (auto_tac (claset() addIs [summable_rabs,summable_le],simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   653
    [sums_summable RS suminf_mult]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   654
by (auto_tac (claset() addSIs [lemma_termdiff4],simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   655
    [(sums_summable RS suminf_mult) RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   656
qed "lemma_termdiff5";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   657
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   658
(* FIXME: Long proof *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   659
Goalw [deriv_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   660
    "[| summable(%n. c(n) * (K ^ n)); \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   661
\       summable(%n. (diffs c)(n) * (K ^ n)); \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   662
\       summable(%n. (diffs(diffs c))(n) * (K ^ n)); \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   663
\       abs(x) < abs(K) |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   664
\    ==> DERIV (%x. suminf (%n. c(n) * (x ^ n)))  x :> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   665
\            suminf (%n. (diffs c)(n) * (x ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   666
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   667
by (res_inst_tac [("g","%h. suminf(%n. ((c(n) * ((x + h) ^ n)) - \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   668
\                 (c(n) * (x ^ n))) * inverse h)")] LIM_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   669
by (asm_full_simp_tac (simpset() addsimps [LIM_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   670
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   671
by (res_inst_tac [("x","abs K - abs x")] exI 1);
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   672
by (auto_tac (claset(),simpset() addsimps [less_diff_eq]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   673
by (dtac (abs_triangle_ineq RS order_le_less_trans) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   674
by (res_inst_tac [("y","0")] order_le_less_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   675
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   676
by (subgoal_tac "(%n. (c n) * (x ^ n)) sums \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   677
\           (suminf(%n. (c n) * (x ^ n))) & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   678
\       (%n. (c n) * ((x + xa) ^ n)) sums \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   679
\           (suminf(%n. (c n) * ((x + xa) ^ n)))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   680
by (auto_tac (claset() addSIs [summable_sums],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   681
by (rtac powser_inside 2 THEN rtac powser_inside 4);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   682
by (auto_tac (claset(),simpset() addsimps [real_add_commute]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   683
by (EVERY1[rotate_tac 8, dtac sums_diff, assume_tac]);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   684
by (dres_inst_tac [("x","(%n. c n * (xa + x) ^ n - c n * x ^ n)"),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   685
    ("c","inverse xa")] sums_mult 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   686
by (rtac (sums_unique RS sym) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   687
by (asm_full_simp_tac (simpset() addsimps [real_diff_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   688
    real_divide_def] @ add_ac @ mult_ac) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   689
by (rtac LIM_zero_cancel 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   690
by (res_inst_tac [("g","%h. suminf (%n. c(n) * (((((x + h) ^ n) - \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   691
\   (x ^ n)) * inverse  h) - (real n * (x ^ (n - Suc 0)))))")] LIM_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   692
by (asm_full_simp_tac (simpset() addsimps [LIM_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   693
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   694
by (res_inst_tac [("x","abs K - abs x")] exI 1);
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   695
by (auto_tac (claset(),simpset() addsimps [less_diff_eq]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   696
by (dtac (abs_triangle_ineq RS order_le_less_trans) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   697
by (res_inst_tac [("y","0")] order_le_less_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   698
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   699
by (subgoal_tac "summable(%n. (diffs c)(n) * (x ^ n))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   700
by (rtac powser_inside 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   701
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   702
by (dres_inst_tac [("c","c"),("x","x")] diffs_equiv 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   703
by (ftac sums_unique 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   704
by (subgoal_tac "(%n. (c n) * (x ^ n)) sums \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   705
\           (suminf(%n. (c n) * (x ^ n))) & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   706
\       (%n. (c n) * ((x + xa) ^ n)) sums \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   707
\           (suminf(%n. (c n) * ((x + xa) ^ n)))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   708
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   709
by (auto_tac (claset() addSIs [summable_sums],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   710
by (rtac powser_inside 2 THEN rtac powser_inside 4);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   711
by (auto_tac (claset(),simpset() addsimps [real_add_commute]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   712
by (forw_inst_tac [("x","(%n. c n * (xa + x) ^ n)"),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   713
    ("y","(%n. c n * x ^ n)")] sums_diff 1 THEN assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   714
by (asm_full_simp_tac (simpset() addsimps [[sums_summable,sums_summable] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   715
    MRS suminf_diff,right_diff_distrib RS sym]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   716
by (forw_inst_tac [("x","(%n. c n * ((xa + x) ^ n - x ^ n))"),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   717
    ("c","inverse xa")] sums_mult 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   718
by (asm_full_simp_tac (simpset() addsimps [sums_summable RS suminf_mult2]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   719
by (forw_inst_tac [("x","(%n. inverse xa * (c n * ((xa + x) ^ n - x ^ n)))"),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   720
    ("y","(%n. real n * c n * x ^ (n - Suc 0))")] sums_diff 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   721
by (assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   722
by (rtac (ARITH_PROVE "z - y = x ==> - x = (y::real) - z") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   723
by (asm_full_simp_tac (simpset() addsimps [[sums_summable,sums_summable] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   724
    MRS suminf_diff] @ add_ac @ mult_ac ) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   725
by (res_inst_tac [("f","suminf")] arg_cong 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   726
by (rtac ext 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   727
by (asm_full_simp_tac (simpset() addsimps [real_diff_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   728
     right_distrib] @ add_ac @ mult_ac) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   729
(* 46 *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   730
by (dtac real_dense 1 THEN Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   731
by (ftac (real_less_sum_gt_zero) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   732
by (dres_inst_tac [("f","%n. abs(c n) * real n * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   733
\                    real (n - Suc 0) * (r ^ (n - 2))"),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   734
                   ("g","%h n. c(n) * (((((x + h) ^ n) - (x ^ n)) * inverse  h) - \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   735
\                    (real  n * (x ^ (n - Suc 0))))")] lemma_termdiff5 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   736
by (auto_tac (claset(),simpset() addsimps [real_add_commute]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   737
by (subgoal_tac "summable(%n. abs(diffs(diffs c) n) * (r ^ n))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   738
by (res_inst_tac [("x","K")] powser_insidea 2 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   739
by (subgoal_tac "abs r = r" 2 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   740
by (res_inst_tac [("j1","abs x")] (real_le_trans RS abs_eqI1) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   741
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   742
by (asm_full_simp_tac (simpset() addsimps [diffs_def,abs_mult,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   743
    real_mult_assoc RS sym]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   744
by (subgoal_tac "ALL n. real (Suc n) * real (Suc(Suc n)) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   745
\   abs(c(Suc(Suc n))) * (r ^ n) = diffs(diffs (%n. abs(c n))) n * (r ^ n)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   746
by (dres_inst_tac [("P","summable")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   747
    (CLAIM "[|ALL n. f(n) = g(n); P(%n. f n)|] ==> P(%n. g(n))") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   748
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   749
by (asm_full_simp_tac (simpset() addsimps [diffs_def]) 2
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   750
    THEN asm_full_simp_tac (simpset() addsimps [diffs_def]) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   751
by (dtac diffs_equiv 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   752
by (dtac sums_summable 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   753
by (asm_full_simp_tac (simpset() addsimps [diffs_def] @ mult_ac) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   754
by (subgoal_tac "(%n. real n * (real (Suc n) * (abs(c(Suc n)) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   755
\                 (r ^ (n - Suc 0))))) = (%n. diffs(%m. real (m - Suc 0) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   756
\                  abs(c m) * inverse r) n * (r ^ n))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   757
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   758
by (rtac ext 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   759
by (asm_full_simp_tac (simpset() addsimps [diffs_def]) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   760
by (case_tac "n" 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   761
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   762
(* 69 *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   763
by (dtac (abs_ge_zero RS order_le_less_trans) 2);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   764
by (asm_full_simp_tac (simpset() addsimps mult_ac) 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   765
by (dtac diffs_equiv 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   766
by (dtac sums_summable 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   767
by (res_inst_tac [("a","summable (%n. real n * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   768
\    (real (n - Suc 0) * abs (c n) * inverse r) * r ^ (n - Suc 0))")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   769
    (CLAIM "(a = b) ==> a ==> b") 1  THEN assume_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   770
by (res_inst_tac [("f","summable")] arg_cong 1 THEN rtac ext 1);
14266
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
   771
by (dtac (abs_ge_zero RS order_le_less_trans) 2);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   772
by (asm_full_simp_tac (simpset() addsimps mult_ac) 2);
14266
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
   773
(* 77 *)
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   774
by (case_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   775
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   776
by (case_tac "nat" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   777
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   778
by (dtac (abs_ge_zero RS order_le_less_trans) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   779
by (auto_tac (claset(),simpset() addsimps [CLAIM_SIMP 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   780
    "(a::real) * (b * (c * d)) = a * (b * c) * d"
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   781
     mult_ac]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   782
by (dtac (abs_ge_zero RS order_le_less_trans) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   783
by (asm_full_simp_tac (simpset() addsimps [abs_mult,real_mult_assoc]) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   784
by (rtac mult_left_mono 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   785
by (rtac (add_commute RS subst) 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   786
by (simp_tac (simpset() addsimps [mult_assoc RS sym]) 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   787
by (rtac lemma_termdiff3 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   788
by (auto_tac (claset() addIs [(abs_triangle_ineq RS real_le_trans)],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   789
    simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   790
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   791
qed "termdiffs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   792
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   793
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   794
(* Formal derivatives of exp, sin, and cos series                           *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   795
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   796
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   797
Goalw [diffs_def]  
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   798
      "diffs (%n. inverse(real (fact n))) = (%n. inverse(real (fact n)))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   799
by (rtac ext 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   800
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   801
by (stac real_of_nat_mult 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   802
by (stac inverse_mult_distrib 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   803
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   804
qed "exp_fdiffs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   805
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   806
Goalw [diffs_def,real_divide_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   807
      "diffs(%n. if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   808
\          else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   809
\      = (%n. if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   810
\                (- 1) ^ (n div 2)/(real (fact n)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   811
\             else 0)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   812
by (rtac ext 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   813
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   814
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   815
by (stac even_Suc 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   816
by (stac inverse_mult_distrib 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   817
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   818
qed "sin_fdiffs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   819
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   820
Goalw  [diffs_def,real_divide_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   821
       "diffs(%n. if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   822
\          else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) n \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   823
\      = (if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   824
\                (- 1) ^ (n div 2)/(real (fact n)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   825
\             else 0)";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   826
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   827
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   828
by (stac even_Suc 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   829
by (stac inverse_mult_distrib 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   830
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   831
qed "sin_fdiffs2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   832
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   833
(* thms in EvenOdd needed *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   834
Goalw [diffs_def,real_divide_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   835
      "diffs(%n. if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   836
\                (- 1) ^ (n div 2)/(real (fact n)) else 0) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   837
\      = (%n. - (if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   838
\          else (- 1) ^ ((n - Suc 0)div 2)/(real (fact n))))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   839
by (rtac ext 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   840
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   841
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   842
by (stac even_Suc 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   843
by (stac inverse_mult_distrib 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   844
by (res_inst_tac [("z1","real (Suc n)")] (real_mult_commute RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   845
by (res_inst_tac [("z1","inverse(real (Suc n))")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   846
     (real_mult_commute RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   847
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   848
    odd_not_even RS sym,odd_Suc_mult_two_ex]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   849
qed "cos_fdiffs";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   850
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   851
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   852
Goalw [diffs_def,real_divide_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   853
      "diffs(%n. if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   854
\                (- 1) ^ (n div 2)/(real (fact n)) else 0) n\
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   855
\      = - (if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   856
\          else (- 1) ^ ((n - Suc 0)div 2)/(real (fact n)))";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   857
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   858
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   859
by (stac even_Suc 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   860
by (stac inverse_mult_distrib 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   861
by (res_inst_tac [("z1","real (Suc n)")] (real_mult_commute RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   862
by (res_inst_tac [("z1","inverse (real (Suc n))")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   863
     (real_mult_commute RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   864
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   865
    odd_not_even RS sym,odd_Suc_mult_two_ex]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   866
qed "cos_fdiffs2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   867
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   868
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   869
(* Now at last we can get the derivatives of exp, sin and cos               *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   870
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   871
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   872
Goal "- sin x = suminf(%n. - ((if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   873
\    else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) * x ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   874
by (auto_tac (claset() addSIs [sums_unique,sums_minus,sin_converges],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   875
    simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   876
qed "lemma_sin_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   877
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   878
Goal "exp = (%x. suminf (%n. inverse (real (fact n)) * x ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   879
by (auto_tac (claset() addSIs [ext],simpset() addsimps [exp_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   880
val lemma_exp_ext = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   881
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   882
Goalw [exp_def] "DERIV exp x :> exp(x)";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   883
by (stac lemma_exp_ext 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   884
by (subgoal_tac "DERIV (%u. suminf (%n. inverse (real (fact n)) * u ^ n)) x \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   885
\    :> suminf (%n. diffs (%n. inverse (real (fact n))) n * x ^ n)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   886
by (res_inst_tac [("K","1 + abs(x)")] termdiffs 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   887
by (auto_tac (claset() addIs [exp_converges RS sums_summable],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   888
    simpset() addsimps [exp_fdiffs]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   889
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   890
qed "DERIV_exp";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   891
Addsimps [DERIV_exp];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   892
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   893
Goal "sin = (%x. suminf(%n. (if even n then 0 \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   894
\           else (- 1) ^ ((n - Suc 0) div 2)/(real (fact n))) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   895
\                x ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   896
by (auto_tac (claset() addSIs [ext],simpset() addsimps [sin_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   897
val lemma_sin_ext = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   898
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   899
Goal "cos = (%x. suminf(%n. (if even n then \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   900
\          (- 1) ^ (n div 2)/(real (fact n)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   901
\          else 0) * x ^ n))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   902
by (auto_tac (claset() addSIs [ext],simpset() addsimps [cos_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   903
val lemma_cos_ext = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   904
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   905
Goalw [cos_def] "DERIV sin x :> cos(x)";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   906
by (stac lemma_sin_ext 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   907
by (auto_tac (claset(),simpset() addsimps [sin_fdiffs2 RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   908
by (res_inst_tac [("K","1 + abs(x)")] termdiffs 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   909
by (auto_tac (claset() addIs [sin_converges, cos_converges, sums_summable] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   910
    addSIs [sums_minus RS sums_summable],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   911
    simpset() addsimps [cos_fdiffs,sin_fdiffs]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   912
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   913
qed "DERIV_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   914
Addsimps [DERIV_sin];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   915
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   916
Goal "DERIV cos x :> -sin(x)";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
   917
by (stac lemma_cos_ext 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   918
by (auto_tac (claset(),simpset() addsimps [lemma_sin_minus,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   919
    cos_fdiffs2 RS sym,minus_mult_left]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   920
by (res_inst_tac [("K","1 + abs(x)")] termdiffs 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   921
by (auto_tac (claset() addIs [sin_converges,cos_converges, sums_summable] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   922
    addSIs [sums_minus RS sums_summable],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   923
    simpset() addsimps [cos_fdiffs,sin_fdiffs,diffs_minus]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   924
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   925
qed "DERIV_cos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   926
Addsimps [DERIV_cos];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   927
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   928
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   929
(* Properties of the exponential function                                   *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   930
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   931
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   932
Goalw [exp_def] "exp 0 = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   933
by (rtac (CLAIM_SIMP "sumr 0 1 (%n. inverse (real (fact n)) * 0 ^ n) = 1" 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   934
           [real_of_nat_one] RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   935
by (rtac ((series_zero RS sums_unique) RS sym) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   936
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   937
by (case_tac "m" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   938
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   939
qed "exp_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   940
Addsimps [exp_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   941
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   942
Goal "0 <= x ==> (1 + x) <= exp(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   943
by (dtac real_le_imp_less_or_eq 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   944
by (rewtac exp_def);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   945
by (rtac real_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   946
by (res_inst_tac [("n","2"),("f","(%n. inverse (real (fact n)) * x ^ n)")]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   947
    series_pos_le 2);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   948
by (auto_tac (claset() addIs [summable_exp],simpset()
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
   949
    addsimps [numeral_2_eq_2,zero_le_power,zero_le_mult_iff]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   950
qed "exp_ge_add_one_self";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   951
Addsimps [exp_ge_add_one_self];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   952
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   953
Goal "0 < x ==> 1 < exp x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   954
by (rtac order_less_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   955
by (rtac exp_ge_add_one_self 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   956
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   957
qed "exp_gt_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   958
Addsimps [exp_gt_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   959
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   960
Goal "DERIV (%x. exp (x + y)) x :> exp(x + y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   961
by (auto_tac (claset(),simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   962
    [CLAIM_SIMP "(%x. exp (x + y)) = exp o (%x. x + y)" [ext]]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   963
by (rtac (real_mult_1_right RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   964
by (rtac DERIV_chain 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   965
by (rtac (add_zero_right RS subst) 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   966
by (rtac DERIV_add 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   967
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   968
qed "DERIV_exp_add_const";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   969
Addsimps [DERIV_exp_add_const];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   970
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   971
Goal "DERIV (%x. exp (-x)) x :> - exp(-x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   972
by (auto_tac (claset(),simpset() addsimps
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   973
    [CLAIM_SIMP "(%x. exp(-x)) = exp o (%x. - x)" [ext]]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   974
by (rtac (real_mult_1_right RS subst) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   975
by (rtac (minus_mult_left RS subst) 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   976
by (stac minus_mult_right 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   977
by (rtac DERIV_chain 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   978
by (rtac DERIV_minus 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   979
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   980
qed "DERIV_exp_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   981
Addsimps [DERIV_exp_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   982
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   983
Goal "DERIV (%x. exp (x + y) * exp (- x)) x :> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   984
by (cut_inst_tac [("x","x"),("y2","y")] ([DERIV_exp_add_const,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   985
    DERIV_exp_minus] MRS DERIV_mult) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
   986
by (auto_tac (claset(),simpset() addsimps mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   987
qed "DERIV_exp_exp_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   988
Addsimps [DERIV_exp_exp_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   989
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   990
Goal "exp(x + y)*exp(-x) = exp(y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   991
by (cut_inst_tac [("x","x"),("y2","y"),("y","0")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   992
    ((CLAIM "ALL x. DERIV (%x. exp (x + y) * exp (- x)) x :> 0") RS
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   993
      DERIV_isconst_all) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   994
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   995
qed "exp_add_mult_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   996
Addsimps [exp_add_mult_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   997
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   998
Goal "exp(x)*exp(-x) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
   999
by (cut_inst_tac [("x","x"),("y","0")] exp_add_mult_minus 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1000
by (Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1001
qed "exp_mult_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1002
Addsimps [exp_mult_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1003
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1004
Goal "exp(-x)*exp(x) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1005
by (simp_tac (simpset() addsimps [real_mult_commute]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1006
qed "exp_mult_minus2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1007
Addsimps [exp_mult_minus2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1008
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1009
Goal "exp(-x) = inverse(exp(x))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1010
by (auto_tac (claset() addIs [real_inverse_unique],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1011
qed "exp_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1012
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1013
Goal "exp(x + y) = exp(x) * exp(y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1014
by (cut_inst_tac [("x1","x"),("y1","y"),("z","exp x")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1015
    (exp_add_mult_minus RS (CLAIM "x = y ==> z * y = z * (x::real)")) 1);
14266
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
  1016
by (asm_full_simp_tac HOL_ss 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1017
by (asm_full_simp_tac (simpset() delsimps [exp_add_mult_minus] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1018
    addsimps mult_ac) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1019
qed "exp_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1020
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1021
Goal "0 <= exp x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1022
by (res_inst_tac [("t","x")] (real_sum_of_halves RS subst) 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1023
by (stac exp_add 1 THEN Auto_tac);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1024
qed "exp_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1025
Addsimps [exp_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1026
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1027
Goal "exp x ~= 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1028
by (cut_inst_tac [("x","x")] exp_mult_minus2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1029
by (auto_tac (claset(),simpset() delsimps [exp_mult_minus2]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1030
qed "exp_not_eq_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1031
Addsimps [exp_not_eq_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1032
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1033
Goal "0 < exp x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1034
by (simp_tac (simpset() addsimps 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1035
    [CLAIM_SIMP "(x < y) = (x <= y & y ~= (x::real))" [order_le_less]]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1036
qed "exp_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1037
Addsimps [exp_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1038
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1039
Goal "0 < inverse(exp x)";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1040
by (auto_tac (claset() addIs [positive_imp_inverse_positive],simpset()));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1041
qed "inv_exp_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1042
Addsimps [inv_exp_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1043
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1044
Goal "abs(exp x) = exp x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1045
by (auto_tac (claset(),simpset() addsimps [abs_eqI2]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1046
qed "abs_exp_cancel";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1047
Addsimps [abs_exp_cancel];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1048
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1049
Goal "exp(real n * x) = exp(x) ^ n";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1050
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1051
by (auto_tac (claset(),simpset() addsimps [real_of_nat_Suc,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1052
    right_distrib,exp_add,real_mult_commute]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1053
qed "exp_real_of_nat_mult";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1054
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1055
Goalw [real_diff_def,real_divide_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1056
       "exp(x - y) = exp(x)/(exp y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1057
by (simp_tac (simpset() addsimps [exp_add,exp_minus]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1058
qed "exp_diff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1059
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1060
Goal "x < y ==> exp x < exp y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1061
by (dtac ((real_less_sum_gt_zero) RS exp_gt_one) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1062
by (multr_by_tac "inverse(exp x)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1063
by (auto_tac (claset(),simpset() addsimps [exp_add,exp_minus]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1064
qed "exp_less_mono";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1065
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1066
Goal "exp x < exp y ==> x < y";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1067
by (EVERY1[rtac ccontr, dtac (linorder_not_less RS iffD1), dtac real_le_imp_less_or_eq]);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1068
by (auto_tac (claset() addDs [exp_less_mono],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1069
qed "exp_less_cancel";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1070
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1071
Goal "(exp(x) < exp(y)) = (x < y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1072
by (auto_tac (claset() addIs [exp_less_mono,exp_less_cancel],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1073
qed "exp_less_cancel_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1074
AddIffs [exp_less_cancel_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1075
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1076
Goal "(exp(x) <= exp(y)) = (x <= y)";
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1077
by (auto_tac (claset(), simpset() addsimps [linorder_not_less RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1078
qed "exp_le_cancel_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1079
AddIffs [exp_le_cancel_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1080
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1081
Goal "(exp x = exp y) = (x = y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1082
by (auto_tac (claset(),simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1083
    [CLAIM "(x = (y::real)) = (x <= y & y <= x)"]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1084
qed "exp_inj_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1085
AddIffs [exp_inj_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1086
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1087
Goal "1 <= y ==> EX x. 0 <= x & x <= y - 1 & exp(x) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1088
by (rtac IVT 1);
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1089
by (auto_tac (claset() addIs [DERIV_exp RS DERIV_isCont],
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1090
              simpset() addsimps [le_diff_eq]));
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1091
by (dtac (CLAIM_SIMP "x <= y ==> (0::real) <= y - x" [le_diff_eq]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1092
by (dtac exp_ge_add_one_self 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1093
by (Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1094
qed "lemma_exp_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1095
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1096
Goal "0 < y ==> EX x. exp x = y";
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1097
by (res_inst_tac [("x","1"),("y","y")] linorder_cases 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1098
by (dtac (order_less_imp_le RS lemma_exp_total) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1099
by (res_inst_tac [("x","0")] exI 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1100
by (ftac real_inverse_gt_one 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1101
by (dtac (order_less_imp_le RS lemma_exp_total) 4);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1102
by (Step_tac 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1103
by (res_inst_tac [("x","-x")] exI 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1104
by (auto_tac (claset(),simpset() addsimps [exp_minus]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1105
qed "exp_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1106
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1107
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1108
(* Properties of the logarithmic function                                   *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1109
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1110
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1111
Goalw [ln_def] "ln(exp x) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1112
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1113
qed "ln_exp";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1114
Addsimps [ln_exp];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1115
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1116
Goal "(exp(ln x) = x) = (0 < x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1117
by (auto_tac (claset() addDs [exp_total],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1118
by (dtac subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1119
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1120
qed "exp_ln_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1121
Addsimps [exp_ln_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1122
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1123
Goal "[| 0 < x; 0 < y |] ==> ln(x * y) = ln(x) + ln(y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1124
by (rtac (exp_inj_iff RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1125
by (ftac (real_mult_order) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1126
by (auto_tac (claset(),simpset() addsimps [exp_add,exp_ln_iff RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1127
    delsimps [exp_inj_iff,exp_ln_iff]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1128
qed "ln_mult";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1129
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1130
Goal "[| 0 < x; 0 < y |] ==> (ln x = ln y) = (x = y)";
13601
fd3e3d6b37b2 Adapted to new simplifier.
berghofe
parents: 13097
diff changeset
  1131
by (auto_tac (claset() addSDs [(exp_ln_iff RS iffD2 RS sym)],simpset()));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1132
qed "ln_inj_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1133
Addsimps [ln_inj_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1134
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1135
Goal "ln 1 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1136
by (rtac (exp_inj_iff RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1137
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1138
qed "ln_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1139
Addsimps [ln_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1140
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1141
Goal "0 < x ==> ln(inverse x) = - ln x";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1142
by (res_inst_tac [("a1","ln x")] (add_left_cancel RS iffD1) 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1143
by (auto_tac (claset(),simpset() addsimps [positive_imp_inverse_positive,ln_mult RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1144
qed "ln_inverse";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1145
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1146
Goalw [real_divide_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1147
    "[|0 < x; 0 < y|] ==> ln(x/y) = ln x - ln y";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1148
by (auto_tac (claset(),simpset() addsimps [positive_imp_inverse_positive,
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1149
    ln_mult,ln_inverse]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1150
qed "ln_div";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1151
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1152
Goal "[| 0 < x; 0 < y|] ==> (ln x < ln y) = (x < y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1153
by (REPEAT(dtac (exp_ln_iff RS iffD2) 1));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1154
by (REPEAT(dtac subst 1 THEN assume_tac 2));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1155
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1156
qed "ln_less_cancel_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1157
Addsimps [ln_less_cancel_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1158
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1159
Goal "[| 0 < x; 0 < y|] ==> (ln x <= ln y) = (x <= y)";
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1160
by (auto_tac (claset(), simpset() addsimps [linorder_not_less RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1161
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1162
qed "ln_le_cancel_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1163
Addsimps [ln_le_cancel_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1164
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1165
Goal "0 < x ==> ln(x ^ n) = real n * ln(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1166
by (auto_tac (claset() addSDs [exp_total],simpset() 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1167
    addsimps [exp_real_of_nat_mult RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1168
qed "ln_realpow";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1169
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1170
Goal "0 <= x ==> ln(1 + x) <= x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1171
by (rtac (ln_exp RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1172
by (rtac (ln_le_cancel_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1173
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1174
qed "ln_add_one_self_le_self";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1175
Addsimps [ln_add_one_self_le_self];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1176
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1177
Goal "0 < x ==> ln x < x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1178
by (rtac order_less_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1179
by (rtac ln_add_one_self_le_self 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1180
by (rtac (ln_less_cancel_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1181
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1182
qed "ln_less_self";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1183
Addsimps [ln_less_self];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1184
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1185
Goal "1 <= x ==> 0 <= ln x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1186
by (subgoal_tac "0 < x" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1187
by (rtac order_less_le_trans 2 THEN assume_tac 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1188
by (rtac (exp_le_cancel_iff RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1189
by (auto_tac (claset(),simpset() addsimps 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1190
    [exp_ln_iff RS sym] delsimps [exp_ln_iff]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1191
qed "ln_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1192
Addsimps [ln_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1193
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1194
Goal "1 < x ==> 0 < ln x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1195
by (rtac (exp_less_cancel_iff RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1196
by (rtac (exp_ln_iff RS iffD2 RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1197
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1198
qed "ln_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1199
Addsimps [ln_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1200
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1201
Goal "[| 0 < x; x ~= 1 |] ==> ln x ~= 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1202
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1203
by (dtac (exp_inj_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1204
by (dtac (exp_ln_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1205
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1206
qed "ln_not_eq_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1207
Addsimps [ln_not_eq_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1208
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1209
Goal "[| 0 < x; x < 1 |] ==> ln x < 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1210
by (rtac (exp_less_cancel_iff RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1211
by (auto_tac (claset(),simpset() addsimps [exp_ln_iff RS sym]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1212
    delsimps [exp_ln_iff]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1213
qed "ln_less_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1214
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1215
Goal "exp u = x ==> ln x = u";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1216
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1217
qed "exp_ln_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1218
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1219
Addsimps [hypreal_less_not_refl];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1220
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1221
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1222
(* Basic properties of the trig functions                                   *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1223
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1224
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1225
Goalw [sin_def] "sin 0 = 0";
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1226
by (auto_tac (claset() addSIs [sums_unique RS sym, LIMSEQ_const],
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1227
              simpset() addsimps [sums_def] delsimps [power_0_left]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1228
qed "sin_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1229
Addsimps [sin_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1230
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1231
Goal "(ALL m. n <= m --> f m = 0) --> f sums sumr 0 n f";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1232
by (auto_tac (claset() addIs [series_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1233
qed "lemma_series_zero2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1234
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1235
Goalw [cos_def] "cos 0 = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1236
by (rtac (sums_unique RS sym) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1237
by (cut_inst_tac [("n","1"),("f","(%n. (if even n then (- 1) ^ (n div 2)/ \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1238
\   (real (fact n)) else 0) * 0 ^ n)")] lemma_series_zero2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1239
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1240
qed "cos_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1241
Addsimps [cos_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1242
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1243
Goal "DERIV (%x. sin(x)*sin(x)) x :> cos(x) * sin(x) + cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1244
by (rtac DERIV_mult 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1245
qed "DERIV_sin_sin_mult";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1246
Addsimps [DERIV_sin_sin_mult];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1247
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1248
Goal "DERIV (%x. sin(x)*sin(x)) x :> 2 * cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1249
by (cut_inst_tac [("x","x")] DERIV_sin_sin_mult 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1250
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1251
qed "DERIV_sin_sin_mult2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1252
Addsimps [DERIV_sin_sin_mult2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1253
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1254
Goal "DERIV (%x. sin(x) ^ 2) x :> cos(x) * sin(x) + cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1255
by (auto_tac (claset(),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1256
              simpset() addsimps [numeral_2_eq_2, real_mult_assoc RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1257
qed "DERIV_sin_realpow2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1258
Addsimps [DERIV_sin_realpow2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1259
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1260
Goal "DERIV (%x. sin(x) ^ 2) x :> 2 * cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1261
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1262
qed "DERIV_sin_realpow2a";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1263
Addsimps [ DERIV_sin_realpow2a];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1264
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1265
Goal "DERIV (%x. cos(x)*cos(x)) x :> -sin(x) * cos(x) + -sin(x) * cos(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1266
by (rtac DERIV_mult 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1267
qed "DERIV_cos_cos_mult";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1268
Addsimps [DERIV_cos_cos_mult];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1269
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1270
Goal "DERIV (%x. cos(x)*cos(x)) x :> -2 * cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1271
by (cut_inst_tac [("x","x")] DERIV_cos_cos_mult 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1272
by (auto_tac (claset(),simpset() addsimps mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1273
qed "DERIV_cos_cos_mult2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1274
Addsimps [DERIV_cos_cos_mult2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1275
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1276
Goal "DERIV (%x. cos(x) ^ 2) x :> -sin(x) * cos(x) + -sin(x) * cos(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1277
by (auto_tac (claset(),
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1278
              simpset() addsimps [numeral_2_eq_2, real_mult_assoc RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1279
qed "DERIV_cos_realpow2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1280
Addsimps [DERIV_cos_realpow2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1281
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1282
Goal "DERIV (%x. cos(x) ^ 2) x :> -2 * cos(x) * sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1283
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1284
qed "DERIV_cos_realpow2a";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1285
Addsimps [DERIV_cos_realpow2a];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1286
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1287
Goal "[| DERIV f x :> D; D = E |] ==> DERIV f x :> E";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1288
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1289
val lemma_DERIV_subst = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1290
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1291
Goal "DERIV (%x. cos(x) ^ 2) x :> -(2 * cos(x) * sin(x))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1292
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1293
by (rtac DERIV_cos_realpow2a 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1294
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1295
qed "DERIV_cos_realpow2b";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1296
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1297
(* most useful *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1298
Goal "DERIV (%x. cos(x)*cos(x)) x :> -(2 * cos(x) * sin(x))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1299
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1300
by (rtac DERIV_cos_cos_mult2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1301
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1302
qed "DERIV_cos_cos_mult3";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1303
Addsimps [DERIV_cos_cos_mult3];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1304
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1305
Goalw [real_diff_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1306
     "ALL x. DERIV (%x. sin(x) ^ 2 + cos(x) ^ 2) x :> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1307
\            (2*cos(x)*sin(x) - 2*cos(x)*sin(x))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1308
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1309
by (rtac DERIV_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1310
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1311
qed "DERIV_sin_circle_all";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1312
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1313
Goal "ALL x. DERIV (%x. sin(x) ^ 2 + cos(x) ^ 2) x :> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1314
by (cut_facts_tac [DERIV_sin_circle_all] 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1315
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1316
qed "DERIV_sin_circle_all_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1317
Addsimps [DERIV_sin_circle_all_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1318
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1319
Goal "(sin(x) ^ 2) + (cos(x) ^ 2) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1320
by (cut_inst_tac [("x","x"),("y","0")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1321
    (DERIV_sin_circle_all_zero RS DERIV_isconst_all) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1322
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1323
qed "sin_cos_squared_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1324
Addsimps [sin_cos_squared_add];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1325
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1326
Goal "(cos(x) ^ 2) + (sin(x) ^ 2) = 1";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1327
by (stac real_add_commute 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1328
by (simp_tac (simpset() delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1329
qed "sin_cos_squared_add2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1330
Addsimps [sin_cos_squared_add2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1331
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1332
Goal "cos x * cos x + sin x * sin x = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1333
by (cut_inst_tac [("x","x")] sin_cos_squared_add2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1334
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1335
qed "sin_cos_squared_add3";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1336
Addsimps [sin_cos_squared_add3];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1337
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1338
Goal "(sin(x) ^ 2) = 1 - (cos(x) ^ 2)";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1339
by (res_inst_tac [("a1","(cos(x) ^ 2)")] (add_right_cancel RS iffD1) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1340
by (simp_tac (simpset() delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1341
qed "sin_squared_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1342
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1343
Goal "(cos(x) ^ 2) = 1 - (sin(x) ^ 2)";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1344
by (res_inst_tac [("a1","(sin(x) ^ 2)")] (add_right_cancel RS iffD1) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1345
by (simp_tac (simpset() delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1346
qed "cos_squared_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1347
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1348
Goal "[| 1 < x; 0 <= y |] ==> 1 < x + (y::real)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1349
by (arith_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1350
qed "real_gt_one_ge_zero_add_less";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1351
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1352
Goal "abs(sin x) <= 1";
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1353
by (auto_tac (claset(), simpset() addsimps [linorder_not_less RS sym]));
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1354
by (dres_inst_tac [("n","Suc 0")] power_gt1 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1355
by (auto_tac (claset(),simpset() delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1356
by (dres_inst_tac [("r1","cos x")] (realpow_two_le RSN 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1357
    (2, real_gt_one_ge_zero_add_less)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1358
by (asm_full_simp_tac (simpset() addsimps [numeral_2_eq_2 RS sym]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1359
				 delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1360
qed "abs_sin_le_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1361
Addsimps [abs_sin_le_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1362
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1363
Goal "- 1 <= sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1364
by (full_simp_tac (simpset() addsimps [simplify (simpset()) (abs_sin_le_one RS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1365
    (abs_le_interval_iff RS iffD1))]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1366
qed "sin_ge_minus_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1367
Addsimps [sin_ge_minus_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1368
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1369
Goal "-1 <= sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1370
by (rtac (simplify (simpset()) sin_ge_minus_one) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1371
qed "sin_ge_minus_one2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1372
Addsimps [sin_ge_minus_one2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1373
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1374
Goal "sin x <= 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1375
by (full_simp_tac (simpset() addsimps [abs_sin_le_one RS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1376
    (abs_le_interval_iff RS iffD1)]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1377
qed "sin_le_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1378
Addsimps [sin_le_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1379
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1380
Goal "abs(cos x) <= 1";
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1381
by (auto_tac (claset(), simpset() addsimps [linorder_not_less RS sym]));
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1382
by (dres_inst_tac [("n","Suc 0")] power_gt1 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1383
by (auto_tac (claset(),simpset() delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1384
by (dres_inst_tac [("r1","sin x")] (realpow_two_le RSN 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1385
    (2, real_gt_one_ge_zero_add_less)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1386
by (asm_full_simp_tac (simpset() addsimps [numeral_2_eq_2 RS sym]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1387
				 delsimps [realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1388
qed "abs_cos_le_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1389
Addsimps [abs_cos_le_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1390
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1391
Goal "- 1 <= cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1392
by (full_simp_tac (simpset() addsimps [simplify (simpset())(abs_cos_le_one RS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1393
    (abs_le_interval_iff RS iffD1))]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1394
qed "cos_ge_minus_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1395
Addsimps [cos_ge_minus_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1396
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1397
Goal "-1 <= cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1398
by (rtac (simplify (simpset()) cos_ge_minus_one) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1399
qed "cos_ge_minus_one2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1400
Addsimps [cos_ge_minus_one2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1401
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1402
Goal "cos x <= 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1403
by (full_simp_tac (simpset() addsimps [abs_cos_le_one RS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1404
    (abs_le_interval_iff RS iffD1)]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1405
qed "cos_le_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1406
Addsimps [cos_le_one];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1407
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1408
Goal "DERIV g x :> m ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1409
\     DERIV (%x. (g x) ^ n) x :> real n * (g x) ^ (n - 1) * m";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1410
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1411
by (res_inst_tac [("f","(%x. x ^ n)")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1412
by (rtac DERIV_pow 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1413
qed "DERIV_fun_pow";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1414
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1415
Goal "DERIV g x :> m ==> DERIV (%x. exp(g x)) x :> exp(g x) * m";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1416
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1417
by (res_inst_tac [("f","exp")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1418
by (rtac DERIV_exp 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1419
qed "DERIV_fun_exp";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1420
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1421
Goal "DERIV g x :> m ==> DERIV (%x. sin(g x)) x :> cos(g x) * m";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1422
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1423
by (res_inst_tac [("f","sin")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1424
by (rtac DERIV_sin 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1425
qed "DERIV_fun_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1426
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1427
Goal "DERIV g x :> m ==> DERIV (%x. cos(g x)) x :> -sin(g x) * m";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1428
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1429
by (res_inst_tac [("f","cos")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1430
by (rtac DERIV_cos 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1431
qed "DERIV_fun_cos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1432
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1433
(* FIXME: remove this quick, crude tactic *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1434
exception DERIV_name;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1435
fun get_fun_name (_ $ (Const ("Lim.deriv",_) $ Abs(_,_, Const (f,_) $ _) $ _ $ _)) = f
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1436
|   get_fun_name (_ $ (_ $ (Const ("Lim.deriv",_) $ Abs(_,_, Const (f,_) $ _) $ _ $ _))) = f
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1437
|   get_fun_name _ = raise DERIV_name;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1438
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1439
val deriv_rulesI = [DERIV_Id,DERIV_const,DERIV_cos,DERIV_cmult,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1440
                    DERIV_sin, DERIV_exp, DERIV_inverse,DERIV_pow,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1441
                    DERIV_add, DERIV_diff, DERIV_mult, DERIV_minus,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1442
                    DERIV_inverse_fun,DERIV_quotient,DERIV_fun_pow,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1443
                    DERIV_fun_exp,DERIV_fun_sin,DERIV_fun_cos,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1444
                    DERIV_Id,DERIV_const,DERIV_cos];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1445
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1446
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1447
fun deriv_tac i = (resolve_tac deriv_rulesI i) ORELSE 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1448
                   ((rtac (read_instantiate [("f",get_fun_name (getgoal i))] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1449
                     DERIV_chain2) i) handle DERIV_name => no_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1450
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1451
val DERIV_tac = ALLGOALS(fn i => REPEAT(deriv_tac i));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1452
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1453
(* lemma *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1454
Goal "ALL x. \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1455
\        DERIV (%x. (sin (x + y) - (sin x * cos y + cos x * sin y)) ^ 2 + \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1456
\              (cos (x + y) - (cos x * cos y - sin x * sin y)) ^ 2) x :> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1457
by (Step_tac 1 THEN rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1458
by DERIV_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1459
by (auto_tac (claset(),simpset() addsimps [real_diff_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1460
    left_distrib,right_distrib] @ 
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1461
    mult_ac @ add_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1462
val lemma_DERIV_sin_cos_add = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1463
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1464
Goal "(sin (x + y) - (sin x * cos y + cos x * sin y)) ^ 2 + \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1465
\     (cos (x + y) - (cos x * cos y - sin x * sin y)) ^ 2 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1466
by (cut_inst_tac [("y","0"),("x","x"),("y7","y")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1467
    (lemma_DERIV_sin_cos_add RS DERIV_isconst_all) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1468
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1469
qed "sin_cos_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1470
Addsimps [sin_cos_add];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1471
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1472
Goal "sin (x + y) = sin x * cos y + cos x * sin y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1473
by (cut_inst_tac [("x","x"),("y","y")] sin_cos_add 1); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1474
by (auto_tac (claset() addSDs [real_sum_squares_cancel_a],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1475
         simpset()  addsimps [numeral_2_eq_2] delsimps [sin_cos_add]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1476
qed "sin_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1477
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1478
Goal "cos (x + y) = cos x * cos y - sin x * sin y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1479
by (cut_inst_tac [("x","x"),("y","y")] sin_cos_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1480
by (auto_tac (claset() addSDs [real_sum_squares_cancel_a],simpset() addsimps [numeral_2_eq_2] delsimps [sin_cos_add]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1481
qed "cos_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1482
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1483
Goal "ALL x. \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1484
\         DERIV (%x. (sin(-x) + (sin x)) ^ 2 + (cos(-x) - (cos x)) ^ 2) x :> 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1485
by (Step_tac 1 THEN rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1486
by DERIV_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1487
by (auto_tac (claset(),simpset() addsimps [real_diff_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1488
    left_distrib,right_distrib]
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1489
    @ mult_ac @ add_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1490
val lemma_DERIV_sin_cos_minus = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1491
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1492
Goal "(sin(-x) + (sin x)) ^ 2 + (cos(-x) - (cos x)) ^ 2 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1493
by (cut_inst_tac [("y","0"),("x","x")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1494
    (lemma_DERIV_sin_cos_minus RS DERIV_isconst_all) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1495
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1496
qed "sin_cos_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1497
Addsimps [sin_cos_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1498
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1499
Goal "sin (-x) = -sin(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1500
by (cut_inst_tac [("x","x")] sin_cos_minus 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1501
by (auto_tac (claset() addSDs [real_sum_squares_cancel_a],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1502
              simpset() addsimps [numeral_2_eq_2] delsimps [sin_cos_minus]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1503
qed "sin_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1504
Addsimps [sin_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1505
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1506
Goal "cos (-x) = cos(x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1507
by (cut_inst_tac [("x","x")] sin_cos_minus 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1508
by (auto_tac (claset() addSDs [real_sum_squares_cancel_a],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1509
              simpset() addsimps [numeral_2_eq_2] delsimps [sin_cos_minus]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1510
qed "cos_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1511
Addsimps [cos_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1512
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1513
Goalw [real_diff_def] "sin (x - y) = sin x * cos y - cos x * sin y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1514
by (simp_tac (simpset() addsimps [sin_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1515
qed "sin_diff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1516
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1517
Goal "sin (x - y) = cos y * sin x - sin y * cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1518
by (simp_tac (simpset() addsimps [sin_diff,real_mult_commute]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1519
qed "sin_diff2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1520
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1521
Goalw [real_diff_def] "cos (x - y) = cos x * cos y + sin x * sin y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1522
by (simp_tac (simpset() addsimps [cos_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1523
qed "cos_diff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1524
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1525
Goal "cos (x - y) = cos y * cos x + sin y * sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1526
by (simp_tac (simpset() addsimps [cos_diff,real_mult_commute]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1527
qed "cos_diff2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1528
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1529
Goal "sin(2 * x) = 2* sin x * cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1530
by (cut_inst_tac [("x","x"),("y","x")] sin_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1531
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1532
qed "sin_double";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1533
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1534
Addsimps [sin_double];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1535
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1536
Goal "cos(2* x) = (cos(x) ^ 2) - (sin(x) ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1537
by (cut_inst_tac [("x","x"),("y","x")] cos_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1538
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1539
qed "cos_double";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1540
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1541
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1542
(* Show that there's a least positive x with cos(x) = 0; hence define pi    *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1543
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1544
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1545
Goal "(%n. (- 1) ^ n /(real (fact (2 * n + 1))) * \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1546
\      x ^ (2 * n + 1)) sums  sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1547
by (cut_inst_tac [("x2","x")] (CLAIM "0 < (2::nat)" RS ((sin_converges 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1548
    RS sums_summable) RS sums_group)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1549
by (auto_tac (claset(),simpset() addsimps mult_ac@[sin_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1550
qed "sin_paired";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1551
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1552
Goal "real (Suc (Suc (Suc (Suc 2)))) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1553
\     real (2::nat) * real (Suc 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1554
by (simp_tac (simpset() addsimps [numeral_2_eq_2, real_of_nat_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1555
val lemma_real_of_nat_six_mult = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1556
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1557
Goal "[|0 < x; x < 2 |] ==> 0 < sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1558
by (cut_inst_tac [("x2","x")] (CLAIM "0 < (2::nat)" RS ((sin_paired
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1559
    RS sums_summable) RS sums_group)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1560
by (rotate_tac 2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1561
by (dtac ((sin_paired RS sums_unique) RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1562
by (auto_tac (claset(),simpset() delsimps [fact_Suc,realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1563
by (ftac sums_unique 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1564
by (auto_tac (claset(),simpset() delsimps [fact_Suc,realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1565
by (res_inst_tac [("n1","0")] (series_pos_less RSN (2,order_le_less_trans)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1566
by (auto_tac (claset(),simpset() delsimps [fact_Suc,realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1567
by (etac sums_summable 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1568
by (case_tac "m=0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1569
by (Asm_simp_tac 1);
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1570
by (subgoal_tac "6 * (x * (x * x) / real (Suc (Suc (Suc (Suc (Suc (Suc 0))))))) < 6 * x" 1); 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1571
by (asm_full_simp_tac (HOL_ss addsimps [mult_less_cancel_left]) 1); 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1572
by (asm_full_simp_tac (simpset() addsimps []) 1); 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1573
by (asm_simp_tac (simpset() addsimps [numeral_2_eq_2 RS sym, real_mult_assoc RS sym]) 1);
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1574
by (stac (CLAIM "6 = 2 * (3::real)") 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1575
by (rtac real_mult_less_mono 1); (*mult_strict_mono would be stronger*)  
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1576
by (auto_tac (claset(),simpset() addsimps [real_of_nat_Suc] delsimps [fact_Suc]));
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1577
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1578
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1579
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1580
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1581
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1582
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1583
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1584
by (stac real_of_nat_mult 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1585
by (simp_tac (simpset() addsimps [real_divide_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1586
    inverse_mult_distrib] delsimps [fact_Suc]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1587
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1588
    delsimps [fact_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1589
by (multr_by_tac "real (Suc (Suc (4*m)))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1590
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1591
    delsimps [fact_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1592
by (multr_by_tac "real (Suc (Suc (Suc (4*m))))" 1);
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1593
by (auto_tac (claset(),simpset() addsimps [mult_assoc,mult_less_cancel_left] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1594
    delsimps [fact_Suc]));
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1595
by (auto_tac (claset(),simpset() addsimps [
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1596
        CLAIM "x * (x * x ^ (4*m)) = (x ^ (4*m)) * (x * (x::real))"] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1597
    delsimps [fact_Suc]));
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1598
by (subgoal_tac "0 < x ^ (4 * m)" 1);
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1599
by (asm_simp_tac (simpset() addsimps [zero_less_power]) 2); 
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1600
by (asm_simp_tac (simpset() addsimps [mult_less_cancel_left]) 1); 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1601
by (rtac real_mult_less_mono 1); (*mult_strict_mono would be stronger*)
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1602
by (ALLGOALS(Asm_simp_tac));
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1603
by (TRYALL(rtac order_less_trans));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1604
by (auto_tac (claset(),simpset() addsimps [real_of_nat_Suc] delsimps [fact_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1605
qed "sin_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1606
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1607
Goal "[|0 < x; x < 2 |] ==> 0 < sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1608
by (auto_tac (claset() addIs [sin_gt_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1609
qed "sin_gt_zero1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1610
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1611
Goal "[| 0 < x; x < 2 |] ==> cos (2 * x) < 1";
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  1612
by (cut_inst_tac [("x","x")] sin_gt_zero1 1);
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  1613
by (auto_tac (claset(), simpset() addsimps [cos_squared_eq, cos_double]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1614
qed "cos_double_less_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1615
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1616
Goal  "(%n. (- 1) ^ n /(real (fact (2 * n))) * x ^ (2 * n)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1617
\      sums cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1618
by (cut_inst_tac [("x2","x")] (CLAIM "0 < (2::nat)" RS ((cos_converges 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1619
    RS sums_summable) RS sums_group)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1620
by (auto_tac (claset(),simpset() addsimps  mult_ac@[cos_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1621
qed "cos_paired";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1622
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  1623
Addsimps [zero_less_power];
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1624
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1625
Goal "cos (2) < 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1626
by (cut_inst_tac [("x","2")] cos_paired 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1627
by (dtac sums_minus 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1628
by (rtac (CLAIM "- x < -y ==> (y::real) < x") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1629
by (ftac sums_unique 1 THEN Auto_tac);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1630
by (res_inst_tac [("y",
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1631
    "sumr 0 (Suc (Suc (Suc 0))) (%n. -((- 1) ^ n /(real (fact(2 * n))) \
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1632
\               * 2 ^ (2 * n)))")] order_less_trans 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1633
by (simp_tac (simpset() addsimps [fact_num_eq_if,realpow_num_eq_if] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1634
    delsimps [fact_Suc,realpow_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1635
by (simp_tac (simpset() addsimps [real_mult_assoc] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1636
    delsimps [sumr_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1637
by (rtac sumr_pos_lt_pair 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1638
by (etac sums_summable 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1639
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1640
by (simp_tac (simpset() addsimps [real_divide_def,real_mult_assoc RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1641
    delsimps [fact_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1642
by (rtac real_mult_inverse_cancel2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1643
by (TRYALL(rtac (real_of_nat_fact_gt_zero)));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1644
by (simp_tac (simpset() addsimps [real_mult_assoc RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1645
    delsimps [fact_Suc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1646
by (rtac ((CLAIM "real(n::nat) * 4 = real(4 * n)") RS ssubst) 1);
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1647
by (stac fact_Suc 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1648
by (stac real_of_nat_mult 1);
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1649
by (stac real_of_nat_mult 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1650
by (rtac real_mult_less_mono 1); (*mult_strict_mono would be stronger*)
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1651
by (Force_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1652
by (Force_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1653
by (rtac real_of_nat_fact_gt_zero 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1654
by (rtac (real_of_nat_less_iff RS iffD2) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1655
by (rtac fact_less_mono 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1656
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1657
qed "cos_two_less_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1658
Addsimps [cos_two_less_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1659
Addsimps [cos_two_less_zero RS real_not_refl2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1660
Addsimps [cos_two_less_zero RS order_less_imp_le];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1661
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1662
Goal "EX! x. 0 <= x & x <= 2 & cos x = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1663
by (subgoal_tac "EX x.  0 <= x & x <= 2 & cos x = 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1664
by (rtac IVT2  2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1665
by (auto_tac (claset() addIs [DERIV_isCont,DERIV_cos],simpset ()));
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  1666
by (cut_inst_tac [("x","xa"),("y","y")] linorder_less_linear 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1667
by (rtac ccontr 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1668
by (subgoal_tac "(ALL x. cos differentiable x) & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1669
\   (ALL x. isCont cos x)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1670
by (auto_tac (claset() addIs [DERIV_cos,DERIV_isCont],simpset() 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1671
    addsimps [differentiable_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1672
by (dres_inst_tac [("f","cos")] Rolle 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1673
by (dres_inst_tac [("f","cos")] Rolle 5);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1674
by (auto_tac (claset() addSDs [DERIV_cos RS DERIV_unique],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1675
    simpset() addsimps [differentiable_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1676
by (dres_inst_tac [("y1","xa")] (order_le_less_trans RS sin_gt_zero) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1677
by (assume_tac 1 THEN rtac order_less_le_trans 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1678
by (dres_inst_tac [("y1","y")] (order_le_less_trans RS sin_gt_zero) 4);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1679
by (assume_tac 4 THEN rtac order_less_le_trans 4);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1680
by (assume_tac 1 THEN assume_tac 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1681
by (ALLGOALS (Asm_full_simp_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1682
qed "cos_is_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1683
    
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1684
Goalw [pi_def] "pi/2 = (@x. 0 <= x & x <= 2 & cos x = 0)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1685
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1686
qed "pi_half";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1687
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1688
Goal "cos (pi / 2) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1689
by (rtac (cos_is_zero RS ex1E) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1690
by (auto_tac (claset() addSIs [someI2],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1691
    simpset() addsimps [pi_half]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1692
qed "cos_pi_half";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1693
Addsimps [cos_pi_half];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1694
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1695
Goal "0 < pi / 2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1696
by (rtac (cos_is_zero RS ex1E) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1697
by (auto_tac (claset(),simpset() addsimps [pi_half]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1698
by (rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1699
by (Blast_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1700
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1701
by (dres_inst_tac [("y","xa")] real_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1702
by (Step_tac 1 THEN Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1703
qed "pi_half_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1704
Addsimps [pi_half_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1705
Addsimps [(pi_half_gt_zero RS real_not_refl2) RS not_sym];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1706
Addsimps [pi_half_gt_zero RS order_less_imp_le];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1707
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1708
Goal "pi / 2 < 2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1709
by (rtac (cos_is_zero RS ex1E) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1710
by (auto_tac (claset(),simpset() addsimps [pi_half]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1711
by (rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1712
by (Blast_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1713
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1714
by (dres_inst_tac [("x","xa")] order_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1715
by (Step_tac 1 THEN Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1716
qed "pi_half_less_two";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1717
Addsimps [pi_half_less_two];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1718
Addsimps [pi_half_less_two RS real_not_refl2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1719
Addsimps [pi_half_less_two RS order_less_imp_le];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1720
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1721
Goal "0 < pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1722
by (multr_by_tac "inverse 2" 1);
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1723
by (Simp_tac 1);
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1724
by (cut_facts_tac [pi_half_gt_zero] 1);
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  1725
by (full_simp_tac (HOL_ss addsimps [mult_zero_left, real_divide_def]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1726
qed "pi_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1727
Addsimps [pi_gt_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1728
Addsimps [(pi_gt_zero RS real_not_refl2) RS not_sym];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1729
Addsimps [pi_gt_zero RS CLAIM "(x::real) < y ==> ~ y < x"];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1730
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1731
Goal "0 <= pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1732
by (auto_tac (claset() addIs [order_less_imp_le],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1733
qed "pi_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1734
Addsimps [pi_ge_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1735
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1736
Goal "-(pi/2) < 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1737
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1738
qed "minus_pi_half_less_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1739
Addsimps [minus_pi_half_less_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1740
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1741
Goal "sin(pi/2) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1742
by (cut_inst_tac [("x","pi/2")] sin_cos_squared_add2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1743
by (cut_facts_tac [[pi_half_gt_zero,pi_half_less_two] MRS sin_gt_zero] 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1744
by (auto_tac (claset(), simpset() addsimps [numeral_2_eq_2])); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1745
qed "sin_pi_half";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1746
Addsimps [sin_pi_half];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1747
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1748
Goal "cos pi = - 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1749
by (cut_inst_tac [("x","pi/2"),("y","pi/2")] cos_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1750
by (Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1751
qed "cos_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1752
Addsimps [cos_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1753
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1754
Goal "sin pi = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1755
by (cut_inst_tac [("x","pi/2"),("y","pi/2")] sin_add 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1756
by (Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1757
qed "sin_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1758
Addsimps [sin_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1759
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1760
Goalw [real_diff_def] "sin x = cos (pi/2 - x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1761
by (simp_tac (simpset() addsimps [cos_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1762
qed "sin_cos_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1763
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1764
Goal "-sin x = cos (x + pi/2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1765
by (simp_tac (simpset() addsimps [cos_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1766
qed "minus_sin_cos_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1767
Addsimps [minus_sin_cos_eq RS sym];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1768
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1769
Goalw [real_diff_def] "cos x = sin (pi/2 - x)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1770
by (simp_tac (simpset() addsimps [sin_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1771
qed "cos_sin_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1772
Addsimps [sin_cos_eq RS sym, cos_sin_eq RS sym];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1773
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1774
Goal "sin (x + pi) = - sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1775
by (simp_tac (simpset() addsimps [sin_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1776
qed "sin_periodic_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1777
Addsimps [sin_periodic_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1778
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1779
Goal "sin (pi + x) = - sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1780
by (simp_tac (simpset() addsimps [sin_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1781
qed "sin_periodic_pi2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1782
Addsimps [sin_periodic_pi2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1783
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1784
Goal "cos (x + pi) = - cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1785
by (simp_tac (simpset() addsimps [cos_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1786
qed "cos_periodic_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1787
Addsimps [cos_periodic_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1788
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1789
Goal "sin (x + 2*pi) = sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1790
by (simp_tac (simpset() addsimps [sin_add,cos_double,numeral_2_eq_2]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1791
  (*FIXME: just needs x^n for literals!*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1792
qed "sin_periodic";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1793
Addsimps [sin_periodic];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1794
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1795
Goal "cos (x + 2*pi) = cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1796
by (simp_tac (simpset() addsimps [cos_add,cos_double,numeral_2_eq_2]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1797
  (*FIXME: just needs x^n for literals!*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1798
qed "cos_periodic";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1799
Addsimps [cos_periodic];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1800
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1801
Goal "cos (real n * pi) = (-(1::real)) ^ n";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1802
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1803
by (auto_tac (claset(),simpset() addsimps 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1804
    [real_of_nat_Suc,left_distrib]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1805
qed "cos_npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1806
Addsimps [cos_npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1807
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1808
Goal "sin (real (n::nat) * pi) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1809
by (induct_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1810
by (auto_tac (claset(),simpset() addsimps 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1811
    [real_of_nat_Suc,left_distrib]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1812
qed "sin_npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1813
Addsimps [sin_npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1814
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1815
Goal "sin (pi * real (n::nat)) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1816
by (cut_inst_tac [("n","n")] sin_npi 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1817
by (auto_tac (claset(),simpset() addsimps [real_mult_commute] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1818
    delsimps [sin_npi]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1819
qed "sin_npi2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1820
Addsimps [sin_npi2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1821
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1822
Goal "cos (2 * pi) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1823
by (simp_tac (simpset() addsimps [cos_double,numeral_2_eq_2]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1824
  (*FIXME: just needs x^n for literals!*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1825
qed "cos_two_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1826
Addsimps [cos_two_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1827
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1828
Goal "sin (2 * pi) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1829
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1830
qed "sin_two_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1831
Addsimps [sin_two_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1832
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1833
Goal "[| 0 < x; x < pi/2 |] ==> 0 < sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1834
by (rtac sin_gt_zero 1);
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1835
by (assume_tac 1); 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1836
by (rtac order_less_trans 1 THEN assume_tac 1);
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1837
by (rtac pi_half_less_two 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1838
qed "sin_gt_zero2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1839
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1840
Goal "[| - pi/2 < x; x < 0 |] ==> sin x < 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1841
by (rtac (CLAIM "(0::real) < - x ==> x < 0") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1842
by (rtac (sin_minus RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1843
by (rtac sin_gt_zero2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1844
by (rtac (CLAIM "-y < x ==> -x < (y::real)") 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1845
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1846
qed "sin_less_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1847
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1848
Goal "pi < 4";
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1849
by (cut_facts_tac [pi_half_less_two] 1);
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1850
by Auto_tac; 
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1851
qed "pi_less_4";
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1852
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1853
Goal "[| 0 < x; x < pi/2 |] ==> 0 < cos x";
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1854
by (cut_facts_tac [pi_less_4] 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1855
by (cut_inst_tac [("f","cos"),("a","0"),("b","x"),("y","0")] IVT2_objl 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1856
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1857
by (cut_facts_tac [cos_is_zero] 5);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1858
by (Step_tac 5);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1859
by (dres_inst_tac [("x","xa")] spec 5);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1860
by (dres_inst_tac [("x","pi/2")] spec 5);
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1861
by (force_tac (claset(), simpset() addsimps []) 1); 
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1862
by (force_tac (claset(), simpset() addsimps []) 1); 
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1863
by (force_tac (claset(), simpset() addsimps []) 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1864
by (auto_tac (claset() addSDs [ pi_half_less_two RS order_less_trans, 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1865
    CLAIM "~ m <= n ==> n < (m::real)"]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1866
    addIs [DERIV_isCont,DERIV_cos],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1867
qed "cos_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1868
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1869
Goal "[| -(pi/2) < x; x < pi/2 |] ==> 0 < cos x";
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1870
by (res_inst_tac [("x","x"),("y","0")] linorder_cases 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1871
by (rtac (cos_minus RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1872
by (rtac cos_gt_zero 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1873
by (rtac (CLAIM "-y < x ==> -x < (y::real)") 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1874
by (auto_tac (claset() addIs [cos_gt_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1875
qed "cos_gt_zero_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1876
 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1877
Goal "[| -(pi/2) <= x; x <= pi/2 |] ==> 0 <= cos x";
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1878
by (auto_tac (claset(),HOL_ss addsimps [order_le_less,
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1879
    cos_gt_zero_pi]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1880
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1881
qed "cos_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1882
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1883
Goal "[| 0 < x; x < pi  |] ==> 0 < sin x";
12486
0ed8bdd883e0 isatool expandshort;
wenzelm
parents: 12481
diff changeset
  1884
by (stac sin_cos_eq 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1885
by (rotate_tac 1 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1886
by (dtac (real_sum_of_halves RS ssubst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1887
by (auto_tac (claset() addSIs [cos_gt_zero_pi],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1888
    simpset() delsimps [sin_cos_eq RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1889
qed "sin_gt_zero_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1890
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1891
Goal "[| 0 <= x; x <= pi |] ==> 0 <= sin x";
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  1892
by (auto_tac (claset(),simpset() addsimps [order_le_less,
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1893
    sin_gt_zero_pi]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1894
qed "sin_ge_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1895
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1896
Goal "[| - 1 <= y; y <= 1 |] ==> EX! x. 0 <= x & x <= pi & (cos x = y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1897
by (subgoal_tac "EX x.  0 <= x & x <= pi & cos x = y" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1898
by (rtac IVT2  2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1899
by (auto_tac (claset() addIs [order_less_imp_le,DERIV_isCont,DERIV_cos],
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1900
    simpset ()));
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  1901
by (cut_inst_tac [("x","xa"),("y","y")] linorder_less_linear 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1902
by (rtac ccontr 1 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1903
by (dres_inst_tac [("f","cos")] Rolle 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1904
by (dres_inst_tac [("f","cos")] Rolle 5);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1905
by (auto_tac (claset() addIs [order_less_imp_le,DERIV_isCont,DERIV_cos]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1906
    addSDs [DERIV_cos RS DERIV_unique],simpset() addsimps [differentiable_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1907
by (auto_tac (claset() addDs [[order_le_less_trans,order_less_le_trans] MRS 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1908
    sin_gt_zero_pi],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1909
qed "cos_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1910
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1911
Goal "[| - 1 <= y; y <= 1 |] ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1912
\     EX! x. -(pi/2) <= x & x <= pi/2 & (sin x = y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1913
by (rtac ccontr 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1914
by (subgoal_tac "ALL x. (-(pi/2) <= x & x <= pi/2 & (sin x = y)) \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1915
\   = (0 <= (x + pi/2) & (x + pi/2) <= pi & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1916
\     (cos(x + pi/2) = -y))" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1917
by (etac swap 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1918
by (asm_full_simp_tac (simpset() delsimps [minus_sin_cos_eq RS sym]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1919
by (dtac (CLAIM "(x::real) <= y ==> -y <= -x") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1920
by (dtac (CLAIM "(x::real) <= y ==> -y <= -x") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1921
by (dtac cos_total 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1922
by (Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1923
by (etac ex1E 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1924
by (res_inst_tac [("a","x - (pi/2)")] ex1I 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1925
by (simp_tac (simpset() addsimps [real_add_assoc]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1926
by (rotate_tac 3 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1927
by (dres_inst_tac [("x","xa + pi/2")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1928
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1929
by (TRYALL(Asm_full_simp_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1930
by (auto_tac (claset(),simpset() addsimps [CLAIM "(-x <= y) = (-y <= (x::real))"]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1931
qed "sin_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1932
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1933
Goal "(EX n. P (n::nat)) = (EX n. P n & (ALL m. m < n --> ~ P m))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1934
by (rtac iffI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1935
by (rtac contrapos_pp 1 THEN assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1936
by (EVERY1[Simp_tac, rtac allI, rtac nat_less_induct]);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1937
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1938
qed "less_induct_ex_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1939
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1940
Goal "[| 0 < y; 0 <= x |] ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1941
\     EX n. real n * y <= x & x < real (Suc n) * y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1942
by (auto_tac (claset() addSDs [reals_Archimedean3],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1943
by (dres_inst_tac [("x","x")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1944
by (dtac (less_induct_ex_iff RS iffD1) 1 THEN Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1945
by (case_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1946
by (res_inst_tac [("x","nat")] exI 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1947
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1948
qed "reals_Archimedean4";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1949
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1950
(* Pre Isabelle99-2 proof was simpler- numerals arithmetic 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1951
   now causes some unwanted re-arrangements of literals!   *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1952
Goal "[| 0 <= x; cos x = 0 |] ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1953
\     EX n. ~even n & x = real n * (pi/2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1954
by (dtac (pi_gt_zero RS reals_Archimedean4) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1955
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1956
by (subgoal_tac 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1957
    "0 <= x - real n * pi & (x - real n * pi) <= pi & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1958
\    (cos(x - real n * pi) = 0)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1959
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1960
by (asm_full_simp_tac (simpset() addsimps [real_of_nat_Suc,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1961
    left_distrib]) 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1962
by (asm_full_simp_tac (simpset() addsimps [cos_diff]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1963
by (asm_full_simp_tac (simpset() addsimps [cos_diff]) 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1964
by (subgoal_tac "EX! x. 0 <= x & x <= pi & cos x = 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1965
by (rtac cos_total 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1966
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1967
by (dres_inst_tac [("x","x - real n * pi")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1968
by (dres_inst_tac [("x","pi/2")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1969
by (asm_full_simp_tac (simpset() addsimps [cos_diff]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1970
by (res_inst_tac [("x","Suc (2 * n)")] exI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1971
by (asm_full_simp_tac (simpset() addsimps [real_of_nat_Suc,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1972
    left_distrib]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1973
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1974
qed "cos_zero_lemma";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1975
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1976
Goal "[| 0 <= x; sin x = 0 |] ==> \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1977
\     EX n. even n & x = real n * (pi/2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1978
by (subgoal_tac 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1979
    "EX n. ~ even n & x + pi/2  = real n * (pi/2)" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1980
by (rtac cos_zero_lemma 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1981
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1982
by (res_inst_tac [("x","n - 1")] exI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1983
by (rtac (CLAIM "-y <= x ==> -x <= (y::real)") 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1984
by (rtac real_le_trans 2 THEN assume_tac 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1985
by (auto_tac (claset(),simpset() addsimps [odd_not_even RS sym,
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1986
    odd_Suc_mult_two_ex,real_of_nat_Suc,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  1987
    left_distrib,real_mult_assoc RS sym]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1988
qed "sin_zero_lemma";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1989
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1990
(* also spoilt by numeral arithmetic *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1991
Goal "(cos x = 0) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1992
\     ((EX n. ~even n & (x = real n * (pi/2))) |   \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1993
\      (EX n. ~even n & (x = -(real n * (pi/2)))))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1994
by (rtac iffI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1995
by (cut_inst_tac [("x","x")] (CLAIM "0 <= (x::real) | x <= 0") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1996
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1997
by (dtac cos_zero_lemma 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1998
by (dtac (CLAIM "(x::real) <= 0 ==> 0 <= -x") 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  1999
by (dtac cos_zero_lemma 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2000
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2001
by (dtac (CLAIM "-x = y ==> x = -(y::real)") 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2002
by (auto_tac (claset(),HOL_ss addsimps [odd_not_even RS sym,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2003
    odd_Suc_mult_two_ex,real_of_nat_Suc,left_distrib]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2004
by (auto_tac (claset(),simpset() addsimps [cos_add]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2005
qed "cos_zero_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2006
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2007
(* ditto: but to a lesser extent *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2008
Goal "(sin x = 0) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2009
\     ((EX n. even n & (x = real n * (pi/2))) |   \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2010
\      (EX n. even n & (x = -(real n * (pi/2)))))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2011
by (rtac iffI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2012
by (cut_inst_tac [("x","x")] (CLAIM "0 <= (x::real) | x <= 0") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2013
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2014
by (dtac sin_zero_lemma 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2015
by (dtac (CLAIM "(x::real) <= 0 ==> 0 <= -x") 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2016
by (dtac sin_zero_lemma 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2017
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2018
by (dtac (CLAIM "-x = y ==> x = -(y::real)") 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2019
by (auto_tac (claset(),simpset() addsimps [even_mult_two_ex]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2020
qed "sin_zero_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2021
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2022
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2023
(* Tangent                                                                  *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2024
(* ------------------------------------------------------------------------ *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2025
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2026
Goalw [tan_def] "tan 0 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2027
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2028
qed "tan_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2029
Addsimps [tan_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2030
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2031
Goalw [tan_def] "tan pi = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2032
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2033
qed "tan_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2034
Addsimps [tan_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2035
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2036
Goalw [tan_def] "tan (real (n::nat) * pi) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2037
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2038
qed "tan_npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2039
Addsimps [tan_npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2040
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2041
Goalw [tan_def] "tan (-x) = - tan x";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2042
by (simp_tac (simpset() addsimps [minus_mult_left]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2043
qed "tan_minus";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2044
Addsimps [tan_minus];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2045
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2046
Goalw [tan_def] "tan (x + 2*pi) = tan x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2047
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2048
qed "tan_periodic";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2049
Addsimps [tan_periodic];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2050
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2051
Goalw [tan_def,real_divide_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2052
      "[| cos x ~= 0; cos y ~= 0 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2053
\       ==> 1 - tan(x)*tan(y) = cos (x + y)/(cos x * cos y)";
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  2054
by (auto_tac (claset(),
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2055
   simpset() delsimps [inverse_mult_distrib]
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2056
	     addsimps [inverse_mult_distrib RS sym] @ mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2057
by (res_inst_tac [("c1","cos x * cos y")] (real_mult_right_cancel RS subst) 1);
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  2058
by (auto_tac (claset(), 
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2059
    simpset() delsimps [inverse_mult_distrib]
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2060
	      addsimps [mult_assoc, left_diff_distrib,cos_add]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2061
val lemma_tan_add1 = result();
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2062
Addsimps [lemma_tan_add1];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2063
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2064
Goalw [tan_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2065
      "[| cos x ~= 0; cos y ~= 0 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2066
\      ==> tan x + tan y = sin(x + y)/(cos x * cos y)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2067
by (res_inst_tac [("c1","cos x * cos y")] (real_mult_right_cancel RS subst) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2068
by (auto_tac (claset(), simpset() addsimps [mult_assoc, left_distrib]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2069
by (simp_tac (simpset() addsimps [sin_add]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2070
qed "add_tan_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2071
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2072
Goal "[| cos x ~= 0; cos y ~= 0; cos (x + y) ~= 0 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2073
\     ==> tan(x + y) = (tan(x) + tan(y))/(1 - tan(x) * tan(y))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2074
by (asm_simp_tac (simpset() addsimps [add_tan_eq]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2075
by (simp_tac (simpset() addsimps [tan_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2076
qed "tan_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2077
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2078
Goal "[| cos x ~= 0; cos (2 * x) ~= 0 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2079
\     ==> tan (2 * x) = (2 * tan x)/(1 - (tan(x) ^ 2))";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2080
by (auto_tac (claset(),simpset() addsimps [asm_full_simplify 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2081
    (simpset() addsimps [real_mult_2 RS sym] delsimps [lemma_tan_add1]) 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2082
    (read_instantiate [("x","x"),("y","x")] tan_add),numeral_2_eq_2]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2083
    delsimps [lemma_tan_add1]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2084
qed "tan_double";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2085
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2086
Goalw [tan_def,real_divide_def] "[| 0 < x; x < pi/2 |] ==> 0 < tan x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2087
by (auto_tac (claset() addSIs [sin_gt_zero2,cos_gt_zero_pi]
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2088
    addSIs [real_mult_order, positive_imp_inverse_positive],simpset()));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2089
qed "tan_gt_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2090
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2091
Goal "[| - pi/2 < x; x < 0 |] ==> tan x < 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2092
by (rtac (CLAIM "(0::real) < - x ==> x < 0") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2093
by (rtac (tan_minus RS subst) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2094
by (rtac tan_gt_zero 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2095
by (rtac (CLAIM "-x < y ==> -y < (x::real)") 2 THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2096
qed "tan_less_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2097
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2098
Goal "cos x ~= 0 ==> DERIV (%x. sin(x)/cos(x)) x :> inverse(cos x ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2099
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2100
by DERIV_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2101
by (auto_tac (claset(),simpset() addsimps [real_divide_def,numeral_2_eq_2]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2102
qed "lemma_DERIV_tan";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2103
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2104
Goal "cos x ~= 0 ==> DERIV tan x :> inverse(cos(x) ^ 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2105
by (auto_tac (claset() addDs [lemma_DERIV_tan],simpset()
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2106
    addsimps [(tan_def RS meta_eq_to_obj_eq) RS sym]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2107
qed "DERIV_tan";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2108
Addsimps [DERIV_tan];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2109
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2110
Goalw [real_divide_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2111
      "(%x. cos(x)/sin(x)) -- pi/2 --> 0";
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2112
by (res_inst_tac [("a1","1")] ((mult_zero_left) RS subst) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2113
by (rtac LIM_mult2 1); 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2114
by (rtac (inverse_1 RS subst) 2);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2115
by (rtac LIM_inverse 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2116
by (fold_tac [real_divide_def]);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2117
by (auto_tac (claset() addSIs [DERIV_isCont],simpset() 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2118
    addsimps [(isCont_def RS meta_eq_to_obj_eq)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2119
    RS sym, cos_pi_half RS sym, sin_pi_half RS sym] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2120
    delsimps [cos_pi_half,sin_pi_half]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2121
by (DERIV_tac THEN Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2122
qed "LIM_cos_div_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2123
Addsimps [LIM_cos_div_sin];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2124
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2125
Goal "0 < y ==> EX x. 0 < x & x < pi/2 & y < tan x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2126
by (cut_facts_tac [LIM_cos_div_sin] 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2127
by (asm_full_simp_tac (HOL_ss addsimps [LIM_def]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2128
by (dres_inst_tac [("x","inverse y")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2129
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2130
by (Force_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2131
by (dres_inst_tac [("d1.0","s")] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2132
    (pi_half_gt_zero RSN (2,real_lbound_gt_zero)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2133
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2134
by (res_inst_tac [("x","(pi/2) - e")] exI 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2135
by (Asm_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2136
by (dres_inst_tac [("x","(pi/2) - e")] spec 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2137
by (auto_tac (claset(),simpset() addsimps [abs_eqI2,tan_def]));
14309
f508492af9b4 moving HyperArith0.ML to other theories
paulson
parents: 14305
diff changeset
  2138
by (rtac (inverse_less_iff_less RS iffD1) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2139
by (auto_tac (claset(),simpset() addsimps [real_divide_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2140
by (rtac (real_mult_order) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2141
by (subgoal_tac "0 < sin e" 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2142
by (subgoal_tac "0 < cos e" 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2143
by (auto_tac (claset() addIs [cos_gt_zero,sin_gt_zero2],simpset()
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2144
    addsimps [inverse_mult_distrib,abs_mult]));
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2145
by (dres_inst_tac [("a","cos e")] (positive_imp_inverse_positive) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2146
by (dres_inst_tac [("x","inverse (cos e)")] abs_eqI2 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2147
by (auto_tac (claset() addSDs [abs_eqI2],simpset() addsimps mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2148
qed "lemma_tan_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2149
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2150
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2151
Goal "0 <= y ==> EX x. 0 <= x & x < pi/2 & tan x = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2152
by (ftac real_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2153
by (Step_tac 1 THEN Force_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2154
by (dtac lemma_tan_total 1 THEN Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2155
by (cut_inst_tac [("f","tan"),("a","0"),("b","x"),("y","y")] IVT_objl 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2156
by (auto_tac (claset() addSIs [DERIV_tan RS DERIV_isCont],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2157
by (dres_inst_tac [("y","xa")] order_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2158
by (auto_tac (claset() addDs [cos_gt_zero],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2159
qed "tan_total_pos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2160
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2161
Goal "EX x. -(pi/2) < x & x < (pi/2) & tan x = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2162
by (cut_inst_tac [("y","y")] (CLAIM "0 <= (y::real) | 0 <= -y") 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2163
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2164
by (dtac tan_total_pos 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2165
by (dtac tan_total_pos 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2166
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2167
by (res_inst_tac [("x","-x")] exI 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2168
by (auto_tac (claset() addSIs [exI],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2169
qed "lemma_tan_total1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2170
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2171
Goal "EX! x. -(pi/2) < x & x < (pi/2) & tan x = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2172
by (cut_inst_tac [("y","y")] lemma_tan_total1 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2173
by (Auto_tac);
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2174
by (cut_inst_tac [("x","xa"),("y","y")] linorder_less_linear 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2175
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2176
by (subgoal_tac "EX z. xa < z & z < y & DERIV tan z :> 0" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2177
by (subgoal_tac "EX z. y < z & z < xa & DERIV tan z :> 0" 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2178
by (rtac Rolle 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2179
by (rtac Rolle 7);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2180
by (auto_tac (claset() addSIs [DERIV_tan,DERIV_isCont,exI],simpset()
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2181
    addsimps [differentiable_def]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2182
by (TRYALL(rtac DERIV_tan));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2183
by (TRYALL(dtac (DERIV_tan RSN (2,DERIV_unique))));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2184
by (TRYALL(rtac (real_not_refl2 RS not_sym)));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2185
by (auto_tac (claset() addSIs [cos_gt_zero_pi],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2186
by (ALLGOALS(subgoal_tac "0 < cos z")); 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2187
by (Force_tac 1 THEN Force_tac 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2188
by (ALLGOALS(thin_tac "cos z = 0"));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2189
by (auto_tac (claset() addSIs [cos_gt_zero_pi],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2190
qed "tan_total";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2191
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2192
Goal "[| - 1 <= y; y <= 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2193
\     ==> -(pi/2) <= arcsin y & arcsin y <= pi & sin(arcsin y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2194
by (dtac sin_total 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2195
by (etac ex1E 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2196
by (rewtac arcsin_def);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2197
by (rtac someI2 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2198
by (EVERY1[assume_tac, Blast_tac, Step_tac]);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2199
by (rtac real_le_trans 1 THEN assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2200
by (Force_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2201
qed "arcsin_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2202
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2203
Goal "[| - 1 <= y; y <= 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2204
\     ==> -(pi/2) <= arcsin y & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2205
\          arcsin y <= pi/2 & sin(arcsin y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2206
by (dtac sin_total 1 THEN assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2207
by (etac ex1E 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2208
by (rewtac arcsin_def);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2209
by (rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2210
by (ALLGOALS(Blast_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2211
qed "arcsin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2212
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2213
Goal "[| - 1 <= y; y <= 1 |] ==> sin(arcsin y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2214
by (blast_tac (claset() addDs [arcsin]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2215
qed "sin_arcsin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2216
Addsimps [sin_arcsin];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2217
      
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2218
Goal "[| -1 <= y; y <= 1 |] ==> sin(arcsin y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2219
by (auto_tac (claset() addIs [sin_arcsin],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2220
qed "sin_arcsin2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2221
Addsimps [sin_arcsin2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2222
      
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2223
Goal "[| - 1 <= y; y <= 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2224
\     ==> -(pi/2) <= arcsin y & arcsin y <= pi/2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2225
by (blast_tac (claset() addDs [arcsin]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2226
qed "arcsin_bounded";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2227
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2228
Goal "[| - 1 <= y; y <= 1 |] ==> -(pi/2) <= arcsin y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2229
by (blast_tac (claset() addDs [arcsin]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2230
qed "arcsin_lbound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2231
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2232
Goal "[| - 1 <= y; y <= 1 |] ==> arcsin y <= pi/2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2233
by (blast_tac (claset() addDs [arcsin]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2234
qed "arcsin_ubound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2235
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2236
Goal "[| - 1 < y; y < 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2237
\     ==> -(pi/2) < arcsin y & arcsin y < pi/2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2238
by (ftac order_less_imp_le 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2239
by (forw_inst_tac [("y","y")] order_less_imp_le 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2240
by (ftac arcsin_bounded 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2241
by (Step_tac 1 THEN Asm_full_simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2242
by (dres_inst_tac [("y","arcsin y")] order_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2243
by (dres_inst_tac [("y","pi/2")] order_le_imp_less_or_eq 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2244
by (Step_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2245
by (ALLGOALS(dres_inst_tac [("f","sin")] arg_cong));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2246
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2247
qed "arcsin_lt_bounded";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2248
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2249
Goalw [arcsin_def] 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2250
  "[|-(pi/2) <= x; x <= pi/2 |] ==> arcsin(sin x) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2251
by (rtac some1_equality 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2252
by (rtac sin_total 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2253
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2254
qed "arcsin_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2255
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2256
Goal "[| - 1 <= y; y <= 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2257
\     ==> 0 <= arcos y & arcos y <= pi & cos(arcos y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2258
by (dtac cos_total 1 THEN assume_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2259
by (etac ex1E 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2260
by (rewtac arcos_def);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2261
by (rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2262
by (ALLGOALS(Blast_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2263
qed "arcos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2264
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2265
Goal "[| - 1 <= y; y <= 1 |] ==> cos(arcos y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2266
by (blast_tac (claset() addDs [arcos]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2267
qed "cos_arcos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2268
Addsimps [cos_arcos];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2269
      
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2270
Goal "[| -1 <= y; y <= 1 |] ==> cos(arcos y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2271
by (auto_tac (claset() addIs [cos_arcos],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2272
qed "cos_arcos2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2273
Addsimps [cos_arcos2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2274
      
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2275
Goal "[| - 1 <= y; y <= 1 |] ==> 0 <= arcos y & arcos y <= pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2276
by (blast_tac (claset() addDs [arcos]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2277
qed "arcos_bounded";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2278
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2279
Goal "[| - 1 <= y; y <= 1 |] ==> 0 <= arcos y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2280
by (blast_tac (claset() addDs [arcos]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2281
qed "arcos_lbound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2282
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2283
Goal "[| - 1 <= y; y <= 1 |] ==> arcos y <= pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2284
by (blast_tac (claset() addDs [arcos]) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2285
qed "arcos_ubound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2286
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2287
Goal "[| - 1 < y; y < 1 |] \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2288
\     ==> 0 < arcos y & arcos y < pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2289
by (ftac order_less_imp_le 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2290
by (forw_inst_tac [("y","y")] order_less_imp_le 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2291
by (ftac arcos_bounded 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2292
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2293
by (dres_inst_tac [("y","arcos y")] order_le_imp_less_or_eq 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2294
by (dres_inst_tac [("y","pi")] order_le_imp_less_or_eq 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2295
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2296
by (ALLGOALS(dres_inst_tac [("f","cos")] arg_cong));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2297
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2298
qed "arcos_lt_bounded";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2299
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2300
Goalw [arcos_def] "[|0 <= x; x <= pi |] ==> arcos(cos x) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2301
by (auto_tac (claset() addSIs [some1_equality,cos_total],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2302
qed "arcos_cos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2303
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2304
Goalw [arcos_def] "[|x <= 0; -pi <= x |] ==> arcos(cos x) = -x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2305
by (auto_tac (claset() addSIs [some1_equality,cos_total],simpset()));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2306
qed "arcos_cos2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2307
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2308
Goal "- (pi/2) < arctan y  & \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2309
\     arctan y < pi/2 & tan (arctan y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2310
by (cut_inst_tac [("y","y")] tan_total 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2311
by (etac ex1E 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2312
by (rewtac arctan_def);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2313
by (rtac someI2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2314
by (ALLGOALS(Blast_tac));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2315
qed "arctan";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2316
Addsimps [arctan];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2317
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2318
Goal "tan(arctan y) = y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2319
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2320
qed "tan_arctan";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2321
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2322
Goal "- (pi/2) < arctan y  & arctan y < pi/2";
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2323
by (asm_full_simp_tac (HOL_ss addsimps [arctan]) 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2324
qed "arctan_bounded";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2325
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2326
Goal "- (pi/2) < arctan y";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2327
by (Auto_tac);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2328
qed "arctan_lbound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2329
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2330
Goal "arctan y < pi/2";
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2331
by (asm_full_simp_tac (HOL_ss addsimps [arctan]) 1); 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2332
qed "arctan_ubound";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2333
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2334
Goalw [arctan_def]
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2335
      "[|-(pi/2) < x; x < pi/2 |] ==> arctan(tan x) = x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2336
by (rtac some1_equality 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2337
by (rtac tan_total 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2338
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2339
qed "arctan_tan";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2340
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2341
Goal "arctan 0 = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2342
by (rtac (asm_full_simplify (simpset()) 
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2343
     (read_instantiate [("x","0")] arctan_tan)) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2344
qed "arctan_zero_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2345
Addsimps [arctan_zero_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2346
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2347
(* ------------------------------------------------------------------------- *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2348
(* Differentiation of arctan.                                                *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2349
(* ------------------------------------------------------------------------- *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2350
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2351
Goal "cos(arctan x) ~= 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2352
by (auto_tac (claset(),simpset() addsimps [cos_zero_iff]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2353
by (case_tac "n" 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2354
by (case_tac "n" 3);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2355
by (cut_inst_tac [("y","x")] arctan_ubound 2);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2356
by (cut_inst_tac [("y","x")] arctan_lbound 4);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2357
by (auto_tac (claset(),
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  2358
     simpset() addsimps [real_of_nat_Suc, left_distrib,linorder_not_less RS sym, mult_less_0_iff] 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2359
     delsimps [arctan]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2360
qed "cos_arctan_not_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2361
Addsimps [cos_arctan_not_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2362
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2363
Goal "cos x ~= 0 ==> 1 + tan(x) ^ 2 = inverse(cos x) ^ 2";
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2364
by (rtac (power_inverse RS subst) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2365
by (res_inst_tac [("c1","cos(x) ^ 2")] (real_mult_right_cancel RS iffD1) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2366
by (auto_tac (claset() addDs [realpow_not_zero], simpset() addsimps
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2367
    [power_mult_distrib,left_distrib,realpow_divide,
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2368
     tan_def,real_mult_assoc,power_inverse RS sym] 
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2369
     delsimps [realpow_Suc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2370
qed "tan_sec";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2371
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2372
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2373
(*--------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2374
(* Some more theorems- developed while at ICASE (07/2001)                   *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2375
(*--------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2376
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2377
Goal "sin (xa + 1 / 2 * real (Suc m) * pi) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2378
\     cos (xa + 1 / 2 * real  (m) * pi)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2379
by (simp_tac (HOL_ss addsimps [cos_add,sin_add,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2380
    real_of_nat_Suc,left_distrib,right_distrib]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2381
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2382
qed "lemma_sin_cos_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2383
Addsimps [lemma_sin_cos_eq];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2384
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2385
Goal "sin (xa + real (Suc m) * pi / 2) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2386
\     cos (xa + real (m) * pi / 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2387
by (simp_tac (HOL_ss addsimps [cos_add,sin_add,real_divide_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2388
    real_of_nat_Suc,left_distrib,right_distrib]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2389
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2390
qed "lemma_sin_cos_eq2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2391
Addsimps [lemma_sin_cos_eq2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2392
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2393
Goal "DERIV (%x. sin (x + k)) xa :> cos (xa + k)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2394
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2395
by (res_inst_tac [("f","sin"),("g","%x. x + k")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2396
by DERIV_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2397
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2398
qed "DERIV_sin_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2399
Addsimps [DERIV_sin_add];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2400
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2401
(* which further simplifies to (- 1 ^ m) !! *)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2402
Goal "sin ((real m + 1/2) * pi) = cos (real m * pi)";
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2403
by (auto_tac (claset(),simpset() addsimps [right_distrib,
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2404
    sin_add,left_distrib] @ mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2405
qed "sin_cos_npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2406
Addsimps [sin_cos_npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2407
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2408
Goal "sin (real (Suc (2 * n)) * pi / 2) = (- 1) ^ n";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2409
by (cut_inst_tac [("m","n")] sin_cos_npi 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2410
by (auto_tac (claset(),HOL_ss addsimps [real_of_nat_Suc,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2411
    left_distrib,real_divide_def]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2412
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2413
qed "sin_cos_npi2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2414
Addsimps [ sin_cos_npi2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2415
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2416
Goal "cos (2 * real (n::nat) * pi) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2417
by (auto_tac (claset(),simpset() addsimps [cos_double,
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2418
    real_mult_assoc,power_add RS sym,numeral_2_eq_2]));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2419
  (*FIXME: just needs x^n for literals!*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2420
qed "cos_2npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2421
Addsimps [cos_2npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2422
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2423
Goal "cos (3 / 2 * pi) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2424
by (rtac (CLAIM "(1::real) + 1/2 = 3/2" RS subst) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2425
by (stac left_distrib 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2426
by (auto_tac (claset(),simpset() addsimps [cos_add] @ mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2427
qed "cos_3over2_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2428
Addsimps [cos_3over2_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2429
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2430
Goal "sin (2 * real (n::nat) * pi) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2431
by (auto_tac (claset(),simpset() addsimps [real_mult_assoc]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2432
qed "sin_2npi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2433
Addsimps [sin_2npi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2434
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2435
Goal "sin (3 / 2 * pi) = - 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2436
by (rtac (CLAIM "(1::real) + 1/2 = 3/2" RS subst) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2437
by (stac left_distrib 1);
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2438
by (auto_tac (claset(),simpset() addsimps [sin_add] @mult_ac));
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2439
qed "sin_3over2_pi";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2440
Addsimps [sin_3over2_pi];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2441
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2442
Goal "cos(xa + 1 / 2 * real (Suc m) * pi) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2443
\     -sin  (xa + 1 / 2 * real (m) * pi)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2444
by (simp_tac (HOL_ss addsimps [cos_add,sin_add,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2445
    real_of_nat_Suc,right_distrib,left_distrib,
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2446
    minus_mult_right]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2447
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2448
qed "lemma_cos_sin_eq";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2449
Addsimps [lemma_cos_sin_eq];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2450
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2451
Goal "cos (xa + real (Suc m) * pi / 2) = \
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2452
\     -sin (xa + real (m) * pi / 2)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2453
by (simp_tac (HOL_ss addsimps [cos_add,sin_add,real_divide_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2454
    real_of_nat_Suc,left_distrib,right_distrib]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2455
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2456
qed "lemma_cos_sin_eq2";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2457
Addsimps [lemma_cos_sin_eq2];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2458
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2459
Goal "cos (pi * real (Suc (2 * m)) / 2) = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2460
by (simp_tac (HOL_ss addsimps [cos_add,sin_add,real_divide_def,
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2461
    real_of_nat_Suc,left_distrib,right_distrib]) 1);
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2462
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2463
qed "cos_pi_eq_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2464
Addsimps [cos_pi_eq_zero];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2465
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2466
Goal "DERIV (%x. cos (x + k)) xa :> - sin (xa + k)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2467
by (rtac lemma_DERIV_subst 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2468
by (res_inst_tac [("f","cos"),("g","%x. x + k")] DERIV_chain2 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2469
by DERIV_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2470
by (Simp_tac 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2471
qed "DERIV_cos_add";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2472
Addsimps [DERIV_cos_add];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2473
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2474
Goal "isCont cos x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2475
by (rtac (DERIV_cos RS DERIV_isCont) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2476
qed "isCont_cos";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2477
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2478
Goal "isCont sin x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2479
by (rtac (DERIV_sin RS DERIV_isCont) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2480
qed "isCont_sin";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2481
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2482
Goal "isCont exp x";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2483
by (rtac (DERIV_exp RS DERIV_isCont) 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2484
qed "isCont_exp";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2485
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2486
val isCont_simp = [isCont_exp,isCont_sin,isCont_cos];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2487
Addsimps isCont_simp;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2488
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2489
(** more theorems: e.g. used in complex geometry  **)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2490
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2491
Goal "sin x = 0 ==> abs(cos x) = 1";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2492
by (auto_tac (claset(),simpset() addsimps [sin_zero_iff,even_mult_two_ex]));
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2493
qed "sin_zero_abs_cos_one";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2494
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2495
Goal "(exp x = 1) = (x = 0)";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2496
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2497
by (dres_inst_tac [("f","ln")] arg_cong 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2498
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2499
qed "exp_eq_one_iff";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2500
Addsimps [exp_eq_one_iff];
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2501
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2502
Goal "cos x = 1 ==> sin x = 0";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2503
by (cut_inst_tac [("x","x")] sin_cos_squared_add3 1);
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2504
by Auto_tac;
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2505
qed "cos_one_sin_zero";
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2506
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2507
(*-------------------------------------------------------------------------------*)
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2508
(* A few extra theorems                                                          *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2509
(*-------------------------------------------------------------------------------*)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2510
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2511
Goal "[| 0 <= x; x < y |] ==> root(Suc n) x < root(Suc n) y";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2512
by (ftac order_le_less_trans 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2513
by (assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2514
by (forw_inst_tac [("n1","n")] (real_root_pow_pos2 RS ssubst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2515
by (rotate_tac 1 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2516
by (assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2517
by (forw_inst_tac [("n1","n")] (real_root_pow_pos RS ssubst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2518
by (rotate_tac 3 1 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2519
by (dres_inst_tac [("y","root (Suc n) y ^ Suc n")] order_less_imp_le 1 );
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2520
by (forw_inst_tac [("n","n")] real_root_pos_pos_le 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2521
by (forw_inst_tac [("n","n")] real_root_pos_pos 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2522
by (dres_inst_tac [("x","root (Suc n) x"),
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2523
    ("y","root (Suc n) y")] realpow_increasing 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2524
by (assume_tac 1 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2525
by (dres_inst_tac [("x","root (Suc n) x")] order_le_imp_less_or_eq 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2526
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2527
by (dres_inst_tac [("f","%x. x ^ (Suc n)")] arg_cong 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2528
by (auto_tac (claset(),simpset() addsimps [real_root_pow_pos2]
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2529
    delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2530
qed "real_root_less_mono";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2531
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2532
Goal "[| 0 <= x; x <= y |] ==> root(Suc n) x <= root(Suc n) y";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2533
by (dres_inst_tac [("y","y")] order_le_imp_less_or_eq 1 );
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2534
by (auto_tac (claset() addDs [real_root_less_mono]
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2535
    addIs [order_less_imp_le],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2536
qed "real_root_le_mono";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2537
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2538
Goal "[| 0 <= x; 0 <= y |] ==> (root(Suc n) x < root(Suc n) y) = (x < y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2539
by (auto_tac (claset() addIs [real_root_less_mono],simpset()));
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2540
by (rtac ccontr 1 THEN dtac (linorder_not_less RS iffD1) 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2541
by (dres_inst_tac [("x","y"),("n","n")] real_root_le_mono 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2542
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2543
qed "real_root_less_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2544
Addsimps [real_root_less_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2545
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2546
Goal "[| 0 <= x; 0 <= y |] ==> (root(Suc n) x <= root(Suc n) y) = (x <= y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2547
by (auto_tac (claset() addIs [real_root_le_mono],simpset()));
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  2548
by (simp_tac (simpset() addsimps [linorder_not_less RS sym]) 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2549
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2550
by (dres_inst_tac [("x","y"),("n","n")] real_root_less_mono 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2551
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2552
qed "real_root_le_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2553
Addsimps [real_root_le_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2554
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2555
Goal "[| 0 <= x; 0 <= y |] ==> (root(Suc n) x = root(Suc n) y) = (x = y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2556
by (auto_tac (claset() addSIs [real_le_anti_sym],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2557
by (res_inst_tac [("n1","n")] (real_root_le_iff RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2558
by (res_inst_tac [("n1","n")] (real_root_le_iff RS iffD1) 4);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2559
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2560
qed "real_root_eq_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2561
Addsimps [real_root_eq_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2562
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2563
Goal "[| 0 <= x; 0 <= y; y ^ (Suc n) = x |] ==> root (Suc n) x = y";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2564
by (auto_tac (claset() addDs [real_root_pos2],
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2565
    simpset() delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2566
qed "real_root_pos_unique";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2567
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2568
Goal "[| 0 <= x; 0 <= y |]\
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2569
\     ==> root(Suc n) (x * y) = root(Suc n) x * root(Suc n) y";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2570
by (rtac real_root_pos_unique 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2571
by (auto_tac (claset() addSIs [real_root_pos_pos_le],simpset() 
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2572
    addsimps [power_mult_distrib,zero_le_mult_iff,
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2573
    real_root_pow_pos2] delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2574
qed "real_root_mult";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2575
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2576
Goal "0 <= x ==> (root(Suc n) (inverse x) = inverse(root(Suc n) x))";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2577
by (rtac real_root_pos_unique 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2578
by (auto_tac (claset() addIs [real_root_pos_pos_le],simpset() 
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  2579
    addsimps [power_inverse RS sym,real_root_pow_pos2] 
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2580
    delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2581
qed "real_root_inverse";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2582
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2583
Goalw [real_divide_def] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2584
     "[| 0 <= x; 0 <= y |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2585
\     ==> (root(Suc n) (x / y) = root(Suc n) x / root(Suc n) y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2586
by (auto_tac (claset(),simpset() addsimps [real_root_mult,
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2587
    real_root_inverse]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2588
qed "real_root_divide";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2589
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2590
Goalw [sqrt_def] "[| 0 <= x; x < y |] ==> sqrt(x) < sqrt(y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2591
by (auto_tac (claset() addIs [real_root_less_mono],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2592
qed "real_sqrt_less_mono";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2593
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2594
Goalw [sqrt_def] "[| 0 <= x; x <= y |] ==> sqrt(x) <= sqrt(y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2595
by (auto_tac (claset() addIs [real_root_le_mono],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2596
qed "real_sqrt_le_mono";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2597
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2598
Goalw [sqrt_def] "[| 0 <= x; 0 <= y |] ==> (sqrt(x) < sqrt(y)) = (x < y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2599
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2600
qed "real_sqrt_less_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2601
Addsimps [real_sqrt_less_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2602
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2603
Goalw [sqrt_def] "[| 0 <= x; 0 <= y |] ==> (sqrt(x) <= sqrt(y)) = (x <= y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2604
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2605
qed "real_sqrt_le_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2606
Addsimps [real_sqrt_le_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2607
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2608
Goalw [sqrt_def] "[| 0 <= x; 0 <= y |] ==> (sqrt(x) = sqrt(y)) = (x = y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2609
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2610
qed "real_sqrt_eq_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2611
Addsimps [real_sqrt_eq_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2612
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2613
Goal "(sqrt(x ^ 2 + y ^ 2) < 1) = (x ^ 2 + y ^ 2 < 1)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2614
by (rtac (real_sqrt_one RS subst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2615
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2616
by (rtac real_sqrt_less_mono 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2617
by (dtac (rotate_prems 2 (real_sqrt_less_iff RS iffD1)) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2618
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2619
qed "real_sqrt_sos_less_one_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2620
Addsimps [real_sqrt_sos_less_one_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2621
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2622
Goal "(sqrt(x ^ 2 + y ^ 2) = 1) = (x ^ 2 + y ^ 2 = 1)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2623
by (rtac (real_sqrt_one RS subst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2624
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2625
by (dtac (rotate_prems 2 (real_sqrt_eq_iff RS iffD1)) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2626
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2627
qed "real_sqrt_sos_eq_one_iff";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2628
Addsimps [real_sqrt_sos_eq_one_iff];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2629
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2630
Goalw [real_divide_def] "(((r::real) * a) / (r * r)) = a / r";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2631
by (case_tac "r=0" 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2632
by (auto_tac (claset(),simpset() addsimps [inverse_mult_distrib] @ mult_ac));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2633
qed "real_divide_square_eq";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2634
Addsimps [real_divide_square_eq];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2635
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2636
(*-------------------------------------------------------------------------------*)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2637
(* More theorems about sqrt, transcendental functions etc. needed in Complex.ML  *)
12196
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2638
(*-------------------------------------------------------------------------------*)
a3be6b3a9c0b new theories from Jacques Fleuriot
paulson
parents:
diff changeset
  2639
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2640
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2641
Goalw [real_divide_def]
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2642
    "0 < x ==> 0 <= x/(sqrt (x * x + y * y))";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2643
by (ftac ((real_sqrt_sum_squares_ge1 RSN (2,order_less_le_trans)) 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2644
    RS (CLAIM "0 < x ==> 0 < inverse (x::real)")) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2645
by (rtac (real_mult_order RS order_less_imp_le) 1);
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2646
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2647
qed "lemma_real_divide_sqrt";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2648
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2649
Goal "0 < x ==> -(1::real) <= x/(sqrt (x * x + y * y))";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2650
by (rtac real_le_trans 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2651
by (rtac lemma_real_divide_sqrt 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2652
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2653
qed "lemma_real_divide_sqrt_ge_minus_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2654
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2655
Goal "x < 0 ==> 0 < sqrt (x * x + y * y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2656
by (rtac real_sqrt_gt_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2657
by (rtac (ARITH_PROVE "[| 0 < x; 0 <= y |] ==> (0::real) < x + y") 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2658
by (auto_tac (claset(),simpset() addsimps [zero_less_mult_iff]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2659
qed "real_sqrt_sum_squares_gt_zero1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2660
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2661
Goal "0 < x ==> 0 < sqrt (x * x + y * y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2662
by (rtac real_sqrt_gt_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2663
by (rtac (ARITH_PROVE "[| 0 < x; 0 <= y |] ==> (0::real) < x + y") 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2664
by (auto_tac (claset(),simpset() addsimps [zero_less_mult_iff]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2665
qed "real_sqrt_sum_squares_gt_zero2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2666
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2667
Goal "x ~= 0 ==> 0 < sqrt(x ^ 2 + y ^ 2)";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2668
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2669
by (auto_tac (claset() addIs [real_sqrt_sum_squares_gt_zero2,
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2670
    real_sqrt_sum_squares_gt_zero1],simpset() addsimps [numeral_2_eq_2]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2671
qed "real_sqrt_sum_squares_gt_zero3";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2672
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2673
Goal "y ~= 0 ==> 0 < sqrt(x ^ 2 + y ^ 2)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2674
by (dres_inst_tac [("y","x")] real_sqrt_sum_squares_gt_zero3 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2675
by (auto_tac (claset(),simpset() addsimps [real_add_commute]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2676
qed "real_sqrt_sum_squares_gt_zero3a";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2677
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2678
Goal "sqrt(x ^ 2 + y ^ 2) = x ==> y = 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2679
by (rtac ccontr 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2680
by (forw_inst_tac [("x","x")] real_sum_squares_not_zero2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2681
by (dres_inst_tac [("f","%x. x ^ 2")] arg_cong 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2682
by (forw_inst_tac [("x","x"),("y","y")] real_sum_square_gt_zero2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2683
by (dtac real_sqrt_gt_zero_pow2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2684
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2685
qed "real_sqrt_sum_squares_eq_cancel";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2686
Addsimps [real_sqrt_sum_squares_eq_cancel];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2687
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2688
Goal "sqrt(x ^ 2 + y ^ 2) = y ==> x = 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2689
by (res_inst_tac [("x","y")] real_sqrt_sum_squares_eq_cancel 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2690
by (asm_full_simp_tac (simpset() addsimps [real_add_commute]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2691
qed "real_sqrt_sum_squares_eq_cancel2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2692
Addsimps [real_sqrt_sum_squares_eq_cancel2];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2693
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2694
Goal "x < 0 ==> x/(sqrt (x * x + y * y)) <= 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2695
by (dtac (ARITH_PROVE "x < 0 ==> (0::real) < -x") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2696
by (dres_inst_tac [("y","y")] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2697
    lemma_real_divide_sqrt_ge_minus_one 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2698
by (dtac (ARITH_PROVE "x <= y ==> -y <= -(x::real)") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2699
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2700
qed "lemma_real_divide_sqrt_le_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2701
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2702
Goal "x < 0 ==> -(1::real) <= x/(sqrt (x * x + y * y))";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2703
by (case_tac "y = 0" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2704
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2705
by (ftac abs_minus_eqI2 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2706
by (auto_tac (claset(),simpset() addsimps [inverse_minus_eq]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2707
by (rtac order_less_imp_le 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2708
by (res_inst_tac [("z1","sqrt(x * x + y * y)")] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2709
     (real_mult_less_iff1 RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2710
by (forw_inst_tac [("y2","y")] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2711
    (real_sqrt_sum_squares_gt_zero1 RS real_not_refl2 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2712
    RS not_sym) 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2713
by (auto_tac (claset() addIs [real_sqrt_sum_squares_gt_zero1],
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2714
    simpset() addsimps mult_ac));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2715
by (rtac (ARITH_PROVE "-x < y ==> -y < (x::real)") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2716
by (cut_inst_tac [("x","-x"),("y","y")] real_sqrt_sum_squares_ge1 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2717
by (dtac real_le_imp_less_or_eq 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2718
by (Step_tac 1);
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2719
by (asm_full_simp_tac (simpset() addsimps [numeral_2_eq_2]) 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2720
by (dtac (sym RS real_sqrt_sum_squares_eq_cancel) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2721
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2722
qed "lemma_real_divide_sqrt_ge_minus_one2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2723
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2724
Goal "0 < x ==> x/(sqrt (x * x + y * y)) <= 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2725
by (dtac (ARITH_PROVE "0 < x ==> -x < (0::real)") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2726
by (dres_inst_tac [("y","y")] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2727
    lemma_real_divide_sqrt_ge_minus_one2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2728
by (dtac (ARITH_PROVE "x <= y ==> -y <= -(x::real)") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2729
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2730
qed "lemma_real_divide_sqrt_le_one2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2731
(* was qed "lemma_real_mult_self_rinv_sqrt_squared5" *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2732
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2733
Goal "-(1::real)<= x / sqrt (x * x + y * y)";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2734
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2735
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2736
by (rtac lemma_real_divide_sqrt_ge_minus_one2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2737
by (rtac lemma_real_divide_sqrt_ge_minus_one 3);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2738
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2739
qed "cos_x_y_ge_minus_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2740
Addsimps [cos_x_y_ge_minus_one];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2741
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2742
Goal "-(1::real)<= y / sqrt (x * x + y * y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2743
by (cut_inst_tac [("x","y"),("y","x")] cos_x_y_ge_minus_one 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2744
by (asm_full_simp_tac (simpset() addsimps [real_add_commute]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2745
qed "cos_x_y_ge_minus_one1a";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2746
Addsimps [cos_x_y_ge_minus_one1a,
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2747
          simplify (simpset()) cos_x_y_ge_minus_one1a];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2748
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2749
Goal "x / sqrt (x * x + y * y) <= 1";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2750
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2751
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2752
by (rtac lemma_real_divide_sqrt_le_one 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2753
by (rtac lemma_real_divide_sqrt_le_one2 3);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2754
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2755
qed "cos_x_y_le_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2756
Addsimps [cos_x_y_le_one];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2757
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2758
Goal "y / sqrt (x * x + y * y) <= 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2759
by (cut_inst_tac [("x","y"),("y","x")] cos_x_y_le_one 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2760
by (asm_full_simp_tac (simpset() addsimps [real_add_commute]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2761
qed "cos_x_y_le_one2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2762
Addsimps [cos_x_y_le_one2];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2763
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2764
Addsimps [[cos_x_y_ge_minus_one,cos_x_y_le_one] MRS cos_arcos];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2765
Addsimps [[cos_x_y_ge_minus_one,cos_x_y_le_one] MRS arcos_bounded];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2766
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2767
Addsimps [[cos_x_y_ge_minus_one1a,cos_x_y_le_one2] MRS cos_arcos];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2768
Addsimps [[cos_x_y_ge_minus_one1a,cos_x_y_le_one2] MRS arcos_bounded];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2769
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2770
Goal "-(1::real) <= abs(x) / sqrt (x * x + y * y)";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2771
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2772
by (auto_tac (claset(),simpset() addsimps [abs_minus_eqI2,abs_eqI2]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2773
by (dtac lemma_real_divide_sqrt_ge_minus_one 1 THEN Force_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2774
qed "cos_rabs_x_y_ge_minus_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2775
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2776
Addsimps [cos_rabs_x_y_ge_minus_one,
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2777
          simplify (simpset()) cos_rabs_x_y_ge_minus_one];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2778
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2779
Goal "abs(x) / sqrt (x * x + y * y) <= 1";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2780
by (cut_inst_tac [("x","x"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2781
by (auto_tac (claset(),simpset() addsimps [abs_minus_eqI2,abs_eqI2]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2782
by (dtac lemma_real_divide_sqrt_ge_minus_one2 1 THEN Force_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2783
qed "cos_rabs_x_y_le_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2784
Addsimps [cos_rabs_x_y_le_one];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2785
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2786
Addsimps [[cos_rabs_x_y_ge_minus_one,cos_rabs_x_y_le_one] MRS cos_arcos];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2787
Addsimps [[cos_rabs_x_y_ge_minus_one,cos_rabs_x_y_le_one] MRS arcos_bounded];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2788
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2789
Goal "-pi < 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2790
by (Simp_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2791
qed "minus_pi_less_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2792
Addsimps [minus_pi_less_zero];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2793
Addsimps [minus_pi_less_zero RS order_less_imp_le];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2794
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2795
Goal "[| -(1::real) <= y; y <= 1 |] ==> -pi <= arcos y";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2796
by (rtac real_le_trans 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2797
by (rtac arcos_lbound 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2798
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2799
qed "arcos_ge_minus_pi";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2800
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2801
Addsimps [[cos_x_y_ge_minus_one,cos_x_y_le_one] MRS arcos_ge_minus_pi];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2802
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2803
(* How tedious! *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2804
Goal "[| x + (y::real) ~= 0; 1 - z = x/(x + y) \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2805
\     |] ==> z = y/(x + y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2806
by (res_inst_tac [("c1","x + y")] (real_mult_right_cancel RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2807
by (forw_inst_tac [("c1","x + y")] (real_mult_right_cancel RS iffD2) 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2808
by (assume_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2809
by (rotate_tac 2 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2810
by (dtac (real_mult_assoc RS subst) 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2811
by (rotate_tac 2 2);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  2812
by (ftac (left_inverse RS subst) 2);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2813
by (assume_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2814
by (thin_tac "(1 - z) * (x + y) = x /(x + y) * (x + y)" 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2815
by (thin_tac "1 - z = x /(x + y)" 2);
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14355
diff changeset
  2816
by (auto_tac (claset(),simpset() addsimps [mult_assoc]));
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2817
by (auto_tac (claset(),simpset() addsimps [right_distrib,
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2818
    left_diff_distrib]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2819
qed "lemma_divide_rearrange";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2820
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2821
Goal "[| 0 < x * x + y * y; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2822
\       1 - sin xa ^ 2 = (x / sqrt (x * x + y * y)) ^ 2 \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2823
\     |] ==> sin xa ^ 2 = (y / sqrt (x * x + y * y)) ^ 2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2824
by (auto_tac (claset() addIs [lemma_divide_rearrange],simpset() 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2825
    addsimps [realpow_divide,real_sqrt_gt_zero_pow2,
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2826
    power2_eq_square RS sym]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2827
qed "lemma_cos_sin_eq";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2828
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2829
Goal "[| 0 < x * x + y * y; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2830
\       1 - cos xa ^ 2 = (y / sqrt (x * x + y * y)) ^ 2 \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2831
\     |] ==> cos xa ^ 2 = (x / sqrt (x * x + y * y)) ^ 2";
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2832
by (auto_tac (claset(),
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2833
    simpset() addsimps [realpow_divide,
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2834
          real_sqrt_gt_zero_pow2,power2_eq_square RS sym]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2835
by (rtac (real_add_commute RS subst) 1);
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2836
by (rtac lemma_divide_rearrange 1); 
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2837
by (asm_full_simp_tac (simpset() addsimps []) 1);
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  2838
by (asm_full_simp_tac (simpset() addsimps [add_commute]) 1);  
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2839
qed "lemma_sin_cos_eq";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2840
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2841
Goal "[| x ~= 0; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2842
\        cos xa = x / sqrt (x * x + y * y) \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2843
\     |] ==>  sin xa = y / sqrt (x * x + y * y) | \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2844
\             sin xa = - y / sqrt (x * x + y * y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2845
by (dres_inst_tac [("f","%x. x ^ 2")] arg_cong 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2846
by (forw_inst_tac [("y","y")] real_sum_square_gt_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2847
by (asm_full_simp_tac (simpset() addsimps [cos_squared_eq]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2848
by (subgoal_tac "sin xa ^ 2 =  (y / sqrt (x * x + y * y)) ^ 2" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2849
by (rtac lemma_cos_sin_eq 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2850
by (Force_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2851
by (Asm_full_simp_tac 2);
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2852
by (auto_tac (claset(),simpset() addsimps [realpow_two_disj,numeral_2_eq_2] 
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2853
    delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2854
qed "sin_x_y_disj";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2855
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2856
(*FIXME: remove real_sqrt_gt_zero_pow2*)
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2857
Goal "0 <= x ==> sqrt(x) ^ 2 = x";
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2858
by (asm_full_simp_tac (simpset() addsimps [real_sqrt_pow_abs,abs_if]) 1); 
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2859
qed "real_sqrt_ge_zero_pow2";
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2860
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2861
Goal "y ~= 0 ==> x / sqrt (x * x + y * y) ~= -(1::real)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2862
by Auto_tac;
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2863
by (dres_inst_tac [("f","%x. x ^ 2")] arg_cong 1); 
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2864
by (asm_full_simp_tac (simpset() addsimps [power_divide,thm"real_mult_self_sum_ge_zero",real_sqrt_ge_zero_pow2]) 1); 
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2865
by (asm_full_simp_tac (simpset() addsimps [inst "a" "1" divide_eq_eq, power2_eq_square] addsplits [split_if_asm]) 1); 
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2866
qed "cos_not_eq_minus_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2867
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2868
Goalw [arcos_def] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2869
  "arcos (x / sqrt (x * x + y * y)) = pi ==> y = 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2870
by (rtac ccontr 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2871
by (rtac swap 1 THEN assume_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2872
by (rtac (([cos_x_y_ge_minus_one,cos_x_y_le_one] MRS cos_total) RS 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2873
     ((CLAIM "EX! x. P x ==> EX x. P x") RS someI2_ex)) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2874
by (auto_tac (claset() addDs [cos_not_eq_minus_one],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2875
qed "arcos_eq_pi_cancel";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2876
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2877
Goalw [real_divide_def] "x ~= 0 ==> x / sqrt (x * x + y * y) ~= 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2878
by (forw_inst_tac [("y3","y")] (real_sqrt_sum_squares_gt_zero3 
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2879
    RS real_not_refl2 RS not_sym RS nonzero_imp_inverse_nonzero) 1);
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2880
by (auto_tac (claset(),simpset() addsimps [power2_eq_square]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2881
qed "lemma_cos_not_eq_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2882
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2883
Goal "[| x ~= 0; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2884
\        sin xa = y / sqrt (x * x + y * y) \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2885
\     |] ==>  cos xa = x / sqrt (x * x + y * y) | \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2886
\             cos xa = - x / sqrt (x * x + y * y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2887
by (dres_inst_tac [("f","%x. x ^ 2")] arg_cong 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2888
by (forw_inst_tac [("y","y")] real_sum_square_gt_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2889
by (asm_full_simp_tac (simpset() addsimps [sin_squared_eq] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2890
    delsimps [realpow_Suc]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2891
by (subgoal_tac "cos xa ^ 2 =  (x / sqrt (x * x + y * y)) ^ 2" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2892
by (rtac lemma_sin_cos_eq 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2893
by (Force_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2894
by (Asm_full_simp_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2895
by (auto_tac (claset(),simpset() addsimps [realpow_two_disj,
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2896
    numeral_2_eq_2] delsimps [realpow_Suc]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2897
qed "cos_x_y_disj";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2898
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2899
Goal "0 < y ==> - y / sqrt (x * x + y * y) < 0";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2900
by (case_tac "x = 0" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2901
by (auto_tac (claset(),simpset() addsimps [abs_eqI2]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2902
by (dres_inst_tac [("y","y")] real_sqrt_sum_squares_gt_zero3 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  2903
by (auto_tac (claset(),simpset() addsimps [zero_less_mult_iff,
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2904
    real_divide_def,power2_eq_square])); 
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2905
qed "real_sqrt_divide_less_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2906
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2907
Goal "[| x ~= 0; 0 < y |] ==> EX r a. x = r * cos a & y = r * sin a";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2908
by (res_inst_tac [("x","sqrt(x ^ 2 + y ^ 2)")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2909
by (res_inst_tac [("x","arcos(x / sqrt (x * x + y * y))")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2910
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2911
by (dres_inst_tac [("y2","y")] (real_sqrt_sum_squares_gt_zero3 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2912
    RS real_not_refl2 RS not_sym) 1);
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2913
by (auto_tac (claset(),simpset() addsimps [power2_eq_square]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2914
by (rewtac arcos_def);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2915
by (cut_inst_tac [("x1","x"),("y1","y")] ([cos_x_y_ge_minus_one,cos_x_y_le_one] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2916
    MRS cos_total) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2917
by (rtac someI2_ex 1 THEN Blast_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2918
by (thin_tac 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2919
    "EX! xa. 0 <= xa & xa <= pi & cos xa = x / sqrt (x * x + y * y)" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2920
by (ftac sin_x_y_disj 1 THEN Blast_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2921
by (dres_inst_tac [("y2","y")] (real_sqrt_sum_squares_gt_zero3 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2922
    RS real_not_refl2 RS not_sym) 1);
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2923
by (auto_tac (claset(),simpset() addsimps [power2_eq_square]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2924
by (dtac sin_ge_zero 1 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2925
by (dres_inst_tac [("x","x")] real_sqrt_divide_less_zero 1 THEN Auto_tac);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2926
qed "polar_ex1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2927
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2928
Goal "x * x = -(y * y) ==> y = (0::real)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2929
by (auto_tac (claset() addIs [real_sum_squares_cancel],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2930
qed "real_sum_squares_cancel2a";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2931
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2932
Goal "[| x ~= 0; y < 0 |] ==> EX r a. x = r * cos a & y = r * sin a";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2933
by (cut_inst_tac [("x","0"),("y","x")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2934
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2935
by (res_inst_tac [("x","sqrt(x ^ 2 + y ^ 2)")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2936
by (res_inst_tac [("x","arcsin(y / sqrt (x * x + y * y))")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2937
by (auto_tac (claset() addDs [real_sum_squares_cancel2a],
14352
a8b1a44d8264 Modified real arithmetic simplification
paulson
parents: 14348
diff changeset
  2938
    simpset() addsimps [power2_eq_square]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2939
by (rewtac arcsin_def);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2940
by (cut_inst_tac [("x1","x"),("y1","y")] ([cos_x_y_ge_minus_one1a,
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2941
    cos_x_y_le_one2] MRS sin_total) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2942
by (rtac someI2_ex 1 THEN Blast_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2943
by (thin_tac "EX! xa. - (pi/2) <= xa & \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2944
\                xa <= pi/2 & sin xa = y / sqrt (x * x + y * y)" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2945
by (ftac ((CLAIM "0 < x ==> (x::real) ~= 0") RS cos_x_y_disj) 1 THEN Blast_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2946
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2947
by (dtac cos_ge_zero 1 THEN Force_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2948
by (dres_inst_tac [("x","y")] real_sqrt_divide_less_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2949
by (auto_tac (claset(),simpset() addsimps [real_add_commute]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2950
by (dtac (ARITH_PROVE "(y::real) < 0 ==> 0 < - y") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2951
by (dtac (CLAIM "x < (0::real) ==> x ~= 0" RS polar_ex1) 1 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2952
by (REPEAT(etac exE 1));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2953
by (res_inst_tac [("x","r")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2954
by (res_inst_tac [("x","-a")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2955
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2956
qed "polar_ex2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2957
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2958
Goal "EX r a. x = r * cos a & y = r * sin a";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2959
by (case_tac "x = 0" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2960
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2961
by (res_inst_tac [("x","y")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2962
by (res_inst_tac [("x","pi/2")] exI 1 THEN Auto_tac);
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  2963
by (cut_inst_tac [("x","0"),("y","y")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2964
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2965
by (res_inst_tac [("x","x")] exI 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2966
by (res_inst_tac [("x","0")] exI 2 THEN Auto_tac);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2967
by (ALLGOALS(blast_tac (claset() addIs [polar_ex1,polar_ex2])));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2968
qed "polar_Ex";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2969
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2970
Goal "abs x <= sqrt (x ^ 2 + y ^ 2)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2971
by (res_inst_tac [("n","1")] realpow_increasing 1);
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2972
by (auto_tac (claset(),simpset() addsimps [numeral_2_eq_2 RS sym]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2973
qed "real_sqrt_ge_abs1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2974
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2975
Goal "abs y <= sqrt (x ^ 2 + y ^ 2)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2976
by (rtac (real_add_commute RS subst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2977
by (rtac real_sqrt_ge_abs1 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2978
qed "real_sqrt_ge_abs2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2979
Addsimps [real_sqrt_ge_abs1,real_sqrt_ge_abs2];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2980
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2981
Goal "0 < sqrt 2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2982
by (auto_tac (claset() addIs [real_sqrt_gt_zero],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2983
qed "real_sqrt_two_gt_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2984
Addsimps [real_sqrt_two_gt_zero];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2985
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2986
Goal "0 <= sqrt 2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2987
by (auto_tac (claset() addIs [real_sqrt_ge_zero],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2988
qed "real_sqrt_two_ge_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2989
Addsimps [real_sqrt_two_ge_zero];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2990
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2991
Goal "1 < sqrt 2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2992
by (res_inst_tac [("y","7/5")] order_less_le_trans 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2993
by (res_inst_tac [("n","1")] realpow_increasing 2);
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2994
by (auto_tac (claset(),simpset() addsimps [real_sqrt_gt_zero_pow2,numeral_2_eq_2 RS sym] 
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2995
    delsimps [realpow_Suc]));
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  2996
by (simp_tac (simpset() addsimps [numeral_2_eq_2]) 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2997
qed "real_sqrt_two_gt_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2998
Addsimps [real_sqrt_two_gt_one];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  2999
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3000
Goal "0 < u ==> u / sqrt 2 < u";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3001
by (res_inst_tac [("z1","inverse u")] (real_mult_less_iff1 RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3002
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3003
by (res_inst_tac [("z1","sqrt 2")] (real_mult_less_iff1 RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3004
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3005
qed "lemma_real_divide_sqrt_less";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3006
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3007
(* needed for infinitely close relation over the nonstandard complex numbers *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3008
Goal "[| 0 < u; x < u/2; y < u/2; 0 <= x; 0 <= y |] ==> sqrt (x ^ 2 + y ^ 2) < u";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3009
by (res_inst_tac [("y","u/sqrt 2")] order_le_less_trans 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3010
by (etac lemma_real_divide_sqrt_less 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3011
by (res_inst_tac [("n","1")] realpow_increasing 1);
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14270
diff changeset
  3012
by (auto_tac (claset(),
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14270
diff changeset
  3013
    simpset() addsimps [real_0_le_divide_iff,realpow_divide,
14322
fa78e7eb1dac deleting redundant theorems
paulson
parents: 14309
diff changeset
  3014
    real_sqrt_gt_zero_pow2,numeral_2_eq_2 RS sym] delsimps [realpow_Suc]));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3015
by (res_inst_tac [("t","u ^ 2")] (real_sum_of_halves RS subst) 1);
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14331
diff changeset
  3016
by (rtac add_mono 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3017
by (auto_tac (claset(),simpset() delsimps [realpow_Suc]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3018
by (ALLGOALS(rtac ((CLAIM "(2::real) ^ 2 = 4") RS subst)));
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  3019
by (ALLGOALS(rtac (power_mult_distrib RS subst)));
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14336
diff changeset
  3020
by (ALLGOALS(rtac power_mono));
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3021
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3022
qed "lemma_sqrt_hcomplex_capprox";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3023
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3024
Addsimps [real_sqrt_sum_squares_ge_zero RS abs_eqI1];
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3025
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3026
(* A few theorems involving ln and derivatives, etc *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3027
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3028
Goal "DERIV ln z :> l ==> DERIV (%x. exp (ln x)) z :> exp (ln z) * l";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3029
by (etac DERIV_fun_exp 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3030
qed "lemma_DERIV_ln";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3031
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3032
Goal "0 < z ==> ( *f* (%x. exp (ln x))) z = z";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3033
by (res_inst_tac [("z","z")] eq_Abs_hypreal 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3034
by (auto_tac (claset(),simpset() addsimps [starfun,
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3035
    hypreal_zero_def,hypreal_less]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3036
qed "STAR_exp_ln";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3037
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3038
Goal "[|e : Infinitesimal; 0 < x |] ==> 0 < hypreal_of_real x + e";
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14322
diff changeset
  3039
by (res_inst_tac [("c1","-e")] (add_less_cancel_right RS iffD1) 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3040
by (auto_tac (claset() addIs [Infinitesimal_less_SReal],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3041
qed "hypreal_add_Infinitesimal_gt_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3042
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3043
Goalw [nsderiv_def,NSLIM_def] "0 < z ==> NSDERIV (%x. exp (ln x)) z :> 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3044
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3045
by (rtac ccontr 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3046
by (subgoal_tac "0 < hypreal_of_real z + h" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3047
by (dtac STAR_exp_ln 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3048
by (rtac hypreal_add_Infinitesimal_gt_zero 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3049
by (dtac (CLAIM "h ~= 0 ==> h/h = (1::hypreal)") 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3050
by (auto_tac (claset(),simpset() addsimps [exp_ln_iff RS sym] 
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3051
    delsimps [exp_ln_iff]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3052
qed "NSDERIV_exp_ln_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3053
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3054
Goal "0 < z ==> DERIV (%x. exp (ln x)) z :> 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3055
by (auto_tac (claset() addIs [NSDERIV_exp_ln_one],
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3056
    simpset() addsimps [NSDERIV_DERIV_iff RS sym]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3057
qed "DERIV_exp_ln_one";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3058
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3059
Goal "[| 0 < z; DERIV ln z :> l |] ==>  exp (ln z) * l = 1";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3060
by (rtac DERIV_unique 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3061
by (rtac lemma_DERIV_ln 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3062
by (rtac DERIV_exp_ln_one 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3063
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3064
qed "lemma_DERIV_ln2";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3065
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3066
Goal "[| 0 < z; DERIV ln z :> l |] ==>  l = 1/(exp (ln z))";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3067
by (res_inst_tac [("c1","exp(ln z)")] (real_mult_left_cancel RS iffD1) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3068
by (auto_tac (claset() addIs [lemma_DERIV_ln2],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3069
qed "lemma_DERIV_ln3";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3070
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3071
Goal "[| 0 < z; DERIV ln z :> l |] ==>  l = 1/z";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3072
by (res_inst_tac [("t","z")] (exp_ln_iff RS iffD2 RS subst) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3073
by (auto_tac (claset() addIs [lemma_DERIV_ln3],simpset()));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3074
qed "lemma_DERIV_ln4";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3075
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3076
(* need to rename second isCont_inverse *)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3077
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3078
Goal "[| 0 < d; ALL z. abs(z - x) <= d --> g(f(z)) = z; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3079
\        ALL z. abs(z - x) <= d --> isCont f z |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3080
\     ==> isCont g (f x)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3081
by (simp_tac (simpset() addsimps [isCont_iff,LIM_def]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3082
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3083
by (dres_inst_tac [("d1.0","r")] real_lbound_gt_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3084
by (assume_tac 1 THEN Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3085
by (subgoal_tac "ALL z. abs(z - x) <= e --> (g(f z) = z)" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3086
by (Force_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3087
by (subgoal_tac "ALL z. abs(z - x) <= e --> isCont f z" 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3088
by (Force_tac 2);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3089
by (dres_inst_tac [("d","e")] isCont_inj_range 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3090
by (assume_tac 2 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3091
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3092
by (res_inst_tac [("x","ea")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3093
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3094
by (rotate_tac 4 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3095
by (dres_inst_tac [("x","f(x) + xa")] spec 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3096
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3097
by (dtac sym 1 THEN Auto_tac);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3098
by (arith_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3099
qed "isCont_inv_fun";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3100
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3101
(*
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3102
Goalw [isCont_def]  
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3103
      "[| isCont f x; f x ~= 0 |] ==> isCont (%x. inverse (f x)) x";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3104
by (blast_tac (claset() addIs [LIM_inverse]) 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3105
qed "isCont_inverse";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3106
*)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3107
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3108
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3109
Goal "[| 0 < d; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3110
\        ALL z. abs(z - x) <= d --> g(f(z)) = z; \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3111
\        ALL z. abs(z - x) <= d --> isCont f z |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3112
\      ==> EX e. 0 < (e::real) & \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3113
\            (ALL y. 0 < abs(y - f(x::real)) & abs(y - f(x)) < e --> f(g(y)) = y)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3114
by (dtac isCont_inj_range 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3115
by (assume_tac 2 THEN assume_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3116
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3117
by (res_inst_tac [("x","e")] exI 1 THEN Auto_tac);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3118
by (rotate_tac 2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3119
by (dres_inst_tac [("x","y")] spec 1 THEN Auto_tac);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3120
qed "isCont_inv_fun_inv";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3121
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3122
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3123
(* Bartle/Sherbert: Introduction to Real Analysis, Theorem 4.2.9, p. 110*)
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3124
Goal "[| f -- c --> l; 0 < l |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3125
\        ==> EX r. 0 < r & (ALL x. x ~= c & abs (c - x) < r --> 0 < f x)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3126
by (auto_tac (claset(),simpset() addsimps [LIM_def]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3127
by (dres_inst_tac [("x","l/2")] spec 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3128
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3129
by (Force_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3130
by (res_inst_tac [("x","s")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3131
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3132
by (rotate_tac 2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3133
by (dres_inst_tac [("x","x")] spec 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3134
by (auto_tac (claset(),HOL_ss addsimps [abs_interval_iff]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3135
by (auto_tac (claset(),simpset() addsimps [CLAIM "(l::real) + -(l/2) = l/2",
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3136
    CLAIM "(a < f + - l) = (l + a < (f::real))"]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3137
qed "LIM_fun_gt_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3138
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3139
Goal "[| f -- c --> l; l < 0 |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3140
\        ==> EX r. 0 < r & (ALL x. x ~= c & abs (c - x) < r --> f x < 0)";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3141
by (auto_tac (claset(),simpset() addsimps [LIM_def]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3142
by (dres_inst_tac [("x","-l/2")] spec 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3143
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3144
by (Force_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3145
by (res_inst_tac [("x","s")] exI 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3146
by (Step_tac 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3147
by (rotate_tac 2 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3148
by (dres_inst_tac [("x","x")] spec 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3149
by (auto_tac (claset(),HOL_ss addsimps [abs_interval_iff]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3150
by (auto_tac (claset(),simpset() addsimps [CLAIM "(l::real) + -(l/2) = l/2",
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3151
    CLAIM "(f + - l < a) = ((f::real) < l + a)"]));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3152
qed "LIM_fun_less_zero";
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3153
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3154
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3155
Goal "[| f -- c --> l; l ~= 0 |] \
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3156
\        ==> EX r. 0 < r & (ALL x. x ~= c & abs (c - x) < r --> f x ~= 0)";
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
  3157
by (cut_inst_tac [("x","l"),("y","0")] linorder_less_linear 1);
13958
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3158
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3159
by (dtac LIM_fun_less_zero 1);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3160
by (dtac LIM_fun_gt_zero 3);
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3161
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3162
by (ALLGOALS(res_inst_tac [("x","r")] exI));
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3163
by Auto_tac;
c1c67582c9b5 New material on integration, etc. Moving Hyperreal/ex
paulson
parents: 13601
diff changeset
  3164
qed "LIM_fun_not_zero";