Compare commits

..

10 Commits

Author SHA1 Message Date
Peter Norvig
952675ffc7 Add files via upload 2023-07-03 13:30:08 -07:00
Peter Norvig
802de5d6e7 Add files via upload 2023-06-27 00:02:26 -07:00
Peter Norvig
4e1187e95e Add files via upload 2023-06-22 13:48:57 -07:00
Peter Norvig
7414944e04 Add files via upload 2023-06-11 16:02:05 -07:00
Peter Norvig
af09514a6e Update Probability.ipynb
URL encoding
2023-06-09 12:29:07 -07:00
Peter Norvig
b703a7c38a Add files via upload 2023-05-16 16:01:07 -07:00
Peter Norvig
2807ac61c1 Add files via upload 2023-05-16 11:26:38 -07:00
Peter Norvig
f0ee69001b Update Diamonds.ipynb 2023-05-16 09:29:04 -07:00
Peter Norvig
ea48ec486b Update Diamonds.ipynb 2023-05-16 09:28:00 -07:00
Peter Norvig
9d0abf8593 Update Diamonds.ipynb 2023-05-16 09:25:05 -07:00
5 changed files with 2536 additions and 1049 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -26,16 +26,16 @@
"Laplace nailed it. To untangle a probability problem, all you have to do is define exactly what the cases are, and careful count the favorable and total cases. Let's be clear on our vocabulary words:\n",
"\n",
"\n",
"- **[Trial](https://en.wikipedia.org/wiki/Experiment_(probability_theory%29):**\n",
"- **[Trial](https://en.wikipedia.org/wiki/Experiment_%28probability_theory%29):**\n",
" A single occurrence with an outcome that is uncertain until we observe it. \n",
" <br>*For example, rolling a single die.*\n",
"- **[Outcome](https://en.wikipedia.org/wiki/Outcome_(probability%29):**\n",
"- **[Outcome](https://en.wikipedia.org/wiki/Outcome_%28probability%29):**\n",
" A possible result of a trial; one particular state of the world. What Laplace calls a **case.**\n",
" <br>*For example:* `4`.\n",
"- **[Sample Space](https://en.wikipedia.org/wiki/Sample_space):**\n",
" The set of all possible outcomes for the trial. \n",
" <br>*For example,* `{1, 2, 3, 4, 5, 6}`.\n",
"- **[Event](https://en.wikipedia.org/wiki/Event_(probability_theory%29):**\n",
"- **[Event](https://en.wikipedia.org/wiki/Event_%28probability_theory%29):**\n",
" A subset of the sample space, a set of outcomes that together have some property we are interested in.\n",
" <br>*For example, the event \"even die roll\" is the set of outcomes* `{2, 4, 6}`. \n",
"- **[Probability](https://en.wikipedia.org/wiki/Probability_theory):**\n",

File diff suppressed because one or more lines are too long