File:Birthday paradox.svg
From Wikimedia Commons, the free media repository
Birthday_paradox.svg (SVG file, nominally 575 × 291 pixels, file size: 188 KB)
[edit] Summary
| Description |
Vectorial version of Image:050329-birthday1.png |
|---|---|
| Date |
7 March 2008 |
| Source |
Own work |
| Author | |
| Permission (Reusing this image) |
GFDL |
Made with pylab (started with "ipython -pylab"). Here is the code:
def inv_prob(n):
if n == 0:
return 1
if n > 365:
return 0
return inv_prob(n-1)*(1-(n-1.)/365)
def probarray():
arr=[]
for people in range(364):
arr.append(1-inv_prob(people))
return arr
def qrobarray():
arr=[0]
for people in range(399):
arr.append(1-((1-arr[people])*(1-1./365)))
return arr
plot(qrobarray())
plot(probarray())
text(200,.5,'q(n)', color='blue')
text(35,.6,'p(n)', color='green')
[edit] Licensing
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 02:40, 7 March 2008 | 575×291 (188 KB) | Toobaz (talk | contribs) | ({{Information |Description=Vectorial version of Image:050329-birthday1.png |Source=self-made |Date=07 Mar 2008 |Author= Toobaz |Permission= GFDL }} Made with pylab (started with "ipython -pylab). Here is the code: def inv_prob(n): ) |
- Edit this file using an external application (See the setup instructions for more information)
File links
The following page links to this file:
Global file usage
The following other wikis use this file:
- Usage of Birthday paradox.svg on dewiki
- Usage of Birthday paradox.svg on enwiki