fix(library/data/int/div): int div

This commit is contained in:
Leonardo de Moura 2015-10-09 15:04:01 -07:00
parent 1ffe62341b
commit a23c05549e

View file

@ -52,8 +52,6 @@ rfl
notation [priority int.prio] a ≡ b `[mod `:100 c `]`:0 := a mod c = b mod c notation [priority int.prio] a ≡ b `[mod `:100 c `]`:0 := a mod c = b mod c
lemma modulo.def (a b : ) : a mod b = a - a div b * b := rfl
/- div -/ /- div -/
theorem of_nat_div (m n : nat) : of_nat (m div n) = (of_nat m) div (of_nat n) := theorem of_nat_div (m n : nat) : of_nat (m div n) = (of_nat m) div (of_nat n) :=