0

I know the statistics of several subgroups.

For example,

  1. Mean, variance, standard deviation, and number of group A
  2. Mean, variance, standard deviation, and number of group B

Group C = Group A + Group B

With this information, can you find the mean, variance, standard deviation, and number of group C?

Assuming that the values of each group are unknown

kjetil b halvorsen
  • 63,378
  • 26
  • 142
  • 467
JHoon
  • 3
  • 1

1 Answers1

0

Is C the disjoint union of A and B? If so, then

count(C) = count(A) + count(B) sum(C) = sum(A) + sum(B) sum(c^2 | c in C) = sum(a^2 | a in A) + sum(b^2 | b in B)

From these, you can work out mean, variance, and standard deviation.

Alternatively, are you wanting to estimate the statistics of a population C, based on samples of subpopulations A and B? That is more complicated, but searching for "Capture Re-capture" will give you a head start.

chrishmorris
  • 820
  • 5
  • 5