Join 60,000+ competitive exam aspirants
As per weighted least square estimation, the estimated value of X (Xest) is represented by (Where Z is measurement vector ,H is the linear relation between Z and X, W is Weighted error matrix)
Xest=(HTWH)−1HTZ
Xest=(HTWH)−1HTWTZ
Xest=(HTWH)−1HTWZ
Xest=(HTWH)−1HTWHZ
Xest=(HTWH)−1HTWZ
Quick Summary: Weighted Least Squares (WLS) is an optimization method used in power system state estimation to minimize the sum of the weighted squares of the residual differences between measured values and estimated values. The objective function is $J(X) = [Z - H(X)]^T W [Z - H(X)]$, where $W$ is the inverse of the measurement covariance matrix, representing the weight assigned to each measurement.
Weighted Least Squares (WLS) is an optimization method used in power system state estimation to minimize the sum of the weighted squares of the residual differences between measured values and estimated values. The objective function is J(X)=[Z−H(X)]TW[Z−H(X)], where W is the inverse of the measurement covariance matrix, representing the weight assigned to each measurement.
J(X)=(Z−HX)TW(Z−HX) — The weighted objective function to be minimized
Xest=(HTWH)−1HTWZ — The optimal state estimation result
To find the optimal estimate Xest, we take the derivative of the objective function J(X) with respect to X and equate it to zero. Solving the resulting normal equations dXdJ=0 yields the solution Xest=(HTWH)−1HTWZ. The weighting matrix W ensures that measurements with lower variance (higher accuracy) contribute more significantly to the final estimate.
WLS reduces the impact of noise by assigning weights proportional to the reciprocal of measurement variance.
The matrix W is typically a diagonal matrix W=diag(1/σi2) for independent measurements.
State estimation is essential in Energy Management Systems (EMS) for real-time monitoring.
Filters measurement noise effectively.
Provides optimal estimation in the presence of Gaussian noise.
Computationally intensive due to matrix inversion of (HTWH).
Sensitive to bad data points if not accompanied by a detection mechanism.
Power System State Estimation (PSSE).
Sensor fusion in navigation and tracking systems.
The term (HTWH)−1 is often referred to as the Gain matrix.
Option B is incorrect because it includes an extra transpose (WT) which does not appear in the derivation. Option D is mathematically inconsistent as it adds an extra H without correct inversion logic.
C is correct — The weighted least square estimator is derived by setting the gradient of the weighted residual sum of squares to zero, resulting in Xest=(HTWH)−1HTWZ.
In competitive exams, remember that for WLS, if all measurements have equal confidence, W becomes the Identity matrix, reducing the formula to the standard Ordinary Least Squares (OLS) estimator: (HTH)−1HTZ.