I'm a beginner student in Bayesian data analysis and I'm trying to understand how the posterior distribution of the Beta distribution is derived. In many of the references I've been reading an example of the posterior of the Beta distribution is presented in the following form:
$$p(\theta\mid\alpha, \beta,y) \propto p(y\mid\alpha,\beta,\theta)\;p(\theta\mid\alpha,\beta),$$
where $y \sim \operatorname{Bin}(n, \theta)$ and $\theta \sim Beta(\alpha, \beta)$. When this form is presented in the tutorials it is briefly mentioned that the normalizing denominator can be "forgotten" and I can't recall a presentation of this posterior function where the normalizing factor is included in the equation.
I tried to figure this out myself:
$$p(\theta\mid\alpha, \beta,y) = \frac{p(\theta, \alpha, \beta, y)}{p(\alpha, \beta, y)}$$
$$p(y\mid\alpha, \beta, \theta) = \frac{p(\theta, \alpha, \beta, y)}{p(\alpha, \beta, \theta)}$$
$$p(\theta\mid\alpha, \beta,y)\;p(\alpha, \beta, y) = p(y\mid\alpha, \beta, \theta)\;p(\alpha, \beta, \theta)$$
$$p(\theta\mid\alpha, \beta,y) = \frac{p(y\mid\alpha, \beta, \theta)\;p(\alpha, \beta, \theta)}{p(\alpha, \beta, y)}= \frac{p(y\mid\alpha, \beta, \theta)\;p(\theta\mid\alpha,\beta)\;p(\alpha,\beta)}{p(y\mid\alpha,\beta)\;p(\alpha,\beta)}$$
$$=\frac{p(y\mid\alpha, \beta, \theta)\;p(\theta\mid\alpha,\beta)}{p(y\mid\alpha,\beta)}.$$
So I get pretty close to the form given in references and this makes me think that does:
$$p(y\mid\alpha, \beta)=c\in\mathbb{R},$$
that is, is the normalizing factor a constant?
Sorry if my question is unclear. This is pretty new stuff for me and I get confused easily :)