2015-04-14 15:59:01 +00:00
|
|
|
|
/-
|
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
Authors: Leonardo de Moura
|
|
|
|
|
|
|
|
|
|
Elegant pairing function.
|
|
|
|
|
-/
|
|
|
|
|
import data.nat.sqrt data.nat.div
|
|
|
|
|
open prod decidable
|
|
|
|
|
|
|
|
|
|
namespace nat
|
|
|
|
|
definition mkpair (a b : nat) : nat :=
|
|
|
|
|
if a < b then b*b + a else a*a + a + b
|
|
|
|
|
|
|
|
|
|
definition unpair (n : nat) : nat × nat :=
|
|
|
|
|
let s := sqrt n in
|
|
|
|
|
if n - s*s < s then (n - s*s, s) else (s, n - s*s - s)
|
|
|
|
|
|
|
|
|
|
theorem mkpair_unpair (n : nat) : mkpair (pr1 (unpair n)) (pr2 (unpair n)) = n :=
|
|
|
|
|
let s := sqrt n in
|
|
|
|
|
by_cases
|
2015-07-22 20:41:50 +00:00
|
|
|
|
(suppose n - s*s < s,
|
2015-04-14 15:59:01 +00:00
|
|
|
|
begin
|
|
|
|
|
esimp [unpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_pos this],
|
2015-04-14 15:59:01 +00:00
|
|
|
|
esimp [mkpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_pos this, add_sub_of_le (sqrt_lower n)]
|
2015-04-14 15:59:01 +00:00
|
|
|
|
end)
|
2015-07-22 20:41:50 +00:00
|
|
|
|
(suppose h₁ : ¬ n - s*s < s,
|
|
|
|
|
have s ≤ n - s*s, from le_of_not_gt h₁,
|
|
|
|
|
assert s + s*s ≤ n - s*s + s*s, from add_le_add_right this (s*s),
|
|
|
|
|
assert s*s + s ≤ n, by rewrite [sub_add_cancel (sqrt_lower n) at this, add.comm at this]; assumption,
|
|
|
|
|
have n ≤ s*s + s + s, from sqrt_upper n,
|
|
|
|
|
have n - s*s ≤ s + s, from calc
|
|
|
|
|
n - s*s ≤ (s*s + s + s) - s*s : sub_le_sub_right this (s*s)
|
2015-04-14 15:59:01 +00:00
|
|
|
|
... = (s*s + (s+s)) - s*s : by rewrite add.assoc
|
|
|
|
|
... = s + s : by rewrite add_sub_cancel_left,
|
2015-07-22 20:41:50 +00:00
|
|
|
|
have n - s*s - s ≤ s, from calc
|
|
|
|
|
n - s*s - s ≤ (s + s) - s : sub_le_sub_right this s
|
2015-04-14 15:59:01 +00:00
|
|
|
|
... = s : by rewrite add_sub_cancel_left,
|
2015-07-22 20:41:50 +00:00
|
|
|
|
assert h₂ : ¬ s < n - s*s - s, from not_lt_of_ge this,
|
2015-04-14 15:59:01 +00:00
|
|
|
|
begin
|
|
|
|
|
esimp [unpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_neg h₁], esimp,
|
2015-04-14 15:59:01 +00:00
|
|
|
|
esimp [mkpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_neg h₂, sub_sub, add_sub_of_le `s*s + s ≤ n`],
|
2015-04-14 15:59:01 +00:00
|
|
|
|
end)
|
2015-04-15 03:28:20 +00:00
|
|
|
|
|
|
|
|
|
theorem unpair_mkpair (a b : nat) : unpair (mkpair a b) = (a, b) :=
|
|
|
|
|
by_cases
|
2015-07-22 20:41:50 +00:00
|
|
|
|
(suppose a < b,
|
|
|
|
|
assert a ≤ b + b, from calc
|
|
|
|
|
a ≤ b : le_of_lt this
|
2015-04-15 03:28:20 +00:00
|
|
|
|
... ≤ b+b : !le_add_right,
|
|
|
|
|
begin
|
|
|
|
|
esimp [mkpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_pos `a < b`],
|
2015-04-15 03:28:20 +00:00
|
|
|
|
esimp [unpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [sqrt_offset_eq `a ≤ b + b`, add_sub_cancel_left, if_pos `a < b`]
|
2015-04-15 03:28:20 +00:00
|
|
|
|
end)
|
2015-07-22 20:41:50 +00:00
|
|
|
|
(suppose ¬ a < b,
|
|
|
|
|
have b ≤ a, from le_of_not_gt this,
|
|
|
|
|
assert a + b ≤ a + a, from add_le_add_left this a,
|
|
|
|
|
have a + b ≥ a, from !le_add_right,
|
|
|
|
|
assert ¬ a + b < a, from not_lt_of_ge this,
|
2015-04-15 03:28:20 +00:00
|
|
|
|
begin
|
|
|
|
|
esimp [mkpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [if_neg `¬ a < b`],
|
2015-04-15 03:28:20 +00:00
|
|
|
|
esimp [unpair],
|
2015-07-22 20:41:50 +00:00
|
|
|
|
rewrite [add.assoc (a * a) a b, sqrt_offset_eq `a + b ≤ a + a`, *add_sub_cancel_left, if_neg `¬ a + b < a`]
|
2015-04-15 03:28:20 +00:00
|
|
|
|
end)
|
2015-04-14 15:59:01 +00:00
|
|
|
|
end nat
|