Documentation

Mathlib.Algebra.Group.Nat.Even

IsSquare and Even for natural numbers #

Parity #

theorem Nat.even_iff {n : } :
Even n n % 2 = 0

IsSquare can be decided on by checking against the square root.

Equations
theorem Nat.not_even_iff {n : } :
¬Even n n % 2 = 1
@[simp]
theorem Nat.two_dvd_ne_zero {n : } :
@[simp]
theorem Nat.even_add {m n : } :
theorem Nat.succ_mod_two_eq_one_iff {m : } :
(m + 1) % 2 = 1 m % 2 = 0
theorem Nat.even_sub {m n : } (h : n m) :
theorem Nat.even_mul {m n : } :
theorem Nat.even_pow {m n : } :

If m and n are natural numbers, then the natural number m^n is even if and only if m is even and n is positive.

theorem Nat.even_pow' {m n : } (h : n 0) :
theorem Nat.div_two_mul_two_of_even {n : } :
Even nn / 2 * 2 = n
theorem Nat.one_lt_of_ne_zero_of_even {n : } (h0 : n 0) (hn : Even n) :
1 < n
theorem Nat.add_one_lt_of_even {m n : } (hn : Even n) (hm : Even m) (hnm : n < m) :
n + 1 < m