Zzong's Notes

Home

❯

math

❯

product rule

product rule

2026년 8월 29일1 min read

p(x,y)=p(y∣x)p(x)=p(x∣y)p(y)
  • p(x): marginal distribution of the first random variable
  • p(y∣x): conditional distribution of second random variable given first

해석

  • The product rule can be interpreted as the fact that every joint distribution of two random variables can be factorized (or product) of two other distributions.

Related

  • sum rule, joint probability, conditional probability, Bayes theorem

링크된 언급

3
Bayes theorem

베이즈 이론 (Bayes theorem) 은 어떤 이벤트가 발생할 확률을 해당 이벤트와 관련될 법한 사전 지식 (prior) 에 의거해 설명하는 방법이다. 가정: A 와 B 는 서로 다른 이벤트이고, P(B)≠0 Notations P(A| B) 는 B 가 발생했을 때 A 가 발생할 조건부 확률: posterior 다른 말로 하면, B 가 True 일 때, A 의 posterior probab...

posterior predictive distribution

(a) 는 sum rule, (b) 는 product rule 을 활용함 사후 예측 분포의 다른 표현들

sum rule

... hard, in the sense that there is no known polynomial-time algorithm to calculate them exactly. Related product rule, marginal distribution

함께 보면 좋은 글

sum rule

\displaystyle p(\boldsymbol{x})=\begin{cases}\displaystyle\sum {\boldsymbol{y}\in\mathcal{Y}}p(\boldsymbol{x}, \boldsymbol{ y })&\text{if} \ \boldsymbol{y} \ \text{is...

Bayes theorem

베이즈 이론 (Bayes theorem) 은 어떤 이벤트가 발생할 확률을 해당 이벤트와 관련될 법한 사전 지식 (prior) 에 의거해 설명하는 방법이다.

conditional probability

the conditional probability that \mathrm{y}=y given \mathrm{x}=x as P(\mathrm{y}=y\mid\mathrm{x}=x) 반드시 P(\mathrm{x}=x)>0 인 상황에서만 성립이 된다.

marginal distribution

어떤 변수들의 집합에 대한 확률 분포에서, 부분 집합에 대한 확률 분포를 marginal probability distribution 이라고 한다.

joint probability

Tags: law of total probability 응용 Bayes theorem P(X\mid Y)=P(X,Y)/P(Y) marginalization \displaystyle\operatorname{Pr}(W,L)=\mathrm{E}(\operatorname{Pr}(W,L\mid...

posterior predictive distribution

사후 예측 분포 (posterior predictive distribution) 는 관측된 데이터를 조건으로 했을 때 관측될 가능성이 있지만 관측되지 않은 데이터에 대한 분포를 의미한다 p\left(x {new}\mid\mathbf{x}\right)=\int {\Theta}p\left(x...

chain rule (probability)

Related joint entropy, independence (probability), Bayes theorem Statistic Consider an indexed collection of random variables X {1},\ldots,X {n}.

rule of probabilities

chain rule sum rule: p(X)=\sum {Y}p(X,Y) product rule: p(X,Y)=p(Y\mid X)p(X) relation with Bayes theorem \displaystyle p(Y\mid X)=\frac{p(X\mid Y)p(Y)}{p(X)} Evidence 는 다음과 같이...

joint distribution

많은 변수에 대한 확률 분포를 joint probability distribution 이라고 한다.

Laplace approximation

Tags Maximum Likelihood Estimation, Laplace approximation 은 approximate posterior inference 를 위한 방식이다.

  • 해석
  • Related