<?xml version="1.0"?>
<paste-with-annotations>
  <paste>
    <number>
      <integer>18743</integer>
    </number>
    <user>
      <string>evanpro</string>
    </user>
    <title>
      <string>birthday problem</string>
    </title>
    <contents>
      <string>;;; probability that any two members of a group of N
;;; will match in a space of M
 
(define (birthday N M)
   (let birthday-count ((product 1)
                        (n 1))
        (if (&gt;= n N)
            (- 1 product)
            (birthday-count (* product (/ (- M n) M)) (+ n 1)))))</string>
    </contents>
    <universal-time>
      <integer>3353423659</integer>
    </universal-time>
    <channel>
      <string>None</string>
    </channel>
    <colorization-mode>
      <string>Scheme</string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <null/>
    </is-unicode>
  </paste>
</paste-with-annotations>