This file is indexed.

/usr/share/acl2-8.0dfsg/books/arithmetic/inequalities.lisp is in acl2-books-source 8.0dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
; ACL2 books on arithmetic
; Copyright (C) 1997  Computational Logic, Inc.
; License: A 3-clause BSD license.  See the LICENSE file distributed with ACL2.

; Written by:
; Matt Kaufmann, Bishop Brock, and John Cowles, with help from Art Flatau
; Computational Logic, Inc.
; 1717 West Sixth Street, Suite 290
; Austin, TX 78703-4776 U.S.A.

;; Extended by Ruben Gamboa to include the reals when ACL2(r) is used.  This is
;; nothing more than a trivial change of rationalp to realp.

;; Modified by Jared Davis in January 2014 to add xdoc, simplify hints, and
;; generally organize into sections.

(in-package "ACL2")

(include-book "equalities")

(local (defthm equal-of-booleans-rewrite
         ;; [Jared] this rule avoids needing many corollaries and ugly uses of
         ;; the previous rule iff-equal
         (implies (and (booleanp x)
                       (booleanp y))
                  (equal (equal x y)
                         (iff x y)))))


(defsection inequalities-of-sums
  :parents (arithmetic-1)
  :short "Basic normalization to move negative terms to the other side of an
inequality."

  (defthm <-0-minus
    (equal (< 0 (- x))
           (< x 0)))

  (defthm <-minus-zero
    (equal (< (- x) 0)
           (< 0 x)))

  (defthm <-0-+-negative-1
    (equal (< 0 (+ (- y) x))
           (< y x)))

  (defthm <-0-+-negative-2
    (equal (< 0 (+ x (- y)))
           (< y x)))

  (defthm <-+-negative-0-1
    (equal (< (+ (- y) x) 0)
           (< x y)))

  (defthm <-+-negative-0-2
    (equal (< (+ x (- y)) 0)
           (< x y))))


; ??? I'm not convinced we should be apply FC to REAL/RATIONALP hypotheses,
; but for now I'll go ahead and do so at times.

(defsection inequalities-of-products
  :parents (arithmetic-1)
  :short "Rules for reducing inequalities between products, canceling like
factors, and comparing products against 0."

; The following two lemmas could be extended by adding two more such
; lemmas, i.e. for (< (* x z) (* z y)) and (< (* z x) (* y z)), but
; rather than incur that overhead here and in any other such cases
; (and besides, how about for example (< (* x z a) (* z a y))?), I'll
; wait for metalemmas to handle such things.

  (defthm <-*-right-cancel
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y))
                  (fc (real/rationalp z)))
             (equal (< (* x z) (* y z))
                    (cond ((< 0 z)     (< x y))
                          ((equal z 0) nil)
                          (t           (< y x)))))
    :hints (("Goal" :use ((:instance (:theorem
                                      (implies (and (real/rationalp a)
                                                    (< 0 a)
                                                    (real/rationalp b)
                                                    (< 0 b))
                                               (< 0 (* a b))))
                                     (a (abs (- y x)))
                                     (b (abs z)))))))

  (defthm <-*-left-cancel
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y))
                  (fc (real/rationalp z)))
             (equal (< (* z x) (* z y))
                    (cond ((< 0 z)     (< x y))
                          ((equal z 0) nil)
                          (t           (< y x))))))

  (defthm <-*-0
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< (* x y) 0)
                    (and (not (equal x 0))
                         (not (equal y 0))
                         (iff (< x 0) (< 0 y))))))

  (defthm 0-<-*
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< 0 (* x y))
                    (and (not (equal x 0))
                         (not (equal y 0))
                         (iff (< 0 x) (< 0 y))))))

  (defthm <-*-x-y-y
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< (* x y) y)
                    (cond ((equal y 0) nil)
                          ((< 0 y)     (< x 1))
                          (t           (< 1 x)))))
    :hints (("Goal" :use ((:instance <-*-right-cancel
                                     (z y)
                                     (x x)
                                     (y 1))))))

  (defthm <-*-y-x-y
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< (* y x) y)
                    (cond ((equal y 0) nil)
                          ((< 0 y)     (< x 1))
                          (t           (< 1 x))))))

  (defthm <-y-*-x-y
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< y (* x y))
                    (cond ((equal y 0) nil)
                          ((< 0 y)     (< 1 x))
                          (t           (< x 1)))))
    :hints (("Goal" :use ((:instance <-*-right-cancel
                                     (z y)
                                     (x 1)
                                     (y x))))))

  (defthm <-y-*-y-x
    (implies (and (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< y (* y x))
                    (cond ((equal y 0) nil)
                          ((< 0 y)     (< 1 x))
                          (t           (< x 1)))))))



(defsection inequalities-of-reciprocals
  :parents (arithmetic-1)
  :short "Basic rules for moving reciprocals across inequalities, comparing
reciprocals, and canceling reciprocals by multiplying across an inequality."

  (defthm /-preserves-positive
    (implies (fc (real/rationalp x))
             (equal (< 0 (/ x))
                    (< 0 x))))

  (defthm /-preserves-negative
    (implies (fc (real/rationalp x))
             (equal (< (/ x) 0)
                    (< x 0))))

  (defthm /-inverts-order-1
    (implies (and (< 0 x)
                  (< x y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (< (/ y) (/ x)))
    :hints (("Goal" :use ((:instance <-*-right-cancel (z (/ (* x y))))))))

  (defthm /-inverts-order-2
    (implies (and (< y 0)
                  (< x y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (< (/ y) (/ x)))
    :hints (("Goal"
             :use ((:instance <-*-right-cancel (z (/ (* x y)))))
             :in-theory (disable <-*-right-cancel))))

  (defthm /-inverts-weak-order
    (implies (and (< 0 x)
                  (<= x y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (not (< (/ x) (/ y))))
    :hints (("Goal"
             :use /-inverts-order-1
             :in-theory (disable /-inverts-order-1))))

  (defthm <-unary-/-negative-left
    (implies (and (< x 0)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< (/ x) y)
                    (< (* x y) 1)))
    :hints (("Goal"
             :use ((:instance <-*-left-cancel (z x) (x (/ x)) (y y)))
             :in-theory (e/d (Uniqueness-of-*-inverses)
                             (equal-/)))))

  (defthm <-unary-/-negative-right
    (implies (and (< x 0)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< y (/ x))
                    (< 1 (* x y))))
    :hints (("Goal" :use ((:instance <-*-right-cancel (z x) (x (/ x)) (y y))))))

  (defthm <-unary-/-positive-left
    (implies (and (< 0 x)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< (/ x) y)
                    (< 1 (* x y))))
    :hints (("Goal" :use ((:instance <-*-left-cancel (z x) (x (/ x)) (y y))))))

  (defthm <-unary-/-positive-right
    (implies (and (< 0 x)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< y (/ x))
                    (< (* x y) 1)))
    :hints (("Goal"
             :use ((:instance <-*-left-cancel (z x) (x (/ x)) (y y)))
             :in-theory (e/d (Uniqueness-of-*-inverses)
                             (<-unary-/-positive-left
                              equal-/
                              <-*-left-cancel)))))

  (defthm <-*-/-right
    (implies (and (< 0 y)
                  (fc (real/rationalp a))
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (equal (< a (* x (/ y)))
                    (< (* a y) x)))
    :hints (("Goal" :use ((:instance <-*-right-cancel
                                     (x a)
                                     (y (* x (/ y)))
                                     (z y))))))

  (defthm <-*-/-right-commuted
    (implies (and (< 0 y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y))
                  (fc (real/rationalp a)))
             (equal (< x (* (/ y) a))
                    (< (* x y) a))))

  (defthm <-*-/-left
    (implies (and (< 0 y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y))
                  (fc (real/rationalp a)))
             (equal (< (* x (/ y)) a)
                    (< x (* a y))))
    :hints (("Goal" :use ((:instance <-*-right-cancel
                                     (y a)
                                     (x (* x (/ y)))
                                     (z y))))))

  (defthm <-*-/-left-commuted
    (implies (and (< 0 y)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y))
                  (fc (real/rationalp a)))
             (equal (< (* (/ y) x) a)
                    (< x (* y a))))))


#| Already covered by EQUAL-*-/-2 from rationals-equalities.lisp
(defthm equal-binary-quotient
  (implies (and (fc (real/rationalp x))
                (fc (real/rationalp y))
                (fc (real/rationalp z))
                (fc (not (equal z 0))))
           (equal (equal x (/ y z))
                  (equal (* x z) y)))
  :hints (("Goal" :use
           ((:instance
             (:theorem
              (implies (and (real/rationalp x)
                            (real/rationalp y)
                            (real/rationalp z)
                            (not (equal z 0))
                            (equal x y))
                       (equal (* x z) (* y z))))
             (x (* x z))
             (y y)
             (z (/ z)))))))
|#


(defsection inequalities-of-products-2
  :extension inequalities-of-products

  ;; Jared: I found I couldn't move *-preserves->=-for-nonnegatives up into the
  ;; rule up ordinary inequalities-of-products section without breaking proofs
  ;; like coi/super-ihs/iter-sqrt/sqrt-epsilon-delta-aux-6.  Apparently these
  ;; proofs are sensitive to the order of rules here.  Ugh.

  (local (defthm *-preserves->=-1
           (implies (and (real/rationalp x1)
                         (real/rationalp x2)
                         (real/rationalp y1)
                         (>= x1 x2)
                         (>= x2 0)
                         (>= y1 0))
                    (>= (* x1 y1) (* x2 y1)))
           :rule-classes nil))

  (local (defthm *-preserves->=-2
           (implies (and (real/rationalp x2)
                         (real/rationalp y1)
                         (real/rationalp y2)
                         (>= y1 y2)
                         (>= x2 0)
                         (>= y2 0))
                    (>= (* x2 y1) (* x2 y2)))
           :rule-classes nil))

  (defthm *-preserves->=-for-nonnegatives
    (implies (and (>= x1 x2)
                  (>= y1 y2)
                  (>= x2 0)
                  (>= y2 0)
                  (fc (real/rationalp x1))
                  (fc (real/rationalp x2))
                  (fc (real/rationalp y1))
                  (fc (real/rationalp y2)))
             (>= (* x1 y1) (* x2 y2)))
    :hints (("Goal" :use
             (*-preserves->=-1 *-preserves->=-2)
             :in-theory (disable <-*-left-cancel <-*-right-cancel))))


  (local (defthm *-preserves->-1
           (implies (and (real/rationalp x1)
                         (real/rationalp x2)
                         (real/rationalp y1)
                         (> x1 x2)
                         (>= x2 0)
                         (> y1 0))
                    (>= (* x1 y1) (* x2 y1)))
           :rule-classes nil))

  (local (defthm *-preserves->-2
           (implies (and (real/rationalp x2)
                         (real/rationalp y1)
                         (real/rationalp y2)
                         (>= y1 y2)
                         (>= x2 0)
                         (>= y2 0))
                    (>= (* x2 y1) (* x2 y2)))
           :rule-classes nil))

  (defthm *-preserves->-for-nonnegatives-1
    (implies (and (> x1 x2)
                  (>= y1 y2)
                  (>= x2 0)
                  (> y2 0)
                  (fc (real/rationalp x1))
                  (fc (real/rationalp x2))
                  (fc (real/rationalp y1))
                  (fc (real/rationalp y2)))
             (> (* x1 y1) (* x2 y2)))
    :hints (("Goal" :use (*-preserves->-1 *-preserves->-2)
             :in-theory (disable <-*-left-cancel <-*-right-cancel
                                 *-preserves->=-for-nonnegatives))))

  (defthm x*y>1-positive-lemma
    (implies (and (> x i)
                  (> y j)
                  (real/rationalp i)
                  (real/rationalp j)
                  (< 0 i)
                  (< 0 j)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (> (* x y) (* i j)))
    :hints (("Goal" :use ((:instance 0-<-*
                                     (x (- x i))
                                     (y (- y j)))))))

  (defthm x*y>1-positive
    (implies (and (> x 1)
                  (> y 1)
                  (fc (real/rationalp x))
                  (fc (real/rationalp y)))
             (> (* x y) 1))
    :rule-classes (:linear :rewrite)
    :hints (("Goal" :use ((:instance x*y>1-positive-lemma
                                     (i 1) (j 1)))))))


(defsection inequalities-of-exponents
  :parents (arithmetic-1)
  :short "Rules for resolving inequalities between exponents."

  (defthm expt->-1
    (implies (and (< 1 r)
                  (< 0 i)
                  (fc (real/rationalp r))
                  (fc (integerp i)))
             (< 1 (expt r i)))
    :rule-classes :linear)

  (local (defun Math-induction-start-at-k (k n)
           (declare (xargs :guard (and (integerp k)
                                       (integerp n)
                                       (not (< n k)))
                           :measure (if (and (integerp k)
                                             (integerp n)
                                             (< k n))
                                        (- n k)
                                      0)))
           (if (and (integerp k)
                    (integerp n)
                    (< k n))
               (Math-induction-start-at-k k (+ -1 n))
             t)))

  (local (defthm hack
           (implies (and (< (* x y) z)
                         (real/rationalp x)
                         (real/rationalp y)
                         (real/rationalp z)
                         (< 1 x)
                         (< 0 y))
                    (< y z))
           :hints
           (("Goal" :use ((:instance (:theorem
                                      (implies (and (real/rationalp x)
                                                    (real/rationalp y)
                                                    (real/rationalp z)
                                                    (< 0 y)
                                                    ;; w = (* x1 y)
                                                    (real/rationalp w)
                                                    (< 0 w)
                                                    (< (+ y w) z))
                                               (< y z)))
                                     (w (* (- x 1) y))))))))

  (defthm expt-is-increasing-for-base>1
    (implies (and (< 1 r)
                  (< i j)
                  (fc (real/rationalp r))
                  (fc (integerp i))
                  (fc (integerp j)))
             (< (expt r i)
                (expt r j)))
    :rule-classes (:rewrite :linear)
    :hints (("Goal"
             :in-theory (enable Exponents-add-unrestricted)
             :induct (Math-induction-start-at-k (+ 1 i) j))))

  (defthm Expt-is-decreasing-for-pos-base<1
    (implies (and (< 0 r)
                  (< r 1)
                  (< i j)
                  (fc (real/rationalp r))
                  (fc (integerp i))
                  (fc (integerp j)))
             (< (expt r j)
                (expt r i)))
    :hints (("Goal" :use ((:instance expt-is-increasing-for-base>1 (r (/ r)))))))

  (defthm Expt-is-weakly-increasing-for-base>1
    (implies (and (< 1 r)
                  (<= i j)
                  (fc (real/rationalp r))
                  (fc (integerp i))
                  (fc (integerp j)))
             (<= (expt r i)
                 (expt r j)))
    :hints (("Goal" :use expt-is-increasing-for-base>1
             :in-theory (disable  expt-is-increasing-for-base>1))))

  (defthm Expt-is-weakly-decreasing-for-pos-base<1
    (implies (and (< 0 r)
                  (< r 1)
                  (<= i j)
                  (fc (real/rationalp r))
                  (fc (integerp i))
                  (fc (integerp j)))
             (<= (expt r j)
                 (expt r i)))
    :hints (("Goal" :use expt-is-decreasing-for-pos-base<1
             :in-theory (disable expt-is-decreasing-for-pos-base<1)))))