I'm fitting some data with a pdf that is the mixture of two gaussians with the same mean (this is, the sum of the density functions). The weight of each gaussian after the fit is $w_{\rm core}$ and $w_{\rm tail}$,
$$ f_{\rm Global} ( \mu, \sigma_{\rm core}, \sigma_{\rm tail} ) = w_{\rm core} N(\mu, \sigma_{\rm core}) + w_{\rm tail} N(\mu, \sigma_{\rm tail}) $$
, where $N(\mu, \sigma)$ is the normalized normal distribution
Is there an analytical expression to compute the variance of the global pdf (as a function of $w_{\rm core}$, $w_{\rm tail}$, $\sigma_{\rm core}$ and $\sigma_{\rm tail}$)?
Answer
$$ \sigma_{\rm Global}^2 = w_{\rm core} \sigma_{\rm core}^2 + w_{\rm tail} \sigma_{\rm tail}^2 $$
This is derived in this post for the general case $\mu_{\rm core} \neq \mu_{\rm tail}$. I'm quoting it in case somebody searches directly for the specific case (like me) and does not find the other answer.