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 501 502 503 504 505 506 507 508 509 510
|
#|
In this ACL2 book, we prove that in standard ACL2, the square root of two does
not exist, and in ACL2(r), it does exist and is an irrational real number. The
interested reader should also take a look at "iter-sqrt.lisp", in which we
prove that you _can_ get arbitrarily close to the square root in standard ACL2.
BOZO: We should also prove that you can get the actual square root in ACL2(r).
In standard ACL2 (as opposed to ACL2(r), which we will discuss below),
irrational numbers are not part of ACL2's universe of discourse, and all
numbers are Gaussian rationals (i.e. complex numbers whose real and imaginary
parts are both rational). Moreover, the result of any arithmetic operation is
numeric, and non-numeric arguments to arithmetic operators behave as zero. It
is thus possible to prove that there cannot be a square root of two in ACL2:
(defthm there-is-no-sqrt-2
(not (equal (* x x) 2)))
Why is this important? Well, we wondered what would happen if somebody tried
to define sqrt using something like
(encapsulate
(((sqrt *) => *))
(defthm sqrt-sqrt
(equal (* (sqrt x) (sqrt x)) x)))
Of course, ACL2 will complain, because our careless programmer failed to
provide a _witness_ function for sqrt. That is, they failed to provide an
example of a function that would satisfy the theorem sqrt-sqrt. While it is
often the case that providing such functions is annoying, in this case it is
crucial, since we will see that no such function exists in the ACL2 world.
Specifically, let's consider (sqrt 2). It is well-known that this is an
irrational number. Since the ACL2 numbers are limited to the Gaussian
rationals, it becomes obvious that (sqrt 2) cannot exist in the ACL2 universe.
The heart of the proof, then, is to show that (sqrt 2) is not rational.
To prove that (sqrt 2) is irrational, we follow the standard proof by
contradiction. Suppose that there were such a rational number p/q, in lowest
terms, so that p/q * p/q is equal to 2. Well, then, p^2 = 2 q^2, so we have
immediately that p^2 is even, and hence so is p. But in that case, p^2 is a
multiple of 4, so q^2 is a multiple of 2, and hence q is also even. But then
p/q is not in lowest terms (i.e. p and q are not relatively prime since they
share the factor 2), so we have derived a contradiction, completing the proof.
Now we turn to the situation in ACL2(r), a variant of ACL2 described in :DOC
real.
In ACL2(r), the universe of discourse is expanded to contain all real numbers,
including irrational ones. So in ACL2(r), the square root of two *does* exist,
and we cannot prove the theorem there-is-no-sqrt-2. Instead, we can prove the
following weaker theorem:
(defthm irrational-sqrt-2
(implies (equal (* x x) 2)
(and (realp x)
(not (rationalp x)))))
That is to say, any square root of two must be an irrational real number.
|#
(in-package "ACL2")
(include-book "arithmetic/top" :dir :system)
;;
;; We define the following macro purely for readability. (divisible n p) is
;; true iff p divides n.
;;
(defmacro divisible (n d)
`(integerp (/ ,n ,d)))
(encapsulate
()
;;
;; This is a handy induction scheme to reason about even numbers.
;;
(local
(defun even-induction (x)
"Induct by going two steps at a time"
(if (or (zp x) (equal x 1))
x
(1+ (even-induction (1- (1- x)))))))
;;
;; This is really the main theorem of this encapsulate. What we have is that
;; for non-negative numbers p, if p*p is even, then p must be even as well.
;; We were somewhat surprised that proving this fact isn't really trivial.
;; The reason is that the "obvious" proof rewrites "p" into "2n+1". In turn,
;; this means invoking the remainder theorem and so on. It was simply easier
;; to prove it by induction!
;;
(local
(defthm even-square-implies-even-1
(implies (and (integerp p)
(<= 0 p)
(divisible (* p p) 2))
(divisible p 2))
:hints (("Goal"
:induct (even-induction p)))
:rule-classes nil))
;;
;; We don't really need to consider negative numbers here, but it makes life
;; much simpler later if we can get rid of the non-negative hypothesis. So,
;; we prove the equivalent result here for negative numbers here. We can
;; simply invoke the previous theorem, since -p * -p is equal to p*p and -p
;; is even iff p is even.
;;
(local
(defthm even-square-implies-even-2
(implies (and (integerp p)
(<= p 0)
(divisible (* p p) 2))
(divisible p 2))
:hints (("Goal"
:use (:instance even-square-implies-even-1 (p (- p)))))
:rule-classes nil))
;;
;; Now, we can "export" the useful theorem that all integers are even if their
;; squares are even.
;;
(defthm even-square-implies-even
(implies (and (integerp p)
(divisible (* p p) 2))
(divisible p 2))
:hints (("Goal"
:use ((:instance even-square-implies-even-1)
(:instance even-square-implies-even-2))))))
;;
;; Surprisingly, we found we needed the following rewrite rule. Surely there's
;; a better way.
;;
(defthm integers-closed-under-square
(implies (integerp p)
(integerp (* p p))))
;;
;; After showing that "p" is even from "p*p = 2*q*q", we need to turn around
;; and show that "q" is even. To do that, we show that "p*p" is a multiple of
;; 4, and divide both sides by 2. Here's the first step.
;;
(defthm even-implies-square-multiple-of-4
(implies (and (integerp p)
(divisible p 2))
(divisible (* p p) 4))
:hints (("Goal'"
:use (:instance integers-closed-under-square (p (* p 1/2)))
:in-theory (disable integers-closed-under-square))))
(encapsulate
()
;;
;; Now, we have enough machinery to prove that both p and q are even from the
;; equation "p*p = 2*q*q". We start by showing that in fact, p*p is even
;; follows naturally from the above equation. It's a bit surprising that this
;; isn't obvious to ACL2.
;;
(local
(defthm aux-1
(implies (and (integerp q)
(equal p (* 2 (* q q))))
(and (integerp p)
(divisible p 2)))))
;;
;; ACL2 gets lost in the next proof because it doesn't know to divide by 2
;; at the crucial step. So, we prove this nifty rewrite rule....
;;
(local
(defthm aux-2
(implies (equal (* p p) (* 2 q q))
(equal (* 1/2 q q) (* 1/4 p p)))))
;;
;; And now, here's a crucial component. We show that q*q must be even.
;;
(local
(defthm aux-3
(implies (and (integerp p)
(integerp q)
(equal (* p p) (* 2 (* q q))))
(divisible (* q q) 2))
:hints (("goal"
:use ((:instance even-square-implies-even)
(:instance aux-1 (p (* p p ))))
:in-theory (disable even-square-implies-even aux-1))
("goal'5'"
:use (:instance even-implies-square-multiple-of-4)
:in-theory (disable even-implies-square-multiple-of-4)))
:rule-classes nil))
;;
;; From the above, it is a simple corollary that q is even, and so we have our
;; first major lemma. Hmmm, maybe we should learn how to use the :corollary
;; "hint".
;;
(defthm sqrt-lemma-1.1
(implies (and (integerp p)
(integerp q)
(equal (* p p) (* 2 (* q q))))
(divisible q 2))
:hints (("goal"
:use ((:instance aux-3)
(:instance even-square-implies-even (p q))))))
;;
;; The second key lemma is that p is also even. This is much simpler!
;;
(defthm sqrt-lemma-1.2
(implies (and (integerp p)
(integerp q)
(equal (* p p) (* 2 (* q q))))
(divisible p 2))
:hints (("goal"
:use ((:instance even-square-implies-even)
(:instance aux-1 (p (* p p ))))
:in-theory (disable even-square-implies-even aux-1)))))
(encapsulate
()
;;
;; Now, we're ready to instantiate our results with the numerator and
;; denominator of the alleged square root of x. In ACL2, we're already
;; guaranteed that the numerator and denominator are relatively prime, so if
;; we can apply the previous lemmas to them, we'll be done.
;;
;; First, however, we have to convert the equation x*x = 2 into the friendlier
;; (numerator x) * (numerator x) = 2 * (denominator x) * (denominator x). We
;; start out with this simple cancellation lemma. We do this for no better
;; reason than to give it a name, so we can refer to it later in a :use hint.
;;
(local
(defthm aux-1
(implies (equal x y)
(equal (* x z) (* y z)))
:rule-classes nil))
;;
;; Now, for the crucial step. We show ACL2 how to move the q*q from one side
;; of the equation to the other.
;;
(local
(defthm aux-2
(implies (and (integerp p)
(integerp q)
(> q 0)
(equal (* (/ p q) (/ p q)) 2))
(equal (* p p) (* 2 q q)))
:hints (("goal''"
:use (:instance aux-1
(x (* p p (/ q) (/ q)))
(y 2)
(z (* q q)))))))
;;
;; Finally, we need only instantiate the previous theorem with (numerator x)
;; and (denominator x) to get our result.
;;
(defthm sqrt-lemma-1.3
(implies (and (rationalp x)
(equal (* x x) 2))
(equal (* (numerator x) (numerator x))
(* 2 (* (denominator x)
(denominator x)))))
:hints (("Goal"
:use (:instance aux-2
(p (numerator x))
(q (denominator x)))))))
;;
;; And here is the mathematical high point. We're really doing hothing more
;; than putting together the previous results into a single theorem.
;;
(defthm sqrt-lemma-1.4
(implies (and (rationalp x)
(equal (* x x) 2))
(and (divisible (numerator x) 2)
(divisible (denominator x) 2)))
:hints (("Goal"
:use ((:instance sqrt-lemma-1.1
(p (numerator x))
(q (denominator x)))
(:instance sqrt-lemma-1.2
(p (numerator x))
(q (denominator x)))))))
;;
;; And now, we need only invoke the property that the numerator and denominator
;; are relatively prime to show that no such x can exist. Sadly, this was more
;; difficult than we thought. From the documentation, all I could gather was
;; that (numerator x) and (denominator x) were in "lowest terms", but if so
;; ACL2 didn't seem to believe it. Worse, the one key theorem according to the
;; docs was that the numerator for non-rationals was zero. Searching the
;; released ACL2 "books", I found no relevant theorem. Luckily, however, ACL2
;; sources _are_ released as well. Digging in "axioms.lisp", I found the
;; following beauty:
;;
;; (defaxiom Lowest-Terms
;; (implies (and (integerp n)
;; (rationalp x)
;; (integerp r)
;; (integerp q)
;; (< 0 n)
;; (equal (numerator x) (* n r))
;; (equal (denominator x) (* n q)))
;; (equal n 1))
;; :rule-classes nil)
;;
;; This was just what I needed -- and the :rule-classes nil explained why ACL2
;; seemed oblivious to it....
;;
(defthm sqrt-lemma-1.5
(implies (and (divisible (numerator x) 2)
(divisible (denominator x) 2))
(not (rationalp x)))
:hints (("Goal"
:use (:instance Lowest-Terms
(n 2)
(r (/ (numerator x) 2))
(q (/ (denominator x) 2)))))
:rule-classes nil)
;;
;; So finally, we can prove that the square root of two is not a rational
;; number by simple propositional rewriting.
;;
(defthm sqrt-2-is-not-rationalp
(implies (rationalp x)
(not (equal (* x x) 2)))
:hints (("Goal"
:use ((:instance sqrt-lemma-1.4)
(:instance sqrt-lemma-1.5)))))
;;
;; Next, we turn our attention to the complex numbers. These are fairly easy
;; to dismiss as candidates for the square root of two, for the following
;; reasons. First of all, the only time the square of a complex is real is
;; when its real or imaginary parts are zero. Since ACL2 complex numbers
;; have non-zero imaginary parts, this means that the only candidates for
;; square roots of real numbers are pure imaginary numbers. But all these have
;; negative squares, and so none of them can be the square root of 2.
;;
;; Unfortunately, ACL2 doesn't seem happy reasoning about complex arithmetic.
;; Part of the reason is that the following axiom makes no rule available for
;; reasoning:
;;
;; (defaxiom complex-definition
;; (implies (and (real/rationalp x)
;; (real/rationalp y))
;; (equal (complex x y)
;; (+ x (* #c(0 1) y))))
;; :rule-classes nil)
;;
;; So, we start out by defining what complex squares look like....
;;
(encapsulate
()
;;
;; First, we show ACL2 how to rewrite complex squares into its complex form.
;;
(local
(defthm complex-square-definition-1
(equal (* (+ x (* #c(0 1) y))
(+ x (* #c(0 1) y)))
(+ (- (* x x) (* y y))
(* #c(0 1) (+ (* x y) (* x y)))))
:rule-classes nil))
;;
;; Now, we can use the theorem above to show how to rewrite complex squares.
;;
(local
(defthm complex-square-definition-2
(implies (and (real/rationalp x)
(real/rationalp y))
(equal (* (+ x (* #c(0 1) y))
(+ x (* #c(0 1) y)))
(complex (- (* x x) (* y y))
(+ (* x y) (* x y)))))
:hints (("Goal"
:use ((:instance complex-square-definition-1)
(:instance complex-definition
(x (- (* x x) (* y y)))
(y (+ (* x y) (* x y)))))))
:rule-classes nil))
;;
;; Finally, we can characterize complex squares. Perhaps we should enable a
;; rule like this to reduce complex multiplication?
;;
(defthm complex-square-definition
(implies (and (real/rationalp x)
(real/rationalp y))
(equal (* (complex x y) (complex x y))
(complex (- (* x x) (* y y))
(+ (* x y) (* x y)))))
:hints (("Goal"
:use ((:instance complex-definition)
(:instance complex-square-definition-2))))
:rule-classes nil))
;;
;; Now that we know how to square complex numbers, we can show that if a
;; complex square is rational, then the complex number was a pure imaginary.
;;
(encapsulate
()
;;
;; First, we use the complex square definition to find the imaginary part of
;; the complex square -- this part must be zero for the square to be rational
;;
(local
(defthm complex-squares-real-iff-imaginary-aux
(implies (and (complex/complex-rationalp x)
(real/rationalp (* x x)))
(equal (+ (* (realpart x) (imagpart x))
(* (realpart x) (imagpart x)))
0))
:hints (("Goal"
:use (:instance complex-square-definition
(x (realpart x))
(y (imagpart x)))))
:rule-classes nil))
;;
;; Surely there's a better way! I need to give ACL2 a hint here, so I have
;; to name this, well, silly lemma.
;;
(local
(defthm silly
(implies (and (real/rationalp x)
(equal (+ x x) 0))
(= x 0))
;; Added by Matt K. for v2-7.
:rule-classes nil))
;;
;; And now, a key result. Only the imaginary numbers are good candidates
;; for the square root of 2.
;;
(defthm complex-squares-real-iff-imaginary
(implies (and (complex/complex-rationalp x)
(real/rationalp (* x x)))
(equal (realpart x) 0))
:hints (("Goal"
:use ((:instance complex-squares-real-iff-imaginary-aux)
(:instance silly (x (* (realpart x) (imagpart x)))))))))
;;
;; We're almost done. The only candidates left for complex numbers that could
;; be the square root of two are the imaginary numbers, but we can rule these
;; out, since all their squares are negative.
;;
(defthm imaginary-squares-are-negative
(implies (and (complex/complex-rationalp x)
(equal (realpart x) 0))
(< (* x x) 0))
:hints (("Goal"
:use (:instance complex-square-definition
(x 0)
(y (imagpart x))))))
;;
;; Simple propositional suffices now to show that the complex numbers weren't
;; good candidates for the square root of two.
;;
(defthm sqrt-2-is-not-complex/complex-rationalp
(implies (complex/complex-rationalp x)
(not (equal (* x x) 2)))
:hints (("Goal"
:use ((:instance complex-squares-real-iff-imaginary)
(:instance imaginary-squares-are-negative)))))
;;
;; And finally, the main result. The square root of two is real but not
;; rational. If we are in ACL2(r), this means that the square root of two is
;; an irrational number. If we are in standard ACL2, this is a contradiction,
;; so we can conclude in a corollary that there cannot be any square root of
;; two.
;;
;; We prove this theorem by cases. If "x" is a number, then it's either
;; rational, irrational, complex, or not a number. But, we already know the
;; square root of two is neither rational nor complex. The case where "x" is a
;; non-numeric objects in the ACL2 universe can be dismissed easily -- none of
;; these can be the square root of two, since their square is zero. This
;; leaves only the irrational case in ACL2(r), or no cases (a contradiction) in
;; standard ACL2.
;;
(defthm irrational-sqrt-2
(implies (equal (* x x) 2)
(and (real/rationalp x)
(not (rationalp x))))
:hints (("Goal" :cases ((rationalp x) (complex/complex-rationalp x)))))
#-non-standard-analysis
(defthm no-sqrt-2
(not (equal (* x x) 2))
:hints (("Goal" :use irrational-sqrt-2)))
|