Documentation

Mathlib.Data.Num.Lemmas

Properties of the binary representation of integers #

@[simp]
theorem PosNum.cast_one {α : Type u_1} [One α] [Add α] :
@[simp]
theorem PosNum.cast_one' {α : Type u_1} [One α] [Add α] :
@[simp]
theorem PosNum.cast_bit0 {α : Type u_1} [One α] [Add α] (n : PosNum) :
@[simp]
theorem PosNum.cast_bit1 {α : Type u_1} [One α] [Add α] (n : PosNum) :
@[simp]
theorem PosNum.cast_to_nat {α : Type u_1} [AddMonoidWithOne α] (n : PosNum) :
@[simp]
theorem PosNum.cast_to_int {α : Type u_1} [AddGroupWithOne α] (n : PosNum) :
theorem PosNum.one_add (n : PosNum) :
1 + n = n.succ
theorem PosNum.add_one (n : PosNum) :
n + 1 = n.succ
theorem PosNum.add_to_nat (m n : PosNum) :
(m + n) = m + n
theorem PosNum.mul_to_nat (m n : PosNum) :
(m * n) = m * n
theorem PosNum.to_nat_pos (n : PosNum) :
0 < n
theorem PosNum.cmp_swap (m n : PosNum) :
(m.cmp n).swap = n.cmp m
theorem PosNum.cmp_to_nat (m n : PosNum) :
Ordering.casesOn (m.cmp n) (m < n) (m = n) (n < m)
theorem PosNum.lt_to_nat {m n : PosNum} :
m < n m < n
theorem Num.add_zero (n : Num) :
n + 0 = n
theorem Num.zero_add (n : Num) :
0 + n = n
theorem Num.add_one (n : Num) :
n + 1 = n.succ
theorem Num.add_succ (m n : Num) :
theorem Num.bit0_of_bit0 (n : Num) :
n + n = n.bit0
theorem Num.bit1_of_bit1 (n : Num) :
n + n + 1 = n.bit1
@[simp]
theorem Num.ofNat'_zero :
ofNat' 0 = 0
theorem Num.ofNat'_bit (b : Bool) (n : ) :
ofNat' (Nat.bit b n) = (bif b then Num.bit1 else Num.bit0) (ofNat' n)
@[simp]
theorem Num.ofNat'_one :
ofNat' 1 = 1
theorem Num.ofNat'_succ {n : } :
@[simp]
theorem Num.add_ofNat' (m n : ) :
@[simp]
theorem Num.cast_zero {α : Type u_1} [Zero α] [One α] [Add α] :
@[simp]
theorem Num.cast_zero' {α : Type u_1} [Zero α] [One α] [Add α] :
@[simp]
theorem Num.cast_one {α : Type u_1} [Zero α] [One α] [Add α] :
@[simp]
theorem Num.cast_pos {α : Type u_1} [Zero α] [One α] [Add α] (n : PosNum) :
(pos n) = n
@[simp]
theorem Num.cast_to_nat {α : Type u_1} [AddMonoidWithOne α] (n : Num) :
theorem Num.add_to_nat (m n : Num) :
(m + n) = m + n
theorem Num.mul_to_nat (m n : Num) :
(m * n) = m * n
theorem Num.cmp_to_nat (m n : Num) :
Ordering.casesOn (m.cmp n) (m < n) (m = n) (n < m)
theorem Num.lt_to_nat {m n : Num} :
m < n m < n
theorem Num.le_to_nat {m n : Num} :
@[simp]
@[simp]
theorem Num.of_to_nat' (n : Num) :
ofNat' n = n
theorem Num.to_nat_inj {m n : Num} :
m = n m = n

This tactic tries to turn an (in)equality about Nums to one about Nats by rewriting.

example (n : Num) (m : Num) : n ≤ n + m := by
  transfer_rw
  exact Nat.le_add_right _ _
Equations
Instances For

    This tactic tries to prove (in)equalities about Nums by transferring them to the Nat world and then trying to call simp.

    example (n : Num) (m : Num) : n ≤ n + m := by transfer
    
    Equations
    Instances For
      Equations
      • One or more equations did not get rendered due to their size.
      theorem Num.add_of_nat (m n : ) :
      (m + n) = m + n
      @[simp]
      theorem Num.cast_to_int {α : Type u_1} [AddGroupWithOne α] (n : Num) :
      @[simp]
      theorem Num.of_natCast {α : Type u_1} [AddMonoidWithOne α] (n : ) :
      theorem Num.of_nat_inj {m n : } :
      m = n m = n
      @[simp]
      theorem Num.of_to_nat (n : Num) :
      theorem Num.dvd_to_nat (m n : Num) :
      theorem PosNum.to_nat_inj {m n : PosNum} :
      m = n m = n
      @[simp]
      @[simp]
      Equations

      This tactic tries to turn an (in)equality about PosNums to one about Nats by rewriting.

      example (n : PosNum) (m : PosNum) : n ≤ n + m := by
        transfer_rw
        exact Nat.le_add_right _ _
      
      Equations
      Instances For

        This tactic tries to prove (in)equalities about PosNums by transferring them to the Nat world and then trying to call simp.

        example (n : PosNum) (m : PosNum) : n ≤ n + m := by transfer
        
        Equations
        Instances For
          @[simp]
          theorem PosNum.bit_to_nat (b : Bool) (n : PosNum) :
          (bit b n) = Nat.bit b n
          @[simp]
          theorem PosNum.cast_add {α : Type u_1} [AddMonoidWithOne α] (m n : PosNum) :
          (m + n) = m + n
          @[simp]
          theorem PosNum.cast_succ {α : Type u_1} [AddMonoidWithOne α] (n : PosNum) :
          @[simp]
          theorem PosNum.cast_inj {α : Type u_1} [AddMonoidWithOne α] [CharZero α] {m n : PosNum} :
          m = n m = n
          @[simp]
          theorem PosNum.one_le_cast {α : Type u_1} [LinearOrderedSemiring α] (n : PosNum) :
          1 n
          @[simp]
          theorem PosNum.cast_pos {α : Type u_1} [LinearOrderedSemiring α] (n : PosNum) :
          0 < n
          @[simp]
          theorem PosNum.cast_mul {α : Type u_1} [Semiring α] (m n : PosNum) :
          (m * n) = m * n
          @[simp]
          @[simp]
          theorem PosNum.cast_lt {α : Type u_1} [LinearOrderedSemiring α] {m n : PosNum} :
          m < n m < n
          @[simp]
          theorem PosNum.cast_le {α : Type u_1} [LinearOrderedSemiring α] {m n : PosNum} :
          theorem Num.bit_to_nat (b : Bool) (n : Num) :
          (bit b n) = Nat.bit b n
          theorem Num.cast_succ {α : Type u_1} [AddMonoidWithOne α] (n : Num) :
          @[simp]
          theorem Num.cast_add {α : Type u_1} [Semiring α] (m n : Num) :
          (m + n) = m + n
          @[simp]
          theorem Num.cast_bit0 {α : Type u_1} [Semiring α] (n : Num) :
          @[simp]
          theorem Num.cast_bit1 {α : Type u_1} [Semiring α] (n : Num) :
          n.bit1 = 2 * n + 1
          @[simp]
          theorem Num.cast_mul {α : Type u_1} [Semiring α] (m n : Num) :
          (m * n) = m * n
          theorem Num.size_to_nat (n : Num) :
          @[simp]
          theorem Num.ofNat'_eq (n : ) :
          ofNat' n = n
          @[simp]
          theorem Num.cast_toZNum {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] (n : Num) :
          @[simp]
          theorem Num.cast_toZNumNeg {α : Type u_1} [AddGroup α] [One α] (n : Num) :
          @[simp]
          theorem Num.add_toZNum (m n : Num) :
          theorem PosNum.pred_to_nat {n : PosNum} (h : 1 < n) :
          theorem Num.pred_to_nat (n : Num) :
          theorem Num.cmp_swap (m n : Num) :
          (m.cmp n).swap = n.cmp m
          @[simp]
          theorem Num.cast_lt {α : Type u_1} [LinearOrderedSemiring α] {m n : Num} :
          m < n m < n
          @[simp]
          theorem Num.cast_le {α : Type u_1} [LinearOrderedSemiring α] {m n : Num} :
          @[simp]
          theorem Num.cast_inj {α : Type u_1} [LinearOrderedSemiring α] {m n : Num} :
          m = n m = n
          theorem Num.castNum_eq_bitwise {f : NumNumNum} {g : BoolBoolBool} (p : PosNumPosNumNum) (gff : g false false = false) (f00 : f 0 0 = 0) (f0n : ∀ (n : PosNum), f 0 (pos n) = bif g false true then pos n else 0) (fn0 : ∀ (n : PosNum), f (pos n) 0 = bif g true false then pos n else 0) (fnn : ∀ (m n : PosNum), f (pos m) (pos n) = p m n) (p11 : p 1 1 = bif g true true then 1 else 0) (p1b : ∀ (b : Bool) (n : PosNum), p 1 (PosNum.bit b n) = bit (g true b) (bif g false true then pos n else 0)) (pb1 : ∀ (a : Bool) (m : PosNum), p (PosNum.bit a m) 1 = bit (g a true) (bif g true false then pos m else 0)) (pbb : ∀ (a b : Bool) (m n : PosNum), p (PosNum.bit a m) (PosNum.bit b n) = bit (g a b) (p m n)) (m n : Num) :
          @[simp]
          theorem Num.castNum_or (m n : Num) :
          @[simp]
          theorem Num.castNum_and (m n : Num) :
          @[simp]
          theorem Num.castNum_ldiff (m n : Num) :
          (m.ldiff n) = (↑m).ldiff n
          @[simp]
          theorem Num.castNum_xor (m n : Num) :
          @[simp]
          theorem Num.castNum_shiftLeft (m : Num) (n : ) :
          @[simp]
          theorem Num.castNum_shiftRight (m : Num) (n : ) :
          @[simp]
          theorem Num.castNum_testBit (m : Num) (n : ) :
          m.testBit n = (↑m).testBit n
          @[simp]
          theorem ZNum.cast_zero {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] :
          @[simp]
          theorem ZNum.cast_zero' {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] :
          @[simp]
          theorem ZNum.cast_one {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] :
          @[simp]
          theorem ZNum.cast_pos {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] (n : PosNum) :
          (pos n) = n
          @[simp]
          theorem ZNum.cast_neg {α : Type u_1} [Zero α] [One α] [Add α] [Neg α] (n : PosNum) :
          (neg n) = -n
          @[simp]
          theorem ZNum.cast_zneg {α : Type u_1} [AddGroup α] [One α] (n : ZNum) :
          (-n) = -n
          theorem ZNum.zneg_pos (n : PosNum) :
          -pos n = neg n
          theorem ZNum.zneg_neg (n : PosNum) :
          -neg n = pos n
          theorem ZNum.zneg_zneg (n : ZNum) :
          - -n = n
          theorem ZNum.zneg_succ (n : ZNum) :
          theorem ZNum.zneg_pred (n : ZNum) :
          @[simp]
          theorem ZNum.abs_to_nat (n : ZNum) :
          @[simp]
          theorem ZNum.abs_toZNum (n : Num) :
          @[simp]
          theorem ZNum.cast_to_int {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          theorem ZNum.bit1_of_bit1 (n : ZNum) :
          n + n + 1 = n.bit1
          @[simp]
          theorem ZNum.cast_bit0 {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          @[simp]
          theorem ZNum.cast_bit1 {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          @[simp]
          theorem ZNum.cast_bitm1 {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          theorem ZNum.add_zero (n : ZNum) :
          n + 0 = n
          theorem ZNum.zero_add (n : ZNum) :
          0 + n = n
          theorem ZNum.add_one (n : ZNum) :
          n + 1 = n.succ
          theorem PosNum.cast_sub' {α : Type u_1} [AddGroupWithOne α] (m n : PosNum) :
          @[simp]
          theorem Num.cast_sub' {α : Type u_1} [AddGroupWithOne α] (m n : Num) :
          @[simp]
          theorem Num.pred_succ (n : ZNum) :
          @[simp]
          theorem Num.ofZNum_toNat (n : ZNum) :
          (ofZNum n) = (↑n).toNat
          @[simp]
          theorem Num.cast_ofZNum {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          (ofZNum n) = (↑n).toNat
          @[simp]
          theorem Num.sub_to_nat (m n : Num) :
          (m - n) = m - n
          @[simp]
          theorem ZNum.cast_add {α : Type u_1} [AddGroupWithOne α] (m n : ZNum) :
          (m + n) = m + n
          @[simp]
          theorem ZNum.cast_succ {α : Type u_1} [AddGroupWithOne α] (n : ZNum) :
          @[simp]
          theorem ZNum.mul_to_int (m n : ZNum) :
          (m * n) = m * n
          theorem ZNum.cast_mul {α : Type u_1} [Ring α] (m n : ZNum) :
          (m * n) = m * n
          theorem ZNum.of_to_int' (n : ZNum) :
          ofInt' n = n
          theorem ZNum.to_int_inj {m n : ZNum} :
          m = n m = n
          theorem ZNum.cmp_to_int (m n : ZNum) :
          Ordering.casesOn (m.cmp n) (m < n) (m = n) (n < m)
          theorem ZNum.lt_to_int {m n : ZNum} :
          m < n m < n
          theorem ZNum.le_to_int {m n : ZNum} :
          @[simp]
          theorem ZNum.cast_lt {α : Type u_1} [LinearOrderedRing α] {m n : ZNum} :
          m < n m < n
          @[simp]
          theorem ZNum.cast_le {α : Type u_1} [LinearOrderedRing α] {m n : ZNum} :
          @[simp]
          theorem ZNum.cast_inj {α : Type u_1} [LinearOrderedRing α] {m n : ZNum} :
          m = n m = n

          This tactic tries to turn an (in)equality about ZNums to one about Ints by rewriting.

          example (n : ZNum) (m : ZNum) : n ≤ n + m * m := by
            transfer_rw
            exact le_add_of_nonneg_right (mul_self_nonneg _)
          
          Equations
          Instances For

            This tactic tries to prove (in)equalities about ZNums by transferring them to the Int world and then trying to call simp.

            example (n : ZNum) (m : ZNum) : n ≤ n + m * m := by
              transfer
              exact mul_self_nonneg _
            
            Equations
            Instances For
              @[simp]
              theorem ZNum.cast_sub {α : Type u_1} [Ring α] (m n : ZNum) :
              (m - n) = m - n
              theorem ZNum.neg_of_int (n : ) :
              (-n) = -n
              @[simp]
              theorem ZNum.ofInt'_eq (n : ) :
              ofInt' n = n
              @[simp]
              @[simp]
              theorem ZNum.of_to_int (n : ZNum) :
              @[simp]
              theorem ZNum.of_intCast {α : Type u_1} [AddGroupWithOne α] (n : ) :
              @[simp]
              theorem ZNum.of_natCast {α : Type u_1} [AddGroupWithOne α] (n : ) :
              @[simp]
              theorem ZNum.dvd_to_int (m n : ZNum) :
              theorem PosNum.divMod_to_nat_aux {n d : PosNum} {q r : Num} (h₁ : r + d * (q + q) = n) (h₂ : r < 2 * d) :
              (d.divModAux q r).2 + d * (d.divModAux q r).1 = n (d.divModAux q r).2 < d
              theorem PosNum.divMod_to_nat (d n : PosNum) :
              n / d = (d.divMod n).1 n % d = (d.divMod n).2
              @[simp]
              theorem PosNum.div'_to_nat (n d : PosNum) :
              @[simp]
              theorem PosNum.mod'_to_nat (n d : PosNum) :
              @[simp]
              theorem Num.div_zero (n : Num) :
              n / 0 = 0
              @[simp]
              theorem Num.div_to_nat (n d : Num) :
              (n / d) = n / d
              @[simp]
              theorem Num.mod_zero (n : Num) :
              n % 0 = n
              @[simp]
              theorem Num.mod_to_nat (n d : Num) :
              (n % d) = n % d
              theorem Num.gcd_to_nat_aux {n : } {a b : Num} :
              a b(a * b).natSize n(gcdAux n a b) = (↑a).gcd b
              @[simp]
              theorem Num.gcd_to_nat (a b : Num) :
              (a.gcd b) = (↑a).gcd b
              instance Num.decidableDvd :
              DecidableRel fun (x1 x2 : Num) => x1 x2
              Equations
              instance PosNum.decidableDvd :
              DecidableRel fun (x1 x2 : PosNum) => x1 x2
              Equations
              @[simp]
              theorem ZNum.div_zero (n : ZNum) :
              n / 0 = 0
              @[simp]
              theorem ZNum.div_to_int (n d : ZNum) :
              (n / d) = n / d
              @[simp]
              theorem ZNum.mod_to_int (n d : ZNum) :
              (n % d) = n % d
              @[simp]
              theorem ZNum.gcd_to_nat (a b : ZNum) :
              (a.gcd b) = (↑a).gcd b
              instance ZNum.decidableDvd :
              DecidableRel fun (x1 x2 : ZNum) => x1 x2
              Equations

              Cast a SNum to the corresponding integer.

              Equations
              Instances For
                Equations
                instance SNum.lt :
                Equations
                instance SNum.le :
                Equations