You can apply the formulas in chapter 8 for sums (combining categories) for an arbitrary "linear combination" or "weighted sum." The compliment is just the total population - the "other" category. A weighted sum is just a sum with coefficients or "multipliers" such as 1.0 *a +0.3*b - 2*c, etc.
The MOE of a sum is the square root of the sum of the individual MOEs squared. The estimate of the weighted sum is given by the equation above. The MOE of 3*(a) is just 3*MOE.
In R if you have a vector of estimates, a vector of MOEs and a corresponding vector of weights then
weighted.estimate.MOE<-function(est,moe,weights) c(est=sum(est*weights),moe=sqrt(sum((moe*weights)^2))
Note that the universe for Poverty measures is the population for which poverty is determined NOT the total population.
Dave