I have an index that is formulated as follows, for party $j$, group $s$, where $w$ indicates weight of party or group as share of population :
$$ \lambda =\sqrt{\sum^J\sum^S w_j w_s(\alpha_j+\beta_{js}-w_j)^2)} $$
There are regressions for each party $j$ predicted by group $s$: $$ \text{party}_j \sim \alpha_j + \beta_{js} \text{group}_s + \epsilon $$
I want to extract the confidence intervals (95%) for this index based on the standard errors for each $\beta$ coefficient. I have seen here that this is the formula to calculated sums of coefficients:
$$ \Delta \text{SE} = \sqrt{\sum{w^2_i \text{SE}^2_i}} $$
My impression is that whichever transformations you apply to the $beta$ coefficient before summing it up, you have to apply to the standard error and then apply this formula. Is this correct?
$$ \text{For} \sum{f(\beta)} \\ \Delta \text{SE} = \sqrt{\sum{w^2_i f(\text{SE})^2_i}} $$
So in the case of my index, the standard errors should be calculated as follows: $$ \text{SE}_\lambda= \sqrt{ \sqrt{ \sum^J{ w_j^2{( \sqrt{ \sum^{S}{ w_s^2(\alpha_j + \text{SE}_{js} - w_j)^2 } } )}^2 } } } $$
Is this th proper way to apply transformations to confidence intervals for the sum of regression coefficients? Thanks.