#| Copyright (C) 1995 by Matt Kaufmann. All Rights Reserved. This script is hereby placed in the public domain, and therefore unlimited editing and redistribution is permitted. NO WARRANTY Matt Kaufmann PROVIDES ABSOLUTELY NO WARRANTY. THE EVENT SCRIPT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SCRIPT IS WITH YOU. SHOULD THE SCRIPT PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. IN NO EVENT WILL Matt Kaufmann BE LIABLE TO YOU FOR ANY DAMAGES, ANY LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THIS SCRIPT (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES), EVEN IF YOU HAVE ADVISED US OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. |# ; A Simple Nqthm Proof About Coin Tossing ; Matt Kaufmann ; Internal Note 317 ; Computational Logic, Inc. ; June 17, 1995 ; This file contains what amounts to a proof of the following neat fact. ; Suppose 0 <= p <= q (where p and q are natural numbers, q non-zero) and you ; toss a fair coin, starting with p "credits", adding a credit each time you ; toss a head and subtracting a credit each time you toss a tail. Then the ; probability that you first reach q credits before first reaching 0 credits is ; p/q. A hand proof is included below. The idea (explained a bit further in ; that hand proof) is to take the following three properties of a function f(p) ; which is defined to be q times the probability of a "win" for a given p, #| A. f(0) = 0 B. f(q) = q C. f(p) = (1/2)f(p-1) + (1/2)f(p+1) if p is neither 0 nor q. |# ; and then prove f(p) = p from these properties. This Nqthm proof starts by ; introducing these axioms in a convenient form with an Nqthm constrain event, ; concluding with the theorem guaranteeing f(p) = p. ; This file has been successfully processed by Nqthm-1992 in about 4 seconds on ; a Sparc 20. ; Bring in a library of facts about natural numbers. (note-lib "naturals" t) ; Introduce the axioms about a function with the appropriate properties. (constrain fn-intro (rewrite) (and (equal (fn 0) 0) ; f(0)=0 (equal (fn (q)) (q)) ; f(q)=q (numberp (q)) ; q is a natural number (not (equal 0 (q))) ; q is not 0 (numberp (fn x)) ; f(x) is a number ; And finally, Property C from the previous proof. (implies (and (lessp 0 p) (lessp p (q))) (equal (times 2 (fn p)) (plus (fn (sub1 p)) (fn (add1 p)))))) ; Here we direct the prover to observe that the axioms above are consistent ; by having it prove them when (q) is replaced by 1 and fn is replace by a ; function fix (essentially, the identity function). ((q (lambda () 1)) (fn fix))) ; The following function expresses our plan for the proof by induction. (defn my-induction (p) (if (or (zerop p) (equal p 1)) ; Base case t ; Assume no inductive hypotheses in base case. (and (my-induction (sub1 p)) ; One inductive hypothesis (my-induction (sub1 (sub1 p)))))) ; Other inductive hypothesis ; The following lemma captures the heart of the argument. It was actually ; generated by the theorem prover in the course of attempting to prove the ; lemma "main" below at one point during the proof effort, using Pc-Nqthm. (prove-lemma main-inductive-case (rewrite) (implies (and (not (equal p 0)) (numberp p) (not (equal p 1)) (equal (fn (sub1 (sub1 p))) (times (fn 1) (sub1 (sub1 p)))) (equal (fn (sub1 p)) (times (fn 1) (sub1 p))) (not (lessp (q) p))) (equal (equal (fn p) (times (fn 1) p)) t)) ; The theorem follows from the axioms about fn, where we replace p-1 by p, ; just as in the hand proof below. ((use (fn-intro (p (sub1 p)))) (disable fn-intro))) ; And finally, p*f(1)=f(p). (prove-lemma main () (implies (and (numberp p) (leq 0 p) (leq p (q))) (equal (times p (fn 1)) (fn p))) ((induct (my-induction p)))) ; And of course, f(1)=1. (prove-lemma helper (rewrite) (equal (fn 1) 1) ; The following hint says that, just as in the hand proof below, we derive ; this lemma by substituting q for p in the lemma called "main" above. ((use (main (p (q)))))) (prove-lemma final-theorem () (implies (and (numberp p) (leq 0 p) (leq p (q))) (equal (fn p) p)) ; The final theorem is a consequence of main, now that the helper lemma has ; been stored as a rewrite rule. ((use (main)))) #| Hand proof: Theorem: Suppose 0 <= p <= q and you toss a fair coin, starting with p "credits", adding a credit each time you toss a head and subtracting a credit each time you toss a tail. Then the probability that you first reach q credits before first reaching 0 credits is p/q. Proof. Fix q for the remainder of the proof. Now for any p with 0<=p<=q let us write f(p) to denote q times the given probability for p and q. So, our goal is to prove that f(p)=p, since if q times the probability is p, then the probability is p/q. (This works better on paper.) The following properties of f(p) are clear (but see below for an explanation of C): A. f(0) = 0 B. f(q) = q C. f(p) = (1/2)f(p-1) + (1/2)f(p+1) if p is neither 0 nor q. To explain C just a bit: The probability of getting to q credits first, from p, is split into 2 cases: you could flip tails (with probability 1/2) and then have to get to q from p-1, or you could flip heads (also with probability 1/2) and then have to get to q from p. So the probability of "winning" from p is 1/2 times the probability of "winning" from p-1, plus 1/2 times the probability of "winning" from p+1. Then equation C is just the result of multiplying both sides of the preceding sentence by q. The theorem following easily from the following claim (see below): Claim: For all p with 0<=p<=q, f(p) = p*f(1) For, if we believe this Claim, then we can substitute q for p to get f(q) = q*f(1) which implies, by Property B, that q=q*f(1) and hence (dividing both sides by q) f(1) = 1. But when you substitute f(1)=1 into the Claim, then the Claim reduces to f(p) = p, which is the goal we set for ourselves in the very first paragraph of the proof above. To prove the Claim, let us suppose that it fails for some p and then derive a contradiction. (We are really using a form of strong induction.) In that case, fix the smallest such "bad" p. Now, p is not 0, by Property A, because the Claim is true for 0: f(0) = 0*f(1), regardless of the value of f(1), because f(0) = 0 by Property A. So p>0. In fact, p is not 1 either, because clearly the Claim holds for p=1, as we see by substituting 1 for p into the Claim: f(1) = 1*f(1). Therefore p is at least 2, and we may substitute p-1 for p in Property C: f(p-1) = (1/2)f((p-1)-1) + (1/2)f((p-1)+1) i.e. 2*f(p-1) = f(p-2) + f(p) Now p-1 and p-2 are less than p, and p is suppose to be the least "bad" p. That is, we know that the Claim holds for p-1 and p-2, so we may use it to substitute into the equation above: 2*(p-1)*f(1) = (p-2)*f(1) + f(p) which simplifies by algebra to 2p*f(1) - 2*f(1) = p*f(1) - 2*f(1) + f(p) and then to p*f(1) = f(p) This contradicts our choice of p as a counterexample to the Claim! |#