Note: I have already seen this Wikipedia article, and similar questions on this website: 1.
Given two dependent multivariate Gaussian random variables, is the sum also a multivariate Gaussian?
$X \sim N(b_X,\Sigma_X), Y \sim N(b_Y,\Sigma_Y)$
$X = A_X w_1 + b_X$
$Y = A_Y w_2 + b_Y$
where $A_X$ and $A_Y$ have dimensions $d\times n_1$ and $d \times n_2$ respectively, and $A_XA_X^T=\Sigma_X$, $A_YA_Y^T=\Sigma_Y$. Vectors $w_1$ and $w_2$ have dimensions $n_1$ and $n_2$ respectively, and their entries are i.i.d. standard Gaussian RVs.
Now,
$Z = X+Y $
$Z = A_Xw_1 + A_Yw_2 + b_X + b_Y $
$Z = [A_X \ A_Y][w_1\ w_2]^T + (b_X+b_Y) $
$Z = A_Zw_3+b_Z$
So, $Z$ is a multivariate Gaussian with mean $b_Z$ and covariance matrix $A_ZA_Z^T$.
I don't think this uses independence of $X$ and $Y$ anywhere. Is it correct?
Edit: Based on the comments by whuber and Dilip Sarwate:
I have understood that $X+Y$ won't always be a multivariate Gaussian. In particular, this might happen when all entries of $[w_1\ w_2]^T$ are not independent.
If it is ensured that all entries of $[w_1\ w_2]^T$ are pairwise independent, does the claim hold? And no restrictions on $b_X$ and $b_Y$ are needed then?