Join 60,000+ competitive exam aspirants
In least square estimation method, The weight-age of error in measurement vector is
Equal
Not Equal
Depend on measurement
Not easy to define
Equal
Quick Summary: In Ordinary Least Squares (OLS) estimation, the objective is to minimize the sum of the squares of the differences between observed and fitted values. This method implicitly assumes that every measurement in the measurement vector is assigned an equal weight, meaning no individual measurement is prioritized over others.
In Ordinary Least Squares (OLS) estimation, the objective is to minimize the sum of the squares of the differences between observed and fitted values. This method implicitly assumes that every measurement in the measurement vector is assigned an equal weight, meaning no individual measurement is prioritized over others.
J(x)=∑i=1m[zi−hi(x)]2 — Standard OLS cost function objective
W=I — Identity matrix used as weight matrix in OLS
The method functions by minimizing the cost function J=∑i=1n(zi−hi(x))2. Since each residual is squared and added without a specific scaling coefficient, the contribution of every measurement to the final estimation is treated with equal importance. If measurements possess different levels of uncertainty, a Weighted Least Squares (WLS) approach is employed instead, using a diagonal weight matrix W to assign importance.
Ordinary Least Squares assumes homoscedasticity (constant variance) across all measurement samples.
The method minimizes the Euclidean norm of the residual vector.
If errors are Gaussian and have equal variance, OLS provides the Best Linear Unbiased Estimator (BLUE).
To handle measurements with varying reliability, one must shift from OLS to Weighted Least Squares (WLS).
Computationally simple and efficient
No prior knowledge of noise statistics required
Sensitive to outliers as errors are squared
Does not account for differences in measurement precision
Static State Estimation in Power Systems
Linear Regression modeling
In power system state estimation, Weighted Least Squares (WLS) is preferred over OLS because real-world sensors (PMUs, SCADA) have varying accuracy.
Option B refers to Weighted Least Squares (WLS), which is a generalization, not the default assumption of basic Least Squares.
A is correct — The ordinary least square estimation method mathematically treats the weight of each error in the measurement vector as equal.
Always distinguish between Ordinary Least Squares (OLS) and Weighted Least Squares (WLS); OLS is a specific case of WLS where the weight matrix is the identity matrix.