1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
; See the top-level arithmetic-2 LICENSE file for authorship,
; copyright, and license information.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; integerp.lisp
;;;
;;;
;;; This book contains several lemmatta about when a sum or
;;; product is or is not an integer.
;;;
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package "ACL2")
(local (include-book "../pass1/top"))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; The first two cannot be type-prescriptions.
(defthm integerp-1a
(implies (and (integerp (+ x y))
(acl2-numberp x)
(integerp y))
(integerp x)))
(defthm integerp-1b
(implies (and (integerp (+ x y))
(acl2-numberp y)
(integerp x))
(integerp y)))
; The next eight rules are rather weak, and do not cover all the cases.
; Perhaps I should do something about it.
(defthm nintegerp-1a
(implies (and (real/rationalp x)
(real/rationalp y)
(< 0 x)
(< x y))
(not (integerp (* x (/ y)))))
:hints (("Goal" :use (:theorem
(implies (and (real/rationalp x)
(real/rationalp y)
(< 0 x)
(< x y))
(and (< 0 (* x (/ y)))
(< (* x (/ y)) 1))))
:in-theory (enable prefer-*-to-/)))
:rule-classes :type-prescription)
(defthm nintegerp-1b
(implies (and (real/rationalp x)
(real/rationalp y)
(< 0 x)
(< x y))
(not (integerp (* (/ y) x))))
:rule-classes :type-prescription)
(defthm nintegerp-2a
(implies (and (real/rationalp x)
(real/rationalp y)
(< x 0)
(< y x))
(not (integerp (* x (/ y)))))
:hints (("Goal" :use (:instance nintegerp-1a
(x (- x))
(y (- y)))))
:rule-classes :type-prescription)
(defthm nintegerp-2b
(implies (and (real/rationalp x)
(real/rationalp y)
(< x 0)
(< y x))
(not (integerp (* (/ y) x))))
:rule-classes :type-prescription)
(defthm nintegerp-3a
(implies (and (real/rationalp x)
(real/rationalp y)
(< 0 x)
(< y (- x)))
(not (integerp (* x (/ y)))))
:hints (("Goal" :use (:instance nintegerp-1a
(y (- y)))))
:rule-classes :type-prescription)
(defthm nintegerp-3b
(implies (and (real/rationalp x)
(real/rationalp y)
(< 0 x)
(< y (- x)))
(not (integerp (* (/ y) x))))
:rule-classes :type-prescription)
(defthm nintegerp-4a
(implies (and (real/rationalp x)
(real/rationalp y)
(< x 0)
(< (- x) y))
(not (integerp (* x (/ y)))))
:hints (("Goal" :use (:instance nintegerp-1a
(x (- x)))))
:rule-classes :type-prescription)
(defthm nintegerp-4b
(implies (and (real/rationalp x)
(real/rationalp y)
(< x 0)
(< (- x) y))
(not (integerp (* (/ y) x))))
:rule-classes :type-prescription)
(encapsulate
()
(local
(defthm nintegerp-expt-helper
(implies (and (< 1 x)
(real/rationalp x)
(< n 0)
(integerp n))
(and (< 0 (expt x n))
(< (expt x n) 1)))
:rule-classes nil))
(defthm nintegerp-expt
(implies (and (real/rationalp x)
(< 1 x)
(integerp n)
(< n 0))
(not (integerp (expt x n))))
:hints (("Goal" :use nintegerp-expt-helper))
:rule-classes :type-prescription)
(defthm nintegerp-/
(implies (and (real/rationalp x)
(< 1 x))
(not (integerp (/ x))))
:hints (("Goal" :use ((:instance nintegerp-expt
(n -1)))
:in-theory (disable nintegerp-expt)))
:rule-classes :type-prescription)
)
|