Theory Sqrt

Up to index of Isabelle/HOL/ex

theory Sqrt
imports Primes

(*  Title:      HOL/ex/Sqrt.thy
    Author:     Markus Wenzel, TU Muenchen
*)

header {*  Square roots of primes are irrational *}

theory Sqrt
imports Complex_Main Primes
begin

text {*
  The square root of any prime number (including @{text 2}) is
  irrational.
*}

theorem sqrt_prime_irrational:
  assumes "prime p"
  shows "sqrt (real p) ∉ \<rat>"
proof
  from `prime p` have p: "1 < p" by (simp add: prime_def)
  assume "sqrt (real p) ∈ \<rat>"
  then obtain m n where
      n: "n ≠ 0" and sqrt_rat: "¦sqrt (real p)¦ = real m / real n"
    and gcd: "gcd m n = 1" by (rule Rats_abs_nat_div_natE)
  have eq: "m² = p * n²"
  proof -
    from n and sqrt_rat have "real m = ¦sqrt (real p)¦ * real n" by simp
    then have "real (m²) = (sqrt (real p))² * real (n²)"
      by (auto simp add: power2_eq_square)
    also have "(sqrt (real p))² = real p" by simp
    also have "… * real (n²) = real (p * n²)" by simp
    finally show ?thesis ..
  qed
  have "p dvd m ∧ p dvd n"
  proof
    from eq have "p dvd m²" ..
    with `prime p` show "p dvd m" by (rule prime_dvd_power_two)
    then obtain k where "m = p * k" ..
    with eq have "p * n² = p² * k²" by (auto simp add: power2_eq_square mult_ac)
    with p have "n² = p * k²" by (simp add: power2_eq_square)
    then have "p dvd n²" ..
    with `prime p` show "p dvd n" by (rule prime_dvd_power_two)
  qed
  then have "p dvd gcd m n" ..
  with gcd have "p dvd 1" by simp
  then have "p ≤ 1" by (simp add: dvd_imp_le)
  with p show False by simp
qed

corollary "sqrt (real (2::nat)) ∉ \<rat>"
  by (rule sqrt_prime_irrational) (rule two_is_prime)


subsection {* Variations *}

text {*
  Here is an alternative version of the main proof, using mostly
  linear forward-reasoning.  While this results in less top-down
  structure, it is probably closer to proofs seen in mathematics.
*}

theorem
  assumes "prime p"
  shows "sqrt (real p) ∉ \<rat>"
proof
  from `prime p` have p: "1 < p" by (simp add: prime_def)
  assume "sqrt (real p) ∈ \<rat>"
  then obtain m n where
      n: "n ≠ 0" and sqrt_rat: "¦sqrt (real p)¦ = real m / real n"
    and gcd: "gcd m n = 1" by (rule Rats_abs_nat_div_natE)
  from n and sqrt_rat have "real m = ¦sqrt (real p)¦ * real n" by simp
  then have "real (m²) = (sqrt (real p))² * real (n²)"
    by (auto simp add: power2_eq_square)
  also have "(sqrt (real p))² = real p" by simp
  also have "… * real (n²) = real (p * n²)" by simp
  finally have eq: "m² = p * n²" ..
  then have "p dvd m²" ..
  with `prime p` have dvd_m: "p dvd m" by (rule prime_dvd_power_two)
  then obtain k where "m = p * k" ..
  with eq have "p * n² = p² * k²" by (auto simp add: power2_eq_square mult_ac)
  with p have "n² = p * k²" by (simp add: power2_eq_square)
  then have "p dvd n²" ..
  with `prime p` have "p dvd n" by (rule prime_dvd_power_two)
  with dvd_m have "p dvd gcd m n" by (rule gcd_greatest)
  with gcd have "p dvd 1" by simp
  then have "p ≤ 1" by (simp add: dvd_imp_le)
  with p show False by simp
qed

end