InterviewSolution
Saved Bookmarks
| 1. |
Write down the equation for method of least square with the Normal equations. |
Answer»
na + bΣx = Σy; aΣx + bΣx2 = Σxy
y = a + bx + cx2 : Normal equations are: na + bΣx + cΣx2 = Σy; aΣx + bΣx2 + cΣ = Σxy ; aΣx2 + bΣx3 + cΣx4 = Σx2y. |
|