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