Join 60,000+ competitive exam aspirants
Which of the following method is generally adapted for curve fitting
Weighted least square
Extrapolation least square
Least square
None of above
Weighted least square
Quick Summary: The Method of Least Squares is a standard mathematical approach in regression analysis to approximate the solution of overdetermined systems by minimizing the sum of the squares of the residuals (the differences between the observed values and the values provided by the model). It is the most commonly adapted technique for curve fitting because it provides a closed-form solution for linear regression models.
The Method of Least Squares is a standard mathematical approach in regression analysis to approximate the solution of overdetermined systems by minimizing the sum of the squares of the residuals (the differences between the observed values and the values provided by the model). It is the most commonly adapted technique for curve fitting because it provides a closed-form solution for linear regression models.
S=โi=1nโ(yiโโ(mxiโ+c))2 โ Objective function for simple linear regression
โmโSโ=0,โcโSโ=0 โ Normal equations for parameter estimation
Given a set of data points (xiโ,yiโ), the method aims to find a function f(x) that minimizes the objective function S=โi=1nโ(yiโโf(xiโ))2. By taking partial derivatives of S with respect to the parameters of the model (like slope m and intercept c) and setting them to zero, we obtain a set of 'normal equations' that can be solved to find the best-fit parameters.
Minimizes the sum of the squares of vertical deviations.
Efficient for linear and polynomial models.
Highly sensitive to outliers in the data set.
Provides a unique 'best fit' solution under Gaussian error distribution.
Mathematically simple and computationally efficient.
Provides statistically optimal estimates under normal error assumptions.
High sensitivity to outliers.
Assumes error is normally distributed (Gaussian).
Load forecasting in Power Systems.
Trend analysis in financial modeling.
Sensor data calibration.
Weighted least squares is a variation used when errors have non-constant variance (heteroscedasticity).
Option B is technically incorrect as 'Extrapolation least square' is not a standard terminology for curve fitting.
C is correct โ The method of least squares is the most widely adopted mathematical technique for fitting a curve to a given set of data points by minimizing the error squared.
In Power System load forecasting, remember that the least squares method is frequently used to identify the trend component of long-term load growth patterns.