You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**PMF requirement**: A probability mass function must satisfy ∑ p(xᵢ) = 1 and p(xᵢ) ≥ 0.
5
-
-**Normalization by a constant**: If probabilities are given up to a constant, you determine that constant by enforcing the sum-to-1 constraint.
6
-
- If the form is p(xᵢ) = K · wᵢ with known nonnegative weights wᵢ, then
7
-
-∑ p(xᵢ) = K · ∑ wᵢ = 1 ⇒ **K = 1 / ∑ wᵢ**.
8
-
- If the given expressions involve K in a more general way (e.g., both K and K² terms), still enforce ∑ p(xᵢ) = 1 and solve the resulting equation for K. Choose the solution that makes all probabilities nonnegative.
4
+
-**PMF requirement**: A probability mass function must satisfy $\sum_i p(x_i) = 1$ and $p(x_i) \ge 0$.
5
+
-**Normalization by a constant**: If probabilities are given up to a constant, determine that constant by enforcing the sum-to-1 constraint.
6
+
- If the form is $p(x_i) = K\,w_i$ with known nonnegative weights $w_i$, then
7
+
-$\sum_i p(x_i) = K \sum_i w_i = 1 \Rightarrow$ $\displaystyle K = \frac{1}{\sum_i w_i}$.
8
+
- If the given expressions involve $K$ in a more general way (e.g., both $K$ and $K^2$ terms), still enforce $\sum_i p(x_i) = 1$ and solve the resulting equation for $K$. Choose the solution that makes all probabilities nonnegative.
9
9
10
10
### Worked example (this question)
11
11
Suppose the PMF entries are expressed in terms of K such that, when summed, the K-terms group as follows:
@@ -23,19 +23,28 @@ One concrete way to realize this is via the following table of outcomes and prob
23
23
| x₄ | 3K + 7K² |
24
24
| x₅ | K |
25
25
26
-
These add up to 9K + 10K² as required.
26
+
These add up to $9K + 10K^2$ as required.
27
27
28
28
Enforce the PMF constraint:
29
29
30
-
- 9K + 10K² = 1 ⇒ 10K² + 9K − 1 = 0
30
+
$$
31
+
9K + 10K^2 = 1 \;\Rightarrow\; 10K^2 + 9K - 1 = 0
32
+
$$
31
33
32
34
Quadratic formula reminder:
33
35
34
-
- For aK² + bK + c = 0, the solutions are K = [−b ± √(b² − 4ac)] / (2a).
36
+
$$
37
+
\text{For } aK^2 + bK + c = 0,\quad K = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}.
0 commit comments