Confused on Linear Least Square Fits very basic.

  • Context: Undergrad 
  • Thread starter Thread starter bobbo7410
  • Start date Start date
  • Tags Tags
    Confused Linear Square
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
bobbo7410
Messages
36
Reaction score
0
Quite confused. I've read the book/online definitions yet I suppose I may need a simpler explanation.

Lets say I have a table of x y values.

x 1 2 3 4 5
y 6 7 8 9 10

how would I carry out the linear least squares fit of the data to determine the slope and y-intercept?
 
Physics news on Phys.org
As jtbell says, there are a number of equivalent ways to do that. Not necessarily the simplest, but the most direct is this: Let the line be y= mx+ b where "m" is the slope and "b" is the y-intercept. For x= 1, the "calculated value" would be y= m+ h while the true value is 6. The "square error" is [itex](m+ b- 6)^2[/itex]. Similarly, for x= 2 the "calculated value" would be y= 2m+ b while the true value is 7. The "square error" is [itex](2m+b- 7)^2[/itex]. Repeating that for all given values, the "total square error" would be [itex](m+ b- 6)^2+ (2m+ b- 7)^2+ (3m+ b- 8)^2+ (4m+ b- 9)^2+ (5m+ b- 10)^2[/math]. To minimize that, take the partial derivatives with respect to m and b and set them equal to 0.<br /> <br /> Of course, for this particular example, it is obvious that the line y= x+ 5 goes exactly through every point so that is what you would get.[/itex]