-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSemesterProject4.html
115 lines (94 loc) · 3.73 KB
/
SemesterProject4.html
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
<html>
<head>
<title>Semester Project 4</title>
<link href="SemesterProjectCSS.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="container_24 clearfix">
<div class="article grid_8">
<ul class="navigation">
<li class="links"><a href="SemesterProject1.html">Home</a></li>
<li class="links"><a href="SemesterProject2.html">Probability Rules</a></li>
</ul>
</div>
<div class="article grid_8 pageTitle">
<p class="pageTitle">AP Stats: Probability</p>
</div>
<div class="article grid_8">
<ul class="navigation">
<li class="links"><a href="SemesterProject3.html">Counting Calculator</a></li>
<li class="links"><a href="SemesterProject4.html">Fun Facts</a></li>
</ul>
</div>
</div>
<br />
<div class="container_24 clearfix">
<div class="article grid_6 birthdayProb">
<p class="birthdayProb">For a room with 10 people in it, there is an 11.69% chance that at least two people have the same birthday.</p>
</div>
<div class="article grid_6 birthdayProb">
<p class="birthdayProb">For a room with 25 people in it, there is a 56.87% chance that at least two people have the same birthday.</p>
</div>
<div class="article grid_6 birthdayProb">
<p class="birthdayProb">For a room with 50 people in it, there is a 97% chance that at least two people have the same birthday.</p>
</div>
<div class="article grid_6 birthdayProb">
<p class="birthdayProb">For a room with 100 people in it, there is a 99.99999% chance that at least two people have the same birthday.</p>
</div> <!--make line height half of what you make div height-->
</div>
<br />
<div class="container_24 clearfix">
<div class="grid_11 article listArticle diceProbabilities">
<p class="underline"><b>Dice Probabilities (not to be used for gambling or anything...)</b></p>
<ul class="diceProbabilities">
<li>When rolling two dice, the probability for a sum of 1 is 0.</li>
<li>Sum of 2 ---> 1/36</li>
<li>Sum of 3 ---> 1/18</li>
<li>Sum of 4 ---> 1/12</li>
<li>Sum of 5 ---> 1/9</li>
<li>Sum of 6 ---> 5/36</li>
<li>Sum of 7 ---> 1/6</li>
<li>Sum of 8 ---> 5/36</li>
<li>Sum of 9 ---> 1/9</li>
<li>Sum of 10 ---> 1/12</li>
<li>Sum of 11 ---> 1/18</li>
<li>Sum of 12 ---> 1/36</li>
</ul>
</div>
<div class="grid_13 article listArticle pokerProbabilities">
<p class="underline"><b>Five Card Poker Probabilities (according to Wikipedia)</b></p>
<ul class="pokerProbabilities">
<li>Nothing ---> 50.1%</li>
<li>Pair ---> 42.3%</li>
<li>Two Pairs ---> 4.75%</li>
<li>Three of a kind ---> 2.11%</li>
<li>Straight ---> .393%</li>
<li>Flush ---> .1965%</li>
<li>Full House ---> .1441%</li>
<li>Four of a kind ---> .0256%</li>
<li>Straight Flush ---> .00139%</li>
<li>Royal Flush ---> .000154%</li>
</ul>
</div>
</div>
<br />
<div class="container_24 clearfix">
<div class="grid_24 article terms montyHallTitle">
<p><b>Monty Hall Problem</b> - refresh to reset game</p>
</div>
</div>
<br />
<div class="container_24 clearfix">
<div class="grid_8 article door door1">
<p class="pDoor1 pDoor">Door 1</p>
</div>
<div class="grid_8 article door door2">
<p class="pDoor2 pDoor">Door 2</p>
</div>
<div class="grid_8 article door door3">
<p class="pDoor3 pDoor">Door 3</p>
</div>
</div>
<script src="SemesterProjectJS1.js"></script>
</body>
<html>