Estoy tratando de comprender el Bayesiano AB proceso de pruebas más a fondo. Si tengo dos pruebas de forma tal que las posteriores son: $$x\sim Beta(\alpha_1, \beta_1)$$ $$y\sim Beta(\alpha_2, \beta_2)$$
Where $x$ and $s$ are posterior distributions. Then the joint pdf is of the form:
$f(x,y) = \frac{\gamma(\alpha_1+\beta_1)}{\gamma(\alpha_1)\gamma(\beta_1)}x^{\alpha_1-1}(1-x)^{\beta_1-1}\frac{\gamma(\alpha_2+\beta_2)}{\gamma(\alpha_2)\gamma(\beta_2)}y^{\alpha_2-1}(1-y)^{\beta_2-1}\quad 0\leq x \leq 1,\quad 0\leq y \leq 1$
I want to know $P(x>y)$, how do u solve the equation
$$ P(x>y) = \int_{0}^{1}\int_{y}^{1}\frac{\gamma(\alpha_1+\beta_1)}{\gamma(\alpha_1)\gamma(\beta_1)}x^{\alpha_1-1}(1-x)^{\beta_1-1}\frac{\gamma(\alpha_2+\beta_2)}{\gamma(\alpha_2)\gamma(\beta_2)}y^{\alpha_2-1}(1-y)^{\beta_2-1}dxdy$$
in R? I have the joint function coded like so
joint_dist <- function(x, y, aX, bX, aY, bY) {
(gamma(aX + bX)/gamma(aX)*gamma(bX)*x^(aX - 1)*(1-x)^(bX-1))*(gamma(aY +
bY)/gamma(aY)*gamma(bY)*y^(aY-1)*(1-y)^(bY-1))
}
How do I use the integrate function to integrate from y to 1 and then 0 to 1? Also I'm aware of Evan Miller's summation derivation, but I'm under the impression that he uses a $Beta(1,1)$ antes para el control y la variación. Me gustaría ser capaz de elegir una diferente previo para cada uno. Tal vez un uniformative antes de la variación, pero más informado previo para el control. Tal vez estoy equivocado aquí.