Is there a formula to calculate the Standard deviation biased on the sum or subtraction of others data sets ?
Example:
Dataset1 (5 elements to count): values: 5,10,15,20,25 mean: 15 Sum of Squared mean: 275 (5^2+10^2+...)/5 Population variance: 50 Population Standard deviation: 7,071067812 Population Max STD 22,07106781 Population Min STD 7,928932188
Dataset2 (5 elements to count): values: 2,4,11,7,16 mean: 8 Sum of Squared mean: 89,2 (2^2+4^2+...)/5 Population variance: 25,2 Population Standard deviation: 5,019960159 Population Max STD 13,01996016 Population Min STD 2,980039841
Dataset3 (5 elements to count):
The elements are a sum of the previous dataset
values: 7,14,26,27,41
mean: 23 (<-- Ok, sum of the previous means)
Sum of Squared mean: 666,2
Population variance: 137,2
Population Standard deviation: 11,71324037
Population Max STD 34,71324037
Population Min STD 11,28675963
The mean of Data3 is easily computed as Mean of Data1 + Mean of data2
But,...how to I calculate the their values?
For example, knowing that the Squared Sum can be used to calculate the variance. Is there a way to calculate directly the Squared Sum of Data3 using a formula biased on the Data1 and Data2?
If not, is there a way to calculate variance of Data3, without using covariance ? (This is because, covariance will assume I´ll have to perform another calculation of sums). I was thinking ins a formula more directly, instead of calculating each element all over again.