src/HOL/Library/Fundamental_Theorem_Algebra.thy
author hoelzl
Tue, 05 Nov 2013 09:45:02 +0100
changeset 54263 c4159fe6fa46
parent 54230 b1d955791529
child 54489 03ff4d1e6784
permissions -rw-r--r--
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29197
6d4cb27ed19c adapted HOL source structure to distribution layout
haftmann
parents: 28952
diff changeset
     1
(* Author: Amine Chaieb, TU Muenchen *)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     2
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     3
header{*Fundamental Theorem of Algebra*}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     4
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     5
theory Fundamental_Theorem_Algebra
51537
abcd6d5f7508 more standard imports;
wenzelm
parents: 50636
diff changeset
     6
imports Polynomial Complex_Main
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     7
begin
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
     8
27445
0829a2c4b287 section -> subsection
huffman
parents: 27108
diff changeset
     9
subsection {* Square root of complex numbers *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    10
definition csqrt :: "complex \<Rightarrow> complex" where
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    11
"csqrt z = (if Im z = 0 then
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    12
            if 0 \<le> Re z then Complex (sqrt(Re z)) 0
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    13
            else Complex 0 (sqrt(- Re z))
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    14
           else Complex (sqrt((cmod z + Re z) /2))
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    15
                        ((Im z / abs(Im z)) * sqrt((cmod z - Re z) /2)))"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    16
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    17
lemma csqrt[algebra]: "(csqrt z)\<^sup>2 = z"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    18
proof-
29292
11045b88af1a avoid implicit prems -- tuned proofs;
wenzelm
parents: 29197
diff changeset
    19
  obtain x y where xy: "z = Complex x y" by (cases z)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    20
  {assume y0: "y = 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    21
    {assume x0: "x \<ge> 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    22
      then have ?thesis using y0 xy real_sqrt_pow2[OF x0]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
    23
        by (simp add: csqrt_def power2_eq_square)}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    24
    moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    25
    {assume "\<not> x \<ge> 0" hence x0: "- x \<ge> 0" by arith
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    26
      then have ?thesis using y0 xy real_sqrt_pow2[OF x0]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
    27
        by (simp add: csqrt_def power2_eq_square) }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    28
    ultimately have ?thesis by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    29
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    30
  {assume y0: "y\<noteq>0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    31
    {fix x y
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    32
      let ?z = "Complex x y"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    33
      from abs_Re_le_cmod[of ?z] have tha: "abs x \<le> cmod ?z" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    34
      hence "cmod ?z - x \<ge> 0" "cmod ?z + x \<ge> 0" by arith+
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    35
      hence "(sqrt (x * x + y * y) + x) / 2 \<ge> 0" "(sqrt (x * x + y * y) - x) / 2 \<ge> 0" by (simp_all add: power2_eq_square) }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    36
    note th = this
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    37
    have sq4: "\<And>x::real. x\<^sup>2 / 4 = (x / 2)\<^sup>2"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    38
      by (simp add: power2_eq_square)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    39
    from th[of x y]
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    40
    have sq4': "sqrt (((sqrt (x * x + y * y) + x)\<^sup>2 / 4)) = (sqrt (x * x + y * y) + x) / 2"
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    41
      "sqrt (((sqrt (x * x + y * y) - x)\<^sup>2 / 4)) = (sqrt (x * x + y * y) - x) / 2"
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    42
      unfolding sq4 by simp_all
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    43
    then have th1: "sqrt ((sqrt (x * x + y * y) + x) * (sqrt (x * x + y * y) + x) / 4) - sqrt ((sqrt (x * x + y * y) - x) * (sqrt (x * x + y * y) - x) / 4) = x"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    44
      unfolding power2_eq_square by simp
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
    45
    have "sqrt 4 = sqrt (2\<^sup>2)" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    46
    hence sqrt4: "sqrt 4 = 2" by (simp only: real_sqrt_abs)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    47
    have th2: "2 *(y * sqrt ((sqrt (x * x + y * y) - x) * (sqrt (x * x + y * y) + x) / 4)) / \<bar>y\<bar> = y"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    48
      using iffD2[OF real_sqrt_pow2_iff sum_power2_ge_zero[of x y]] y0
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    49
      unfolding power2_eq_square
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29538
diff changeset
    50
      by (simp add: algebra_simps real_sqrt_divide sqrt4)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    51
     from y0 xy have ?thesis  apply (simp add: csqrt_def power2_eq_square)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    52
       apply (simp add: real_sqrt_sum_squares_mult_ge_zero[of x y] real_sqrt_pow2[OF th(1)[of x y], unfolded power2_eq_square] real_sqrt_pow2[OF th(2)[of x y], unfolded power2_eq_square] real_sqrt_mult[symmetric])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    53
      using th1 th2  ..}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    54
  ultimately show ?thesis by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    55
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    56
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    57
27445
0829a2c4b287 section -> subsection
huffman
parents: 27108
diff changeset
    58
subsection{* More lemmas about module of complex numbers *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    59
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    60
lemma complex_of_real_power: "complex_of_real x ^ n = complex_of_real (x^n)"
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
    61
  by (rule of_real_power [symmetric])
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    62
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    63
lemma real_down2: "(0::real) < d1 \<Longrightarrow> 0 < d2 ==> EX e. 0 < e & e < d1 & e < d2"
29811
026b0f9f579f fixed Proofs and dependencies ; Theory Dense_Linear_Order moved to Library
chaieb@chaieb-laptop
parents: 29667
diff changeset
    64
  apply (rule exI[where x = "min d1 d2 / 2"])
026b0f9f579f fixed Proofs and dependencies ; Theory Dense_Linear_Order moved to Library
chaieb@chaieb-laptop
parents: 29667
diff changeset
    65
  by (simp add: field_simps min_def)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    66
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    67
text{* The triangle inequality for cmod *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    68
lemma complex_mod_triangle_sub: "cmod w \<le> cmod (w + z) + norm z"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    69
  using complex_mod_triangle_ineq2[of "w + z" "-z"] by auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    70
27445
0829a2c4b287 section -> subsection
huffman
parents: 27108
diff changeset
    71
subsection{* Basic lemmas about complex polynomials *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    72
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    73
lemma poly_bound_exists:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    74
  shows "\<exists>m. m > 0 \<and> (\<forall>z. cmod z <= r \<longrightarrow> cmod (poly p z) \<le> m)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    75
proof(induct p)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
    76
  case 0 thus ?case by (rule exI[where x=1], simp)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    77
next
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
    78
  case (pCons c cs)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
    79
  from pCons.hyps obtain m where m: "\<forall>z. cmod z \<le> r \<longrightarrow> cmod (poly cs z) \<le> m"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    80
    by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    81
  let ?k = " 1 + cmod c + \<bar>r * m\<bar>"
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
    82
  have kp: "?k > 0" using abs_ge_zero[of "r*m"] norm_ge_zero[of c] by arith
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    83
  {fix z
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    84
    assume H: "cmod z \<le> r"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    85
    from m H have th: "cmod (poly cs z) \<le> m" by blast
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
    86
    from H have rp: "r \<ge> 0" using norm_ge_zero[of z] by arith
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
    87
    have "cmod (poly (pCons c cs) z) \<le> cmod c + cmod (z* poly cs z)"
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
    88
      using norm_triangle_ineq[of c "z* poly cs z"] by simp
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
    89
    also have "\<dots> \<le> cmod c + r*m" using mult_mono[OF H th rp norm_ge_zero[of "poly cs z"]] by (simp add: norm_mult)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    90
    also have "\<dots> \<le> ?k" by simp
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
    91
    finally have "cmod (poly (pCons c cs) z) \<le> ?k" .}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    92
  with kp show ?case by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    93
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    94
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    95
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
    96
text{* Offsetting the variable in a polynomial gives another of same degree *}
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
    97
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
    98
definition offset_poly :: "'a::comm_semiring_0 poly \<Rightarrow> 'a \<Rightarrow> 'a poly"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
    99
where
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   100
  "offset_poly p h = fold_coeffs (\<lambda>a q. smult h q + pCons a q) p 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   101
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   102
lemma offset_poly_0: "offset_poly 0 h = 0"
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   103
  by (simp add: offset_poly_def)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   104
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   105
lemma offset_poly_pCons:
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   106
  "offset_poly (pCons a p) h =
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   107
    smult h (offset_poly p h) + pCons a (offset_poly p h)"
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   108
  by (cases "p = 0 \<and> a = 0") (auto simp add: offset_poly_def)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   109
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   110
lemma offset_poly_single: "offset_poly [:a:] h = [:a:]"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   111
by (simp add: offset_poly_pCons offset_poly_0)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   112
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   113
lemma poly_offset_poly: "poly (offset_poly p h) x = poly p (h + x)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   114
apply (induct p)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   115
apply (simp add: offset_poly_0)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29538
diff changeset
   116
apply (simp add: offset_poly_pCons algebra_simps)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   117
done
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   118
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   119
lemma offset_poly_eq_0_lemma: "smult c p + pCons a p = 0 \<Longrightarrow> p = 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   120
by (induct p arbitrary: a, simp, force)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   121
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   122
lemma offset_poly_eq_0_iff: "offset_poly p h = 0 \<longleftrightarrow> p = 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   123
apply (safe intro!: offset_poly_0)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   124
apply (induct p, simp)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   125
apply (simp add: offset_poly_pCons)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   126
apply (frule offset_poly_eq_0_lemma, simp)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   127
done
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   128
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   129
lemma degree_offset_poly: "degree (offset_poly p h) = degree p"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   130
apply (induct p)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   131
apply (simp add: offset_poly_0)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   132
apply (case_tac "p = 0")
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   133
apply (simp add: offset_poly_0 offset_poly_pCons)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   134
apply (simp add: offset_poly_pCons)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   135
apply (subst degree_add_eq_right)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   136
apply (rule le_less_trans [OF degree_smult_le])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   137
apply (simp add: offset_poly_eq_0_iff)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   138
apply (simp add: offset_poly_eq_0_iff)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   139
done
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   140
29478
4a2482e16934 code generation for polynomials
huffman
parents: 29476
diff changeset
   141
definition
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   142
  "psize p = (if p = 0 then 0 else Suc (degree p))"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   143
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   144
lemma psize_eq_0_iff [simp]: "psize p = 0 \<longleftrightarrow> p = 0"
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   145
  unfolding psize_def by simp
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   146
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   147
lemma poly_offset: "\<exists> q. psize q = psize p \<and> (\<forall>x. poly q (x::complex) = poly p (a + x))"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   148
proof (intro exI conjI)
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   149
  show "psize (offset_poly p a) = psize p"
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   150
    unfolding psize_def
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   151
    by (simp add: offset_poly_eq_0_iff degree_offset_poly)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   152
  show "\<forall>x. poly (offset_poly p a) x = poly p (a + x)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   153
    by (simp add: poly_offset_poly)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   154
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   155
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   156
text{* An alternative useful formulation of completeness of the reals *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   157
lemma real_sup_exists: assumes ex: "\<exists>x. P x" and bz: "\<exists>z. \<forall>x. P x \<longrightarrow> x < z"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   158
  shows "\<exists>(s::real). \<forall>y. (\<exists>x. P x \<and> y < x) \<longleftrightarrow> y < s"
54263
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
   159
proof
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
   160
  from bz have "bdd_above (Collect P)"
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
   161
    by (force intro: less_imp_le)
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
   162
  then show "\<forall>y. (\<exists>x. P x \<and> y < x) \<longleftrightarrow> y < Sup (Collect P)"
c4159fe6fa46 move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
hoelzl
parents: 54230
diff changeset
   163
    using ex bz by (subst less_cSup_iff) auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   164
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   165
27445
0829a2c4b287 section -> subsection
huffman
parents: 27108
diff changeset
   166
subsection {* Fundamental theorem of algebra *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   167
lemma  unimodular_reduce_norm:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   168
  assumes md: "cmod z = 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   169
  shows "cmod (z + 1) < 1 \<or> cmod (z - 1) < 1 \<or> cmod (z + ii) < 1 \<or> cmod (z - ii) < 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   170
proof-
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   171
  obtain x y where z: "z = Complex x y " by (cases z, auto)
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
   172
  from md z have xy: "x\<^sup>2 + y\<^sup>2 = 1" by (simp add: cmod_def)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   173
  {assume C: "cmod (z + 1) \<ge> 1" "cmod (z - 1) \<ge> 1" "cmod (z + ii) \<ge> 1" "cmod (z - ii) \<ge> 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   174
    from C z xy have "2*x \<le> 1" "2*x \<ge> -1" "2*y \<le> 1" "2*y \<ge> -1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29538
diff changeset
   175
      by (simp_all add: cmod_def power2_eq_square algebra_simps)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   176
    hence "abs (2*x) \<le> 1" "abs (2*y) \<le> 1" by simp_all
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
   177
    hence "(abs (2 * x))\<^sup>2 <= 1\<^sup>2" "(abs (2 * y))\<^sup>2 <= 1\<^sup>2"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   178
      by - (rule power_mono, simp, simp)+
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
   179
    hence th0: "4*x\<^sup>2 \<le> 1" "4*y\<^sup>2 \<le> 1"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   180
      by (simp_all add: power_mult_distrib)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   181
    from add_mono[OF th0] xy have False by simp }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   182
  thus ?thesis unfolding linorder_not_le[symmetric] by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   183
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   184
26135
01f4e5d21eaf fixed document;
wenzelm
parents: 26123
diff changeset
   185
text{* Hence we can always reduce modulus of @{text "1 + b z^n"} if nonzero *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   186
lemma reduce_poly_simple:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   187
 assumes b: "b \<noteq> 0" and n: "n\<noteq>0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   188
  shows "\<exists>z. cmod (1 + b * z^n) < 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   189
using n
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   190
proof(induct n rule: nat_less_induct)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   191
  fix n
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   192
  assume IH: "\<forall>m<n. m \<noteq> 0 \<longrightarrow> (\<exists>z. cmod (1 + b * z ^ m) < 1)" and n: "n \<noteq> 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   193
  let ?P = "\<lambda>z n. cmod (1 + b * z ^ n) < 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   194
  {assume e: "even n"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   195
    hence "\<exists>m. n = 2*m" by presburger
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   196
    then obtain m where m: "n = 2*m" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   197
    from n m have "m\<noteq>0" "m < n" by presburger+
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   198
    with IH[rule_format, of m] obtain z where z: "?P z m" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   199
    from z have "?P (csqrt z) n" by (simp add: m power_mult csqrt)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   200
    hence "\<exists>z. ?P z n" ..}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   201
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   202
  {assume o: "odd n"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   203
    have th0: "cmod (complex_of_real (cmod b) / b) = 1"
36975
fa6244be5215 simplify proof
huffman
parents: 36778
diff changeset
   204
      using b by (simp add: norm_divide)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   205
    from o have "\<exists>m. n = Suc (2*m)" by presburger+
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   206
    then obtain m where m: "n = Suc (2*m)" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   207
    from unimodular_reduce_norm[OF th0] o
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   208
    have "\<exists>v. cmod (complex_of_real (cmod b) / b + v^n) < 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   209
      apply (cases "cmod (complex_of_real (cmod b) / b + 1) < 1", rule_tac x="1" in exI, simp)
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53077
diff changeset
   210
      apply (cases "cmod (complex_of_real (cmod b) / b - 1) < 1", rule_tac x="-1" in exI, simp del: minus_one add: minus_one [symmetric])
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   211
      apply (cases "cmod (complex_of_real (cmod b) / b + ii) < 1")
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   212
      apply (cases "even m", rule_tac x="ii" in exI, simp add: m power_mult)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   213
      apply (rule_tac x="- ii" in exI, simp add: m power_mult)
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53077
diff changeset
   214
      apply (cases "even m", rule_tac x="- ii" in exI, simp add: m power_mult)
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53077
diff changeset
   215
      apply (rule_tac x="ii" in exI, simp add: m power_mult)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   216
      done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   217
    then obtain v where v: "cmod (complex_of_real (cmod b) / b + v^n) < 1" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   218
    let ?w = "v / complex_of_real (root n (cmod b))"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   219
    from odd_real_root_pow[OF o, of "cmod b"]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   220
    have th1: "?w ^ n = v^n / complex_of_real (cmod b)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   221
      by (simp add: power_divide complex_of_real_power)
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
   222
    have th2:"cmod (complex_of_real (cmod b) / b) = 1" using b by (simp add: norm_divide)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   223
    hence th3: "cmod (complex_of_real (cmod b) / b) \<ge> 0" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   224
    have th4: "cmod (complex_of_real (cmod b) / b) *
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   225
   cmod (1 + b * (v ^ n / complex_of_real (cmod b)))
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   226
   < cmod (complex_of_real (cmod b) / b) * 1"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 46240
diff changeset
   227
      apply (simp only: norm_mult[symmetric] distrib_left)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   228
      using b v by (simp add: th2)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   229
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   230
    from mult_less_imp_less_left[OF th4 th3]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   231
    have "?P ?w n" unfolding th1 .
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   232
    hence "\<exists>z. ?P z n" .. }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   233
  ultimately show "\<exists>z. ?P z n" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   234
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   235
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   236
text{* Bolzano-Weierstrass type property for closed disc in complex plane. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   237
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   238
lemma metric_bound_lemma: "cmod (x - y) <= \<bar>Re x - Re y\<bar> + \<bar>Im x - Im y\<bar>"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   239
  using real_sqrt_sum_squares_triangle_ineq[of "Re x - Re y" 0 0 "Im x - Im y" ]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   240
  unfolding cmod_def by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   241
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   242
lemma bolzano_weierstrass_complex_disc:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   243
  assumes r: "\<forall>n. cmod (s n) \<le> r"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   244
  shows "\<exists>f z. subseq f \<and> (\<forall>e >0. \<exists>N. \<forall>n \<ge> N. cmod (s (f n) - z) < e)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   245
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   246
  from seq_monosub[of "Re o s"]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   247
  obtain f g where f: "subseq f" "monoseq (\<lambda>n. Re (s (f n)))"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   248
    unfolding o_def by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   249
  from seq_monosub[of "Im o s o f"]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   250
  obtain g where g: "subseq g" "monoseq (\<lambda>n. Im (s(f(g n))))" unfolding o_def by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   251
  let ?h = "f o g"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   252
  from r[rule_format, of 0] have rp: "r \<ge> 0" using norm_ge_zero[of "s 0"] by arith
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   253
  have th:"\<forall>n. r + 1 \<ge> \<bar> Re (s n)\<bar>"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   254
  proof
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   255
    fix n
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   256
    from abs_Re_le_cmod[of "s n"] r[rule_format, of n]  show "\<bar>Re (s n)\<bar> \<le> r + 1" by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   257
  qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   258
  have conv1: "convergent (\<lambda>n. Re (s ( f n)))"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   259
    apply (rule Bseq_monoseq_convergent)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   260
    apply (simp add: Bseq_def)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   261
    apply (rule exI[where x= "r + 1"])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   262
    using th rp apply simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   263
    using f(2) .
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   264
  have th:"\<forall>n. r + 1 \<ge> \<bar> Im (s n)\<bar>"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   265
  proof
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   266
    fix n
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   267
    from abs_Im_le_cmod[of "s n"] r[rule_format, of n]  show "\<bar>Im (s n)\<bar> \<le> r + 1" by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   268
  qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   269
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   270
  have conv2: "convergent (\<lambda>n. Im (s (f (g n))))"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   271
    apply (rule Bseq_monoseq_convergent)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   272
    apply (simp add: Bseq_def)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   273
    apply (rule exI[where x= "r + 1"])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   274
    using th rp apply simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   275
    using g(2) .
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   276
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   277
  from conv1[unfolded convergent_def] obtain x where "LIMSEQ (\<lambda>n. Re (s (f n))) x"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   278
    by blast
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   279
  hence  x: "\<forall>r>0. \<exists>n0. \<forall>n\<ge>n0. \<bar> Re (s (f n)) - x \<bar> < r"
31337
a9ed5fcc5e39 LIMSEQ_def -> LIMSEQ_iff
huffman
parents: 31021
diff changeset
   280
    unfolding LIMSEQ_iff real_norm_def .
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   281
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   282
  from conv2[unfolded convergent_def] obtain y where "LIMSEQ (\<lambda>n. Im (s (f (g n)))) y"
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   283
    by blast
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   284
  hence  y: "\<forall>r>0. \<exists>n0. \<forall>n\<ge>n0. \<bar> Im (s (f (g n))) - y \<bar> < r"
31337
a9ed5fcc5e39 LIMSEQ_def -> LIMSEQ_iff
huffman
parents: 31021
diff changeset
   285
    unfolding LIMSEQ_iff real_norm_def .
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   286
  let ?w = "Complex x y"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   287
  from f(1) g(1) have hs: "subseq ?h" unfolding subseq_def by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   288
  {fix e assume ep: "e > (0::real)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   289
    hence e2: "e/2 > 0" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   290
    from x[rule_format, OF e2] y[rule_format, OF e2]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   291
    obtain N1 N2 where N1: "\<forall>n\<ge>N1. \<bar>Re (s (f n)) - x\<bar> < e / 2" and N2: "\<forall>n\<ge>N2. \<bar>Im (s (f (g n))) - y\<bar> < e / 2" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   292
    {fix n assume nN12: "n \<ge> N1 + N2"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   293
      hence nN1: "g n \<ge> N1" and nN2: "n \<ge> N2" using seq_suble[OF g(1), of n] by arith+
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   294
      from add_strict_mono[OF N1[rule_format, OF nN1] N2[rule_format, OF nN2]]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   295
      have "cmod (s (?h n) - ?w) < e"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   296
        using metric_bound_lemma[of "s (f (g n))" ?w] by simp }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   297
    hence "\<exists>N. \<forall>n\<ge>N. cmod (s (?h n) - ?w) < e" by blast }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   298
  with hs show ?thesis  by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   299
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   300
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   301
text{* Polynomial is continuous. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   302
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   303
lemma poly_cont:
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   304
  assumes ep: "e > 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   305
  shows "\<exists>d >0. \<forall>w. 0 < cmod (w - z) \<and> cmod (w - z) < d \<longrightarrow> cmod (poly p w - poly p z) < e"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   306
proof-
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   307
  obtain q where q: "degree q = degree p" "\<And>x. poly q x = poly p (z + x)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   308
  proof
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   309
    show "degree (offset_poly p z) = degree p"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   310
      by (rule degree_offset_poly)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   311
    show "\<And>x. poly (offset_poly p z) x = poly p (z + x)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   312
      by (rule poly_offset_poly)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   313
  qed
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   314
  {fix w
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   315
    note q(2)[of "w - z", simplified]}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   316
  note th = this
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   317
  show ?thesis unfolding th[symmetric]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   318
  proof(induct q)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   319
    case 0 thus ?case  using ep by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   320
  next
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   321
    case (pCons c cs)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   322
    from poly_bound_exists[of 1 "cs"]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   323
    obtain m where m: "m > 0" "\<And>z. cmod z \<le> 1 \<Longrightarrow> cmod (poly cs z) \<le> m" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   324
    from ep m(1) have em0: "e/m > 0" by (simp add: field_simps)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   325
    have one0: "1 > (0::real)"  by arith
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   326
    from real_lbound_gt_zero[OF one0 em0]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   327
    obtain d where d: "d >0" "d < 1" "d < e / m" by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   328
    from d(1,3) m(1) have dm: "d*m > 0" "d*m < e"
36778
739a9379e29b avoid using real-specific versions of generic lemmas
huffman
parents: 34915
diff changeset
   329
      by (simp_all add: field_simps mult_pos_pos)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   330
    show ?case
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
   331
      proof(rule ex_forward[OF real_lbound_gt_zero[OF one0 em0]], clarsimp simp add: norm_mult)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   332
        fix d w
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   333
        assume H: "d > 0" "d < 1" "d < e/m" "w\<noteq>z" "cmod (w-z) < d"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   334
        hence d1: "cmod (w-z) \<le> 1" "d \<ge> 0" by simp_all
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   335
        from H(3) m(1) have dme: "d*m < e" by (simp add: field_simps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   336
        from H have th: "cmod (w-z) \<le> d" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   337
        from mult_mono[OF th m(2)[OF d1(1)] d1(2) norm_ge_zero] dme
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   338
        show "cmod (w - z) * cmod (poly cs (w - z)) < e" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   339
      qed
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   340
    qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   341
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   342
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   343
text{* Hence a polynomial attains minimum on a closed disc
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   344
  in the complex plane. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   345
lemma  poly_minimum_modulus_disc:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   346
  "\<exists>z. \<forall>w. cmod w \<le> r \<longrightarrow> cmod (poly p z) \<le> cmod (poly p w)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   347
proof-
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   348
  {assume "\<not> r \<ge> 0" hence ?thesis unfolding linorder_not_le
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   349
      apply -
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   350
      apply (rule exI[where x=0])
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   351
      apply auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   352
      apply (subgoal_tac "cmod w < 0")
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   353
      apply simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   354
      apply arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   355
      done }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   356
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   357
  {assume rp: "r \<ge> 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   358
    from rp have "cmod 0 \<le> r \<and> cmod (poly p 0) = - (- cmod (poly p 0))" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   359
    hence mth1: "\<exists>x z. cmod z \<le> r \<and> cmod (poly p z) = - x"  by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   360
    {fix x z
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   361
      assume H: "cmod z \<le> r" "cmod (poly p z) = - x" "\<not>x < 1"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   362
      hence "- x < 0 " by arith
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
   363
      with H(2) norm_ge_zero[of "poly p z"]  have False by simp }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   364
    then have mth2: "\<exists>z. \<forall>x. (\<exists>z. cmod z \<le> r \<and> cmod (poly p z) = - x) \<longrightarrow> x < z" by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   365
    from real_sup_exists[OF mth1 mth2] obtain s where
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   366
      s: "\<forall>y. (\<exists>x. (\<exists>z. cmod z \<le> r \<and> cmod (poly p z) = - x) \<and> y < x) \<longleftrightarrow>(y < s)" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   367
    let ?m = "-s"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   368
    {fix y
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   369
      from s[rule_format, of "-y"] have
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   370
    "(\<exists>z x. cmod z \<le> r \<and> -(- cmod (poly p z)) < y) \<longleftrightarrow> ?m < y"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   371
        unfolding minus_less_iff[of y ] equation_minus_iff by blast }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   372
    note s1 = this[unfolded minus_minus]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   373
    from s1[of ?m] have s1m: "\<And>z x. cmod z \<le> r \<Longrightarrow> cmod (poly p z) \<ge> ?m"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   374
      by auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   375
    {fix n::nat
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   376
      from s1[rule_format, of "?m + 1/real (Suc n)"]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   377
      have "\<exists>z. cmod z \<le> r \<and> cmod (poly p z) < - s + 1 / real (Suc n)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   378
        by simp}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   379
    hence th: "\<forall>n. \<exists>z. cmod z \<le> r \<and> cmod (poly p z) < - s + 1 / real (Suc n)" ..
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   380
    from choice[OF th] obtain g where
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   381
      g: "\<forall>n. cmod (g n) \<le> r" "\<forall>n. cmod (poly p (g n)) <?m+1 /real(Suc n)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   382
      by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   383
    from bolzano_weierstrass_complex_disc[OF g(1)]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   384
    obtain f z where fz: "subseq f" "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. cmod (g (f n) - z) < e"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   385
      by blast
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   386
    {fix w
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   387
      assume wr: "cmod w \<le> r"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   388
      let ?e = "\<bar>cmod (poly p z) - ?m\<bar>"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   389
      {assume e: "?e > 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   390
        hence e2: "?e/2 > 0" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   391
        from poly_cont[OF e2, of z p] obtain d where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   392
          d: "d>0" "\<forall>w. 0<cmod (w - z)\<and> cmod(w - z) < d \<longrightarrow> cmod(poly p w - poly p z) < ?e/2" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   393
        {fix w assume w: "cmod (w - z) < d"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   394
          have "cmod(poly p w - poly p z) < ?e / 2"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   395
            using d(2)[rule_format, of w] w e by (cases "w=z", simp_all)}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   396
        note th1 = this
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   397
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   398
        from fz(2)[rule_format, OF d(1)] obtain N1 where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   399
          N1: "\<forall>n\<ge>N1. cmod (g (f n) - z) < d" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   400
        from reals_Archimedean2[of "2/?e"] obtain N2::nat where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   401
          N2: "2/?e < real N2" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   402
        have th2: "cmod(poly p (g(f(N1 + N2))) - poly p z) < ?e/2"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   403
          using N1[rule_format, of "N1 + N2"] th1 by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   404
        {fix a b e2 m :: real
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   405
        have "a < e2 \<Longrightarrow> abs(b - m) < e2 \<Longrightarrow> 2 * e2 <= abs(b - m) + a
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   406
          ==> False" by arith}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   407
      note th0 = this
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   408
      have ath:
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   409
        "\<And>m x e. m <= x \<Longrightarrow>  x < m + e ==> abs(x - m::real) < e" by arith
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   410
      from s1m[OF g(1)[rule_format]]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   411
      have th31: "?m \<le> cmod(poly p (g (f (N1 + N2))))" .
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   412
      from seq_suble[OF fz(1), of "N1+N2"]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   413
      have th00: "real (Suc (N1+N2)) \<le> real (Suc (f (N1+N2)))" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   414
      have th000: "0 \<le> (1::real)" "(1::real) \<le> 1" "real (Suc (N1+N2)) > 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   415
        using N2 by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   416
      from frac_le[OF th000 th00] have th00: "?m +1 / real (Suc (f (N1 + N2))) \<le> ?m + 1 / real (Suc (N1 + N2))" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   417
      from g(2)[rule_format, of "f (N1 + N2)"]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   418
      have th01:"cmod (poly p (g (f (N1 + N2)))) < - s + 1 / real (Suc (f (N1 + N2)))" .
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   419
      from order_less_le_trans[OF th01 th00]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   420
      have th32: "cmod(poly p (g (f (N1 + N2)))) < ?m + (1/ real(Suc (N1 + N2)))" .
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   421
      from N2 have "2/?e < real (Suc (N1 + N2))" by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   422
      with e2 less_imp_inverse_less[of "2/?e" "real (Suc (N1 + N2))"]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   423
      have "?e/2 > 1/ real (Suc (N1 + N2))" by (simp add: inverse_eq_divide)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   424
      with ath[OF th31 th32]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   425
      have thc1:"\<bar>cmod(poly p (g (f (N1 + N2)))) - ?m\<bar>< ?e/2" by arith
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   426
      have ath2: "\<And>(a::real) b c m. \<bar>a - b\<bar> <= c ==> \<bar>b - m\<bar> <= \<bar>a - m\<bar> + c"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   427
        by arith
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   428
      have th22: "\<bar>cmod (poly p (g (f (N1 + N2)))) - cmod (poly p z)\<bar>
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   429
\<le> cmod (poly p (g (f (N1 + N2))) - poly p z)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   430
        by (simp add: norm_triangle_ineq3)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   431
      from ath2[OF th22, of ?m]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   432
      have thc2: "2*(?e/2) \<le> \<bar>cmod(poly p (g (f (N1 + N2)))) - ?m\<bar> + cmod (poly p (g (f (N1 + N2))) - poly p z)" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   433
      from th0[OF th2 thc1 thc2] have False .}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   434
      hence "?e = 0" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   435
      then have "cmod (poly p z) = ?m" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   436
      with s1m[OF wr]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   437
      have "cmod (poly p z) \<le> cmod (poly p w)" by simp }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   438
    hence ?thesis by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   439
  ultimately show ?thesis by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   440
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   441
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
   442
lemma "(rcis (sqrt (abs r)) (a/2))\<^sup>2 = rcis (abs r) a"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   443
  unfolding power2_eq_square
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   444
  apply (simp add: rcis_mult)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   445
  apply (simp add: power2_eq_square[symmetric])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   446
  done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   447
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   448
lemma cispi: "cis pi = -1"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   449
  unfolding cis_def
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   450
  by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   451
53077
a1b3784f8129 more symbols;
wenzelm
parents: 52380
diff changeset
   452
lemma "(rcis (sqrt (abs r)) ((pi + a)/2))\<^sup>2 = rcis (- abs r) a"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   453
  unfolding power2_eq_square
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   454
  apply (simp add: rcis_mult add_divide_distrib)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   455
  apply (simp add: power2_eq_square[symmetric] rcis_def cispi cis_mult[symmetric])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   456
  done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   457
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   458
text {* Nonzero polynomial in z goes to infinity as z does. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   459
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   460
lemma poly_infinity:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   461
  assumes ex: "p \<noteq> 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   462
  shows "\<exists>r. \<forall>z. r \<le> cmod z \<longrightarrow> d \<le> cmod (poly (pCons a p) z)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   463
using ex
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   464
proof(induct p arbitrary: a d)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   465
  case (pCons c cs a d)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   466
  {assume H: "cs \<noteq> 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   467
    with pCons.hyps obtain r where r: "\<forall>z. r \<le> cmod z \<longrightarrow> d + cmod a \<le> cmod (poly (pCons c cs) z)" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   468
    let ?r = "1 + \<bar>r\<bar>"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   469
    {fix z assume h: "1 + \<bar>r\<bar> \<le> cmod z"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   470
      have r0: "r \<le> cmod z" using h by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   471
      from r[rule_format, OF r0]
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   472
      have th0: "d + cmod a \<le> 1 * cmod(poly (pCons c cs) z)" by arith
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   473
      from h have z1: "cmod z \<ge> 1" by arith
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   474
      from order_trans[OF th0 mult_right_mono[OF z1 norm_ge_zero[of "poly (pCons c cs) z"]]]
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   475
      have th1: "d \<le> cmod(z * poly (pCons c cs) z) - cmod a"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   476
        unfolding norm_mult by (simp add: algebra_simps)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   477
      from complex_mod_triangle_sub[of "z * poly (pCons c cs) z" a]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   478
      have th2: "cmod(z * poly (pCons c cs) z) - cmod a \<le> cmod (poly (pCons a (pCons c cs)) z)"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   479
        by (simp add: algebra_simps)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   480
      from th1 th2 have "d \<le> cmod (poly (pCons a (pCons c cs)) z)"  by arith}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   481
    hence ?case by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   482
  moreover
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   483
  {assume cs0: "\<not> (cs \<noteq> 0)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   484
    with pCons.prems have c0: "c \<noteq> 0" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   485
    from cs0 have cs0': "cs = 0" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   486
    {fix z
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   487
      assume h: "(\<bar>d\<bar> + cmod a) / cmod c \<le> cmod z"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   488
      from c0 have "cmod c > 0" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   489
      from h c0 have th0: "\<bar>d\<bar> + cmod a \<le> cmod (z*c)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   490
        by (simp add: field_simps norm_mult)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   491
      have ath: "\<And>mzh mazh ma. mzh <= mazh + ma ==> abs(d) + ma <= mzh ==> d <= mazh" by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   492
      from complex_mod_triangle_sub[of "z*c" a ]
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   493
      have th1: "cmod (z * c) \<le> cmod (a + z * c) + cmod a"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   494
        by (simp add: algebra_simps)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   495
      from ath[OF th1 th0] have "d \<le> cmod (poly (pCons a (pCons c cs)) z)"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   496
        using cs0' by simp}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   497
    then have ?case  by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   498
  ultimately show ?case by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   499
qed simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   500
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   501
text {* Hence polynomial's modulus attains its minimum somewhere. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   502
lemma poly_minimum_modulus:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   503
  "\<exists>z.\<forall>w. cmod (poly p z) \<le> cmod (poly p w)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   504
proof(induct p)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   505
  case (pCons c cs)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   506
  {assume cs0: "cs \<noteq> 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   507
    from poly_infinity[OF cs0, of "cmod (poly (pCons c cs) 0)" c]
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   508
    obtain r where r: "\<And>z. r \<le> cmod z \<Longrightarrow> cmod (poly (pCons c cs) 0) \<le> cmod (poly (pCons c cs) z)" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   509
    have ath: "\<And>z r. r \<le> cmod z \<or> cmod z \<le> \<bar>r\<bar>" by arith
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   510
    from poly_minimum_modulus_disc[of "\<bar>r\<bar>" "pCons c cs"]
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   511
    obtain v where v: "\<And>w. cmod w \<le> \<bar>r\<bar> \<Longrightarrow> cmod (poly (pCons c cs) v) \<le> cmod (poly (pCons c cs) w)" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   512
    {fix z assume z: "r \<le> cmod z"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   513
      from v[of 0] r[OF z]
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   514
      have "cmod (poly (pCons c cs) v) \<le> cmod (poly (pCons c cs) z)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   515
        by simp }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   516
    note v0 = this
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   517
    from v0 v ath[of r] have ?case by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   518
  moreover
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   519
  {assume cs0: "\<not> (cs \<noteq> 0)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   520
    hence th:"cs = 0" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   521
    from th pCons.hyps have ?case by simp}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   522
  ultimately show ?case by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   523
qed simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   524
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   525
text{* Constant function (non-syntactic characterization). *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   526
definition "constant f = (\<forall>x y. f x = f y)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   527
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   528
lemma nonconstant_length: "\<not> (constant (poly p)) \<Longrightarrow> psize p \<ge> 2"
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   529
  unfolding constant_def psize_def
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   530
  apply (induct p, auto)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   531
  done
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   532
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   533
lemma poly_replicate_append:
31021
53642251a04f farewell to class recpower
haftmann
parents: 30488
diff changeset
   534
  "poly (monom 1 n * p) (x::'a::{comm_ring_1}) = x^n * poly p x"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   535
  by (simp add: poly_monom)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   536
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   537
text {* Decomposition of polynomial, skipping zero coefficients
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   538
  after the first.  *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   539
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   540
lemma poly_decompose_lemma:
31021
53642251a04f farewell to class recpower
haftmann
parents: 30488
diff changeset
   541
 assumes nz: "\<not>(\<forall>z. z\<noteq>0 \<longrightarrow> poly p z = (0::'a::{idom}))"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   542
  shows "\<exists>k a q. a\<noteq>0 \<and> Suc (psize q + k) = psize p \<and>
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   543
                 (\<forall>z. poly p z = z^k * poly (pCons a q) z)"
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   544
unfolding psize_def
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   545
using nz
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   546
proof(induct p)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   547
  case 0 thus ?case by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   548
next
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   549
  case (pCons c cs)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   550
  {assume c0: "c = 0"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 31337
diff changeset
   551
    from pCons.hyps pCons.prems c0 have ?case
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 31337
diff changeset
   552
      apply (auto)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   553
      apply (rule_tac x="k+1" in exI)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   554
      apply (rule_tac x="a" in exI, clarsimp)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   555
      apply (rule_tac x="q" in exI)
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 31337
diff changeset
   556
      by (auto)}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   557
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   558
  {assume c0: "c\<noteq>0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   559
    hence ?case apply-
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   560
      apply (rule exI[where x=0])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   561
      apply (rule exI[where x=c], clarsimp)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   562
      apply (rule exI[where x=cs])
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   563
      apply auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   564
      done}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   565
  ultimately show ?case by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   566
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   567
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   568
lemma poly_decompose:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   569
  assumes nc: "~constant(poly p)"
31021
53642251a04f farewell to class recpower
haftmann
parents: 30488
diff changeset
   570
  shows "\<exists>k a q. a\<noteq>(0::'a::{idom}) \<and> k\<noteq>0 \<and>
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   571
               psize q + k + 1 = psize p \<and>
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   572
              (\<forall>z. poly p z = poly p 0 + z^k * poly (pCons a q) z)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   573
using nc
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   574
proof(induct p)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   575
  case 0 thus ?case by (simp add: constant_def)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   576
next
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   577
  case (pCons c cs)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   578
  {assume C:"\<forall>z. z \<noteq> 0 \<longrightarrow> poly cs z = 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   579
    {fix x y
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   580
      from C have "poly (pCons c cs) x = poly (pCons c cs) y" by (cases "x=0", auto)}
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   581
    with pCons.prems have False by (auto simp add: constant_def)}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   582
  hence th: "\<not> (\<forall>z. z \<noteq> 0 \<longrightarrow> poly cs z = 0)" ..
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   583
  from poly_decompose_lemma[OF th]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   584
  show ?case
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   585
    apply clarsimp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   586
    apply (rule_tac x="k+1" in exI)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   587
    apply (rule_tac x="a" in exI)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   588
    apply simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   589
    apply (rule_tac x="q" in exI)
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   590
    apply (auto simp add: psize_def split: if_splits)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   591
    done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   592
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   593
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   594
text{* Fundamental theorem of algebra *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   595
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   596
lemma fundamental_theorem_of_algebra:
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   597
  assumes nc: "~constant(poly p)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   598
  shows "\<exists>z::complex. poly p z = 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   599
using nc
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   600
proof(induct "psize p" arbitrary: p rule: less_induct)
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   601
  case less
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   602
  let ?p = "poly p"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   603
  let ?ths = "\<exists>z. ?p z = 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   604
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   605
  from nonconstant_length[OF less(2)] have n2: "psize p \<ge> 2" .
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   606
  from poly_minimum_modulus obtain c where
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   607
    c: "\<forall>w. cmod (?p c) \<le> cmod (?p w)" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   608
  {assume pc: "?p c = 0" hence ?ths by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   609
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   610
  {assume pc0: "?p c \<noteq> 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   611
    from poly_offset[of p c] obtain q where
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   612
      q: "psize q = psize p" "\<forall>x. poly q x = ?p (c+x)" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   613
    {assume h: "constant (poly q)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   614
      from q(2) have th: "\<forall>x. poly q (x - c) = ?p x" by auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   615
      {fix x y
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   616
        from th have "?p x = poly q (x - c)" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   617
        also have "\<dots> = poly q (y - c)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   618
          using h unfolding constant_def by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   619
        also have "\<dots> = ?p y" using th by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   620
        finally have "?p x = ?p y" .}
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   621
      with less(2) have False unfolding constant_def by blast }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   622
    hence qnc: "\<not> constant (poly q)" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   623
    from q(2) have pqc0: "?p c = poly q 0" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   624
    from c pqc0 have cq0: "\<forall>w. cmod (poly q 0) \<le> cmod (?p w)" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   625
    let ?a0 = "poly q 0"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   626
    from pc0 pqc0 have a00: "?a0 \<noteq> 0" by simp
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   627
    from a00
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   628
    have qr: "\<forall>z. poly q z = poly (smult (inverse ?a0) q) z * ?a0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   629
      by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   630
    let ?r = "smult (inverse ?a0) q"
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   631
    have lgqr: "psize q = psize ?r"
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   632
      using a00 unfolding psize_def degree_def
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   633
      by (simp add: poly_eq_iff)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   634
    {assume h: "\<And>x y. poly ?r x = poly ?r y"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   635
      {fix x y
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   636
        from qr[rule_format, of x]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   637
        have "poly q x = poly ?r x * ?a0" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   638
        also have "\<dots> = poly ?r y * ?a0" using h by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   639
        also have "\<dots> = poly q y" using qr[rule_format, of y] by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   640
        finally have "poly q x = poly q y" .}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   641
      with qnc have False unfolding constant_def by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   642
    hence rnc: "\<not> constant (poly ?r)" unfolding constant_def by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   643
    from qr[rule_format, of 0] a00  have r01: "poly ?r 0 = 1" by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   644
    {fix w
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   645
      have "cmod (poly ?r w) < 1 \<longleftrightarrow> cmod (poly q w / ?a0) < 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   646
        using qr[rule_format, of w] a00 by (simp add: divide_inverse mult_ac)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   647
      also have "\<dots> \<longleftrightarrow> cmod (poly q w) < cmod ?a0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   648
        using a00 unfolding norm_divide by (simp add: field_simps)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   649
      finally have "cmod (poly ?r w) < 1 \<longleftrightarrow> cmod (poly q w) < cmod ?a0" .}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   650
    note mrmq_eq = this
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   651
    from poly_decompose[OF rnc] obtain k a s where
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   652
      kas: "a\<noteq>0" "k\<noteq>0" "psize s + k + 1 = psize ?r"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   653
      "\<forall>z. poly ?r z = poly ?r 0 + z^k* poly (pCons a s) z" by blast
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   654
    {assume "psize p = k + 1"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   655
      with kas(3) lgqr[symmetric] q(1) have s0:"s=0" by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   656
      {fix w
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   657
        have "cmod (poly ?r w) = cmod (1 + a * w ^ k)"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   658
          using kas(4)[rule_format, of w] s0 r01 by (simp add: algebra_simps)}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   659
      note hth = this [symmetric]
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   660
        from reduce_poly_simple[OF kas(1,2)]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   661
      have "\<exists>w. cmod (poly ?r w) < 1" unfolding hth by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   662
    moreover
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   663
    {assume kn: "psize p \<noteq> k+1"
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   664
      from kn kas(3) q(1) lgqr have k1n: "k + 1 < psize p" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   665
      have th01: "\<not> constant (poly (pCons 1 (monom a (k - 1))))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   666
        unfolding constant_def poly_pCons poly_monom
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   667
        using kas(1) apply simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   668
        by (rule exI[where x=0], rule exI[where x=1], simp)
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
   669
      from kas(1) kas(2) have th02: "k+1 = psize (pCons 1 (monom a (k - 1)))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   670
        by (simp add: psize_def degree_monom_eq)
34915
7894c7dab132 Adapted to changes in induct method.
berghofe
parents: 32960
diff changeset
   671
      from less(1) [OF k1n [simplified th02] th01]
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   672
      obtain w where w: "1 + w^k * a = 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   673
        unfolding poly_pCons poly_monom
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   674
        using kas(2) by (cases k, auto simp add: algebra_simps)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   675
      from poly_bound_exists[of "cmod w" s] obtain m where
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   676
        m: "m > 0" "\<forall>z. cmod z \<le> cmod w \<longrightarrow> cmod (poly s z) \<le> m" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   677
      have w0: "w\<noteq>0" using kas(2) w by (auto simp add: power_0_left)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   678
      from w have "(1 + w ^ k * a) - 1 = 0 - 1" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   679
      then have wm1: "w^k * a = - 1" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   680
      have inv0: "0 < inverse (cmod w ^ (k + 1) * m)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   681
        using norm_ge_zero[of w] w0 m(1)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   682
          by (simp add: inverse_eq_divide zero_less_mult_iff)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   683
      with real_down2[OF zero_less_one] obtain t where
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   684
        t: "t > 0" "t < 1" "t < inverse (cmod w ^ (k + 1) * m)" by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   685
      let ?ct = "complex_of_real t"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   686
      let ?w = "?ct * w"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29538
diff changeset
   687
      have "1 + ?w^k * (a + ?w * poly s ?w) = 1 + ?ct^k * (w^k * a) + ?w^k * ?w * poly s ?w" using kas(1) by (simp add: algebra_simps power_mult_distrib)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   688
      also have "\<dots> = complex_of_real (1 - t^k) + ?w^k * ?w * poly s ?w"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   689
        unfolding wm1 by (simp)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   690
      finally have "cmod (1 + ?w^k * (a + ?w * poly s ?w)) = cmod (complex_of_real (1 - t^k) + ?w^k * ?w * poly s ?w)"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   691
        apply -
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   692
        apply (rule cong[OF refl[of cmod]])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   693
        apply assumption
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   694
        done
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   695
      with norm_triangle_ineq[of "complex_of_real (1 - t^k)" "?w^k * ?w * poly s ?w"]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   696
      have th11: "cmod (1 + ?w^k * (a + ?w * poly s ?w)) \<le> \<bar>1 - t^k\<bar> + cmod (?w^k * ?w * poly s ?w)" unfolding norm_of_real by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   697
      have ath: "\<And>x (t::real). 0\<le> x \<Longrightarrow> x < t \<Longrightarrow> t\<le>1 \<Longrightarrow> \<bar>1 - t\<bar> + x < 1" by arith
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   698
      have "t *cmod w \<le> 1 * cmod w" apply (rule mult_mono) using t(1,2) by auto
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   699
      then have tw: "cmod ?w \<le> cmod w" using t(1) by (simp add: norm_mult)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   700
      from t inv0 have "t* (cmod w ^ (k + 1) * m) < 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   701
        by (simp add: inverse_eq_divide field_simps)
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   702
      with zero_less_power[OF t(1), of k]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   703
      have th30: "t^k * (t* (cmod w ^ (k + 1) * m)) < t^k * 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   704
        apply - apply (rule mult_strict_left_mono) by simp_all
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   705
      have "cmod (?w^k * ?w * poly s ?w) = t^k * (t* (cmod w ^ (k+1) * cmod (poly s ?w)))"  using w0 t(1)
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   706
        by (simp add: algebra_simps power_mult_distrib norm_power norm_mult)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   707
      then have "cmod (?w^k * ?w * poly s ?w) \<le> t^k * (t* (cmod w ^ (k + 1) * m))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   708
        using t(1,2) m(2)[rule_format, OF tw] w0
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   709
        apply (simp only: )
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   710
        apply auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   711
        done
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   712
      with th30 have th120: "cmod (?w^k * ?w * poly s ?w) < t^k" by simp
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   713
      from power_strict_mono[OF t(2), of k] t(1) kas(2) have th121: "t^k \<le> 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   714
        by auto
27514
6fcf6864d703 remove redundant lemmas about cmod
huffman
parents: 27445
diff changeset
   715
      from ath[OF norm_ge_zero[of "?w^k * ?w * poly s ?w"] th120 th121]
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   716
      have th12: "\<bar>1 - t^k\<bar> + cmod (?w^k * ?w * poly s ?w) < 1" .
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   717
      from th11 th12
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   718
      have "cmod (1 + ?w^k * (a + ?w * poly s ?w)) < 1"  by arith
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   719
      then have "cmod (poly ?r ?w) < 1"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   720
        unfolding kas(4)[rule_format, of ?w] r01 by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   721
      then have "\<exists>w. cmod (poly ?r w) < 1" by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   722
    ultimately have cr0_contr: "\<exists>w. cmod (poly ?r w) < 1" by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   723
    from cr0_contr cq0 q(2)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   724
    have ?ths unfolding mrmq_eq not_less[symmetric] by auto}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   725
  ultimately show ?ths by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   726
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   727
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   728
text {* Alternative version with a syntactic notion of constant polynomial. *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   729
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   730
lemma fundamental_theorem_of_algebra_alt:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   731
  assumes nc: "~(\<exists>a l. a\<noteq> 0 \<and> l = 0 \<and> p = pCons a l)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   732
  shows "\<exists>z. poly p z = (0::complex)"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   733
using nc
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   734
proof(induct p)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   735
  case (pCons c cs)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   736
  {assume "c=0" hence ?case by auto}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   737
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   738
  {assume c0: "c\<noteq>0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   739
    {assume nc: "constant (poly (pCons c cs))"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   740
      from nc[unfolded constant_def, rule_format, of 0]
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   741
      have "\<forall>w. w \<noteq> 0 \<longrightarrow> poly cs w = 0" by auto
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   742
      hence "cs = 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   743
        proof(induct cs)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   744
          case (pCons d ds)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   745
          {assume "d=0" hence ?case using pCons.prems pCons.hyps by simp}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   746
          moreover
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   747
          {assume d0: "d\<noteq>0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   748
            from poly_bound_exists[of 1 ds] obtain m where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   749
              m: "m > 0" "\<forall>z. \<forall>z. cmod z \<le> 1 \<longrightarrow> cmod (poly ds z) \<le> m" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   750
            have dm: "cmod d / m > 0" using d0 m(1) by (simp add: field_simps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   751
            from real_down2[OF dm zero_less_one] obtain x where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   752
              x: "x > 0" "x < cmod d / m" "x < 1" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   753
            let ?x = "complex_of_real x"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   754
            from x have cx: "?x \<noteq> 0"  "cmod ?x \<le> 1" by simp_all
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   755
            from pCons.prems[rule_format, OF cx(1)]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   756
            have cth: "cmod (?x*poly ds ?x) = cmod d" by (simp add: eq_diff_eq[symmetric])
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   757
            from m(2)[rule_format, OF cx(2)] x(1)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   758
            have th0: "cmod (?x*poly ds ?x) \<le> x*m"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   759
              by (simp add: norm_mult)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   760
            from x(2) m(1) have "x*m < cmod d" by (simp add: field_simps)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   761
            with th0 have "cmod (?x*poly ds ?x) \<noteq> cmod d" by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   762
            with cth  have ?case by blast}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   763
          ultimately show ?case by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   764
        qed simp}
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   765
      then have nc: "\<not> constant (poly (pCons c cs))" using pCons.prems c0
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   766
        by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   767
      from fundamental_theorem_of_algebra[OF nc] have ?case .}
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   768
  ultimately show ?case by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   769
qed simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   770
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   771
37093
8808a1aa12a2 Typo fixed.
webertj
parents: 36975
diff changeset
   772
subsection{* Nullstellensatz, degrees and divisibility of polynomials *}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   773
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   774
lemma nullstellensatz_lemma:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   775
  fixes p :: "complex poly"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   776
  assumes "\<forall>x. poly p x = 0 \<longrightarrow> poly q x = 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   777
  and "degree p = n" and "n \<noteq> 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   778
  shows "p dvd (q ^ n)"
41529
ba60efa2fd08 eliminated global prems;
wenzelm
parents: 37887
diff changeset
   779
using assms
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   780
proof(induct n arbitrary: p q rule: nat_less_induct)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   781
  fix n::nat fix p q :: "complex poly"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   782
  assume IH: "\<forall>m<n. \<forall>p q.
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   783
                 (\<forall>x. poly p x = (0::complex) \<longrightarrow> poly q x = 0) \<longrightarrow>
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   784
                 degree p = m \<longrightarrow> m \<noteq> 0 \<longrightarrow> p dvd (q ^ m)"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   785
    and pq0: "\<forall>x. poly p x = 0 \<longrightarrow> poly q x = 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   786
    and dpn: "degree p = n" and n0: "n \<noteq> 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   787
  from dpn n0 have pne: "p \<noteq> 0" by auto
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   788
  let ?ths = "p dvd (q ^ n)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   789
  {fix a assume a: "poly p a = 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   790
    {assume oa: "order a p \<noteq> 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   791
      let ?op = "order a p"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   792
      from pne have ap: "([:- a, 1:] ^ ?op) dvd p"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   793
        "\<not> [:- a, 1:] ^ (Suc ?op) dvd p" using order by blast+
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   794
      note oop = order_degree[OF pne, unfolded dpn]
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   795
      {assume q0: "q = 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   796
        hence ?ths using n0
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   797
          by (simp add: power_0_left)}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   798
      moreover
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   799
      {assume q0: "q \<noteq> 0"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   800
        from pq0[rule_format, OF a, unfolded poly_eq_0_iff_dvd]
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   801
        obtain r where r: "q = [:- a, 1:] * r" by (rule dvdE)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   802
        from ap(1) obtain s where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   803
          s: "p = [:- a, 1:] ^ ?op * s" by (rule dvdE)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   804
        have sne: "s \<noteq> 0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   805
          using s pne by auto
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   806
        {assume ds0: "degree s = 0"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   807
          from ds0 obtain k where kpn: "s = [:k:]"
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   808
            by (cases s) (auto split: if_splits)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   809
          from sne kpn have k: "k \<noteq> 0" by simp
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   810
          let ?w = "([:1/k:] * ([:-a,1:] ^ (n - ?op))) * (r ^ n)"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   811
          from k oop [of a] have "q ^ n = p * ?w"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   812
            apply -
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   813
            apply (subst r, subst s, subst kpn)
29472
a63a2e46cec9 declare smult rules [simp]
huffman
parents: 29470
diff changeset
   814
            apply (subst power_mult_distrib, simp)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   815
            apply (subst power_add [symmetric], simp)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   816
            done
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   817
          hence ?ths unfolding dvd_def by blast}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   818
        moreover
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   819
        {assume ds0: "degree s \<noteq> 0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   820
          from ds0 sne dpn s oa
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   821
            have dsn: "degree s < n" apply auto
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   822
              apply (erule ssubst)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   823
              apply (simp add: degree_mult_eq degree_linear_power)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   824
              done
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   825
            {fix x assume h: "poly s x = 0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   826
              {assume xa: "x = a"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   827
                from h[unfolded xa poly_eq_0_iff_dvd] obtain u where
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   828
                  u: "s = [:- a, 1:] * u" by (rule dvdE)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   829
                have "p = [:- a, 1:] ^ (Suc ?op) * u"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   830
                  by (subst s, subst u, simp only: power_Suc mult_ac)
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   831
                with ap(2)[unfolded dvd_def] have False by blast}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   832
              note xa = this
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   833
              from h have "poly p x = 0" by (subst s, simp)
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   834
              with pq0 have "poly q x = 0" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   835
              with r xa have "poly r x = 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   836
                by (auto simp add: uminus_add_conv_diff)}
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   837
            note impth = this
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   838
            from IH[rule_format, OF dsn, of s r] impth ds0
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   839
            have "s dvd (r ^ (degree s))" by blast
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   840
            then obtain u where u: "r ^ (degree s) = s * u" ..
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   841
            hence u': "\<And>x. poly s x * poly u x = poly r x ^ degree s"
29470
1851088a1f87 convert Deriv.thy to use new Polynomial library (incomplete)
huffman
parents: 29464
diff changeset
   842
              by (simp only: poly_mult[symmetric] poly_power[symmetric])
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   843
            let ?w = "(u * ([:-a,1:] ^ (n - ?op))) * (r ^ (n - degree s))"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   844
            from oop[of a] dsn have "q ^ n = p * ?w"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   845
              apply -
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   846
              apply (subst s, subst r)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   847
              apply (simp only: power_mult_distrib)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   848
              apply (subst mult_assoc [where b=s])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   849
              apply (subst mult_assoc [where a=u])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   850
              apply (subst mult_assoc [where b=u, symmetric])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   851
              apply (subst u [symmetric])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   852
              apply (simp add: mult_ac power_add [symmetric])
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   853
              done
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   854
            hence ?ths unfolding dvd_def by blast}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   855
      ultimately have ?ths by blast }
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   856
      ultimately have ?ths by blast}
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   857
    then have ?ths using a order_root pne by blast}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   858
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   859
  {assume exa: "\<not> (\<exists>a. poly p a = 0)"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   860
    from fundamental_theorem_of_algebra_alt[of p] exa obtain c where
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   861
      ccs: "c\<noteq>0" "p = pCons c 0" by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   862
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   863
    then have pp: "\<And>x. poly p x =  c" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   864
    let ?w = "[:1/c:] * (q ^ n)"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   865
    from ccs have "(q ^ n) = (p * ?w)" by simp
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   866
    hence ?ths unfolding dvd_def by blast}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   867
  ultimately show ?ths by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   868
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   869
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   870
lemma nullstellensatz_univariate:
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   871
  "(\<forall>x. poly p x = (0::complex) \<longrightarrow> poly q x = 0) \<longleftrightarrow>
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   872
    p dvd (q ^ (degree p)) \<or> (p = 0 \<and> q = 0)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   873
proof-
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   874
  {assume pe: "p = 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   875
    hence eq: "(\<forall>x. poly p x = (0::complex) \<longrightarrow> poly q x = 0) \<longleftrightarrow> q = 0"
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   876
      by (auto simp add: poly_all_0_iff_0)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   877
    {assume "p dvd (q ^ (degree p))"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   878
      then obtain r where r: "q ^ (degree p) = p * r" ..
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   879
      from r pe have False by simp}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   880
    with eq pe have ?thesis by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   881
  moreover
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   882
  {assume pe: "p \<noteq> 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   883
    {assume dp: "degree p = 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   884
      then obtain k where k: "p = [:k:]" "k\<noteq>0" using pe
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   885
        by (cases p) (simp split: if_splits)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   886
      hence th1: "\<forall>x. poly p x \<noteq> 0" by simp
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   887
      from k dp have "q ^ (degree p) = p * [:1/k:]"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   888
        by (simp add: one_poly_def)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   889
      hence th2: "p dvd (q ^ (degree p))" ..
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   890
      from th1 th2 pe have ?thesis by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   891
    moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   892
    {assume dp: "degree p \<noteq> 0"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   893
      then obtain n where n: "degree p = Suc n " by (cases "degree p", auto)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   894
      {assume "p dvd (q ^ (Suc n))"
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   895
        then obtain u where u: "q ^ (Suc n) = p * u" ..
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   896
        {fix x assume h: "poly p x = 0" "poly q x \<noteq> 0"
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   897
          hence "poly (q ^ (Suc n)) x \<noteq> 0" by simp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   898
          hence False using u h(1) by (simp only: poly_mult) simp}}
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   899
        with n nullstellensatz_lemma[of p q "degree p"] dp
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 32456
diff changeset
   900
        have ?thesis by auto}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   901
    ultimately have ?thesis by blast}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   902
  ultimately show ?thesis by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   903
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   904
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   905
text{* Useful lemma *}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   906
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   907
lemma constant_degree:
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   908
  fixes p :: "'a::{idom,ring_char_0} poly"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   909
  shows "constant (poly p) \<longleftrightarrow> degree p = 0" (is "?lhs = ?rhs")
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   910
proof
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   911
  assume l: ?lhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   912
  from l[unfolded constant_def, rule_format, of _ "0"]
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   913
  have th: "poly p = poly [:poly p 0:]" apply - by (rule ext, simp)
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
   914
  then have "p = [:poly p 0:]" by (simp add: poly_eq_poly_eq_iff)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   915
  then have "degree p = degree [:poly p 0:]" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   916
  then show ?rhs by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   917
next
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   918
  assume r: ?rhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   919
  then obtain k where "p = [:k:]"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
   920
    by (cases p) (simp split: if_splits)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   921
  then show ?lhs unfolding constant_def by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   922
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   923
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   924
lemma divides_degree: assumes pq: "p dvd (q:: complex poly)"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   925
  shows "degree p \<le> degree q \<or> q = 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   926
apply (cases "q = 0", simp_all)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   927
apply (erule dvd_imp_degree_le [OF pq])
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   928
done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   929
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   930
(* Arithmetic operations on multivariate polynomials.                        *)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   931
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   932
lemma mpoly_base_conv:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   933
  "(0::complex) \<equiv> poly 0 x" "c \<equiv> poly [:c:] x" "x \<equiv> poly [:0,1:] x" by simp_all
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   934
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   935
lemma mpoly_norm_conv:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   936
  "poly [:0:] (x::complex) \<equiv> poly 0 x" "poly [:poly 0 y:] x \<equiv> poly 0 x" by simp_all
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   937
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   938
lemma mpoly_sub_conv:
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   939
  "poly p (x::complex) - poly q x \<equiv> poly p x + -1 * poly q x"
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 53077
diff changeset
   940
  by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   941
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   942
lemma poly_pad_rule: "poly p x = 0 ==> poly (pCons 0 p) x = (0::complex)" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   943
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   944
lemma poly_cancel_eq_conv: "p = (0::complex) \<Longrightarrow> a \<noteq> 0 \<Longrightarrow> (q = 0) \<equiv> (a * q - b * p = 0)" apply (atomize (full)) by auto
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   945
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   946
lemma resolve_eq_raw:  "poly 0 x \<equiv> 0" "poly [:c:] x \<equiv> (c::complex)" by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   947
lemma  resolve_eq_then: "(P \<Longrightarrow> (Q \<equiv> Q1)) \<Longrightarrow> (\<not>P \<Longrightarrow> (Q \<equiv> Q2))
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   948
  \<Longrightarrow> Q \<equiv> P \<and> Q1 \<or> \<not>P\<and> Q2" apply (atomize (full)) by blast
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   949
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   950
lemma poly_divides_pad_rule:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   951
  fixes p q :: "complex poly"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   952
  assumes pq: "p dvd q"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   953
  shows "p dvd (pCons (0::complex) q)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   954
proof-
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   955
  have "pCons 0 q = q * [:0,1:]" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   956
  then have "q dvd (pCons 0 q)" ..
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   957
  with pq show ?thesis by (rule dvd_trans)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   958
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   959
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   960
lemma poly_divides_pad_const_rule:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   961
  fixes p q :: "complex poly"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   962
  assumes pq: "p dvd q"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   963
  shows "p dvd (smult a q)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   964
proof-
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   965
  have "smult a q = q * [:a:]" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   966
  then have "q dvd smult a q" ..
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   967
  with pq show ?thesis by (rule dvd_trans)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   968
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   969
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   970
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   971
lemma poly_divides_conv0:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   972
  fixes p :: "complex poly"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   973
  assumes lgpq: "degree q < degree p" and lq:"p \<noteq> 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   974
  shows "p dvd q \<equiv> q = 0" (is "?lhs \<equiv> ?rhs")
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   975
proof-
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   976
  {assume r: ?rhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   977
    hence "q = p * 0" by simp
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   978
    hence ?lhs ..}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   979
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   980
  {assume l: ?lhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   981
    {assume q0: "q = 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   982
      hence ?rhs by simp}
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   983
    moreover
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   984
    {assume q0: "q \<noteq> 0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   985
      from l q0 have "degree p \<le> degree q"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   986
        by (rule dvd_imp_degree_le)
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   987
      with lgpq have ?rhs by simp }
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   988
    ultimately have ?rhs by blast }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   989
  ultimately show "?lhs \<equiv> ?rhs" by - (atomize (full), blast)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   990
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   991
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
   992
lemma poly_divides_conv1:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   993
  assumes a0: "a\<noteq> (0::complex)" and pp': "(p::complex poly) dvd p'"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   994
  and qrp': "smult a q - p' \<equiv> r"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   995
  shows "p dvd q \<equiv> p dvd (r::complex poly)" (is "?lhs \<equiv> ?rhs")
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   996
proof-
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   997
  {
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
   998
  from pp' obtain t where t: "p' = p * t" ..
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
   999
  {assume l: ?lhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1000
    then obtain u where u: "q = p * u" ..
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1001
     have "r = p * (smult a u - t)"
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
  1002
       using u qrp' [symmetric] t by (simp add: algebra_simps)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1003
     then have ?rhs ..}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1004
  moreover
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1005
  {assume r: ?rhs
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1006
    then obtain u where u: "r = p * u" ..
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1007
    from u [symmetric] t qrp' [symmetric] a0
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
  1008
    have "q = p * smult (1/a) (u + t)" by (simp add: algebra_simps)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1009
    hence ?lhs ..}
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1010
  ultimately have "?lhs = ?rhs" by blast }
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1011
thus "?lhs \<equiv> ?rhs"  by - (atomize(full), blast)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1012
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1013
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1014
lemma basic_cqe_conv1:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1015
  "(\<exists>x. poly p x = 0 \<and> poly 0 x \<noteq> 0) \<equiv> False"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1016
  "(\<exists>x. poly 0 x \<noteq> 0) \<equiv> False"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1017
  "(\<exists>x. poly [:c:] x \<noteq> 0) \<equiv> c\<noteq>0"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1018
  "(\<exists>x. poly 0 x = 0) \<equiv> True"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1019
  "(\<exists>x. poly [:c:] x = 0) \<equiv> c = 0" by simp_all
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1020
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1021
lemma basic_cqe_conv2:
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1022
  assumes l:"p \<noteq> 0"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1023
  shows "(\<exists>x. poly (pCons a (pCons b p)) x = (0::complex)) \<equiv> True"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1024
proof-
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1025
  {fix h t
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1026
    assume h: "h\<noteq>0" "t=0"  "pCons a (pCons b p) = pCons h t"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1027
    with l have False by simp}
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1028
  hence th: "\<not> (\<exists> h t. h\<noteq>0 \<and> t=0 \<and> pCons a (pCons b p) = pCons h t)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1029
    by blast
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1030
  from fundamental_theorem_of_algebra_alt[OF th]
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1031
  show "(\<exists>x. poly (pCons a (pCons b p)) x = (0::complex)) \<equiv> True" by auto
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1032
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1033
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1034
lemma  basic_cqe_conv_2b: "(\<exists>x. poly p x \<noteq> (0::complex)) \<equiv> (p \<noteq> 0)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1035
proof-
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1036
  have "p = 0 \<longleftrightarrow> poly p = poly 0"
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
  1037
    by (simp add: poly_eq_poly_eq_iff)
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
  1038
  also have "\<dots> \<longleftrightarrow> (\<not> (\<exists>x. poly p x \<noteq> 0))" by auto
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1039
  finally show "(\<exists>x. poly p x \<noteq> (0::complex)) \<equiv> p \<noteq> 0"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1040
    by - (atomize (full), blast)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1041
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1042
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1043
lemma basic_cqe_conv3:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1044
  fixes p q :: "complex poly"
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1045
  assumes l: "p \<noteq> 0"
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
  1046
  shows "(\<exists>x. poly (pCons a p) x = 0 \<and> poly q x \<noteq> 0) \<equiv> \<not> ((pCons a p) dvd (q ^ (psize p)))"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1047
proof-
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
  1048
  from l have dp:"degree (pCons a p) = psize p" by (simp add: psize_def)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1049
  from nullstellensatz_univariate[of "pCons a p" q] l
29538
5cc98af1398d rename plength to psize
huffman
parents: 29485
diff changeset
  1050
  show "(\<exists>x. poly (pCons a p) x = 0 \<and> poly q x \<noteq> 0) \<equiv> \<not> ((pCons a p) dvd (q ^ (psize p)))"
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1051
    unfolding dp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1052
    by - (atomize (full), auto)
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1053
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1054
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1055
lemma basic_cqe_conv4:
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1056
  fixes p q :: "complex poly"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1057
  assumes h: "\<And>x. poly (q ^ n) x \<equiv> poly r x"
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1058
  shows "p dvd (q ^ n) \<equiv> p dvd r"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1059
proof-
51541
e7b6b61b7be2 tuned proofs;
wenzelm
parents: 51537
diff changeset
  1060
  from h have "poly (q ^ n) = poly r" by auto
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 51541
diff changeset
  1061
  then have "(q ^ n) = r" by (simp add: poly_eq_poly_eq_iff)
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1062
  thus "p dvd (q ^ n) \<equiv> p dvd r" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1063
qed
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1064
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1065
lemma pmult_Cons_Cons: "(pCons (a::complex) (pCons b p) * q = (smult a q) + (pCons 0 (pCons b p * q)))"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1066
  by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1067
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1068
lemma elim_neg_conv: "- z \<equiv> (-1) * (z::complex)" by simp
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1069
lemma eqT_intr: "PROP P \<Longrightarrow> (True \<Longrightarrow> PROP P )" "PROP P \<Longrightarrow> True" by blast+
50636
07f47142378e uniform notation for == and \<equiv> (cf. 3e3c2af5e8a5);
wenzelm
parents: 49962
diff changeset
  1070
lemma negate_negate_rule: "Trueprop P \<equiv> (\<not> P \<equiv> False)" by (atomize (full), auto)
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1071
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1072
lemma complex_entire: "(z::complex) \<noteq> 0 \<and> w \<noteq> 0 \<equiv> z*w \<noteq> 0" by simp
30488
5c4c3a9e9102 remove trailing spaces
huffman
parents: 30242
diff changeset
  1073
lemma resolve_eq_ne: "(P \<equiv> True) \<equiv> (\<not>P \<equiv> False)" "(P \<equiv> False) \<equiv> (\<not>P \<equiv> True)"
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1074
  by (atomize (full)) simp_all
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1075
lemma cqe_conv1: "poly 0 x = 0 \<longleftrightarrow> True"  by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1076
lemma cqe_conv2: "(p \<Longrightarrow> (q \<equiv> r)) \<equiv> ((p \<and> q) \<equiv> (p \<and> r))"  (is "?l \<equiv> ?r")
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1077
proof
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1078
  assume "p \<Longrightarrow> q \<equiv> r" thus "p \<and> q \<equiv> p \<and> r" apply - apply (atomize (full)) by blast
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1079
next
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1080
  assume "p \<and> q \<equiv> p \<and> r" "p"
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1081
  thus "q \<equiv> r" apply - apply (atomize (full)) apply blast done
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1082
qed
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1083
lemma poly_const_conv: "poly [:c:] (x::complex) = y \<longleftrightarrow> c = y" by simp
26123
44384b5c4fc0 A proof a the fundamental theorem of algebra
chaieb
parents:
diff changeset
  1084
29464
c0d225a7f6ff convert Fundamental_Theorem_Algebra.thy to use new Polynomial library
huffman
parents: 29292
diff changeset
  1085
end