2024-01-29 09:56:47

This commit is contained in:
Isaac Shoebottom 2024-01-29 09:56:47 -04:00
parent 2a3cb44d47
commit 79c56d47d9
2 changed files with 33 additions and 11 deletions

View File

@ -4,16 +4,16 @@
"type": "split",
"children": [
{
"id": "6827f1b31cef30df",
"id": "12142c95ed24c02b",
"type": "tabs",
"children": [
{
"id": "64b233ae6a058454",
"id": "4512014e685326f2",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-29.md",
"mode": "source",
"source": false
}
@ -85,7 +85,7 @@
"state": {
"type": "backlink",
"state": {
"file": "UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-29.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -102,7 +102,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-29.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@ -125,7 +125,7 @@
"state": {
"type": "outline",
"state": {
"file": "UNB/Year 4/Semester 2/CS2333/2024-01-26.md"
"file": "UNB/Year 4/Semester 2/STAT2593/2024-01-29.md"
}
}
},
@ -156,16 +156,17 @@
"table-editor-obsidian:Advanced Tables Toolbar": false
}
},
"active": "64b233ae6a058454",
"active": "4512014e685326f2",
"lastOpenFiles": [
"UNB/Year 4/Semester 2/STAT2593/2024-01-29.md",
"UNB/Year 4/Semester 2/STAT2593/2024-01-26.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-24.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-26.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-26.md",
"UNB/Year 4/Semester 2/STAT2593/2024-01-26.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-22.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-24.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-24.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-22.md",
"UNB/Year 4/Semester 2/STAT2593/2024-01-24.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-22.md",
"UNB/Year 4/Semester 2/CS2333/2024-01-19.md",
"UNB/Year 4/Semester 2/CS3873/2024-01-19.md",
"UNB/Year 4/Semester 2/STAT2593/2024-01-22.md",
@ -190,7 +191,6 @@
"Semester 1/CS3418/Exam Studying.md",
"Semester 2/CS3873",
"Semester 1/CS3418/11-27-2023.md",
"Semester 1/CS3418/11-24-2023.md",
"Semester 1/CS2418",
"Semester 1/CS3418"
]

View File

@ -0,0 +1,22 @@
Lecture Topic: Binomial Distribution
# Requirements of Binomial Experiments
- (n) independent trials
- Possible outcomes: success (S) and failure (F)
- Success probability (p)
## Formula
The pmf of binomial rv $X$ depends on two parameters $n$ and $p$. We denote the pmf by $b(x; n,p)$
$$b(x;n,p) = \{
\begin{pmatrix}
n \\
p \\
\end{pmatrix}
p^x(1-p)^{n-x}
\}$$
$x = 0, 1, 2, ..., n$
If X ~ b(x; n,p), then
1. E(X) = np
2. V(X) = np(1-p)