短い答え
Probability measures how likely an event is, on a scale from 0 (impossible) to 1 (certain): P(A) = favorable outcomes ÷ total outcomes. For combining two events, use the right rule for how they relate: multiply for "and" with independent events, add and subtract overlap for "or," and divide for "given that" (conditional probability).
重要なポイント
- P(A および B) = P(A) × P(B) は、A と B が独立している場合にのみ機能します。依存イベントには代わりに条件付き確率が必要です。
- P(A または B) = P(A) + P(B) − P(A および B) — 減算により、両方のイベントを満たす結果の二重カウントが回避されます。
- Conditional probability, P(A|B) = P(A and B) ÷ P(B), narrows the "total outcomes" down to just the cases where B already happened.
- The complement rule — P(at least one) = 1 − P(none) — is often the fastest way to solve "at least one" problems that would otherwise need many separate cases added together.
核となる確率ルール
| ルール | 式 | 用途 |
|---|---|---|
| 基本 | P(A) = favorable/total | 単一のイベント |
| 連合 | P(A or B) = P(A)+P(B)−P(A∩B) | どちらかのイベントが発生します |
| ジョイント(独立) | P(A and B) = P(A) × P(B) | 両方が起こる、無関係な出来事 |
| 条件付き | P(A|B) = P(A∩B)/P(B) | ある出来事がすでに起こったことを考えると |
実用的な例: 少なくとも 1 つの 6 をロールします。
公平なサイコロを 4 回出たときに少なくとも 1 つの 6 が出る確率はどれくらいですか?
P(1 つのロールに 6 はありません) = 5/6
P(4 ロールに 6 はありません) = (5/6)⁴ ≈ 0.482
P(少なくとも 1 つの 6) = 1 − 0.482 ≈ 0.518 (51.8%)
Trying to solve this by directly adding up "exactly one six," "exactly two sixes," and so on would take far more work — the complement rule turns a multi-case problem into a single subtraction.
独立したイベントと依存したイベント
Two coin flips are independent — the first flip's result has zero effect on the second. But drawing two cards from a deck without replacement is dependent — if the first card is a heart, there's one fewer heart left for the second draw, which changes its probability. Whenever removing or using up part of the sample space changes the odds for what comes next, the events are dependent, and conditional probability (not simple multiplication) is the right tool.
避けるべきよくある間違い
- Adding P(A) + P(B) for "or" without subtracting the overlap P(A and B) — this double-counts outcomes that satisfy both events.
- 実際には独立していないイベントに対して P(A) × P(B) を乗算します。このショートカットは、一方のイベントが他方のイベントに影響を与えない場合にのみ適用されます。
- Confusing P(A|B) with P(B|A) — these are generally different values, a mix-up behind many real-world misreadings of medical test results and statistics.
- 最終的に確率が 0 から 1 の範囲外になる — 有効な確率は負または 1 より大きくならないため、常に上流でエラーが通知されます。
関連する電卓
- 順列と組み合わせの計算機 — 確率に反映される有利な結果と合計結果を数えます。
- 統計計算機 — analyze real data behind an experimental probability estimate.
- サンプルサイズ計算ツール — 確率を確実に推定するために必要な試行回数を決定します。
- 信頼区間の計算ツール — express an estimated probability as a range instead of a single number.