Given that there are 20 data points. 2 of these twenty data points have a less reliable y value such that it is to be weighted one third in these 2 point in comparison to the weights of the other 18 points.
Method 1:
w1 = w2 = 1/3
w3 = w4 = .... = w20 = 1
Method 2:
w1' = w2' = 1
w3' = w4' = .... = w20' = 3
Diagonal elements of matrix W will be given by w1,w2...w20. Diagonoal elements of matrix W
will be given by w1',w2',....,w20'. Therefore, on comparing the two matrices, we get
W'=3W
Normal equation for second case is:
(W'A)TW'Ax = (W'A)TW'y
On plugging the expression for W' in terms of W, we get
(3WA)T(3W)Ax = (3WA)T(3W)y
9(WA)T(W)Ax = 9(WA)T(W)y
(WA)T(W)Ax = (WA)T(W)y
This is the normal equation for first method. Therefore, we can see that the final result for both the methods is the same.
Suppose 2 out of 20 data points in a weighted least-squares problem have a y-measurement that is less reliable than the others, and they are to be weighted one third as much as the other 18 point...