Can I Use a Natural Log Function for Least Square Fitting?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 2K views
JoJoQuinoa
Messages
17
Reaction score
0
Hello,

I'm trying to follow Wolfram to do a least square fitting. There are multiple summations in the two equations to find the coefficients. Are the i's the same in this case?

Thanks!
 
Mathematics news on Phys.org
JoJoQuinoa said:
Hello,

I'm trying to follow Wolfram to do a least square fitting. There are multiple summations in the two equations to find the coefficients. Are the i's the same in this case?

Thanks!
In both equations, i is the index of all of the summations. These summations run for i = 1, 2, 3, and so on, up to n. Here n is the number of points you're fitting to the log curve.
 
  • Like
Likes   Reactions: JoJoQuinoa
@Mark44

Sorry I just looked at it and got confused again. So for coefficient b, can I write the numerator as
##\Sigma_{i=1}^n (n*y_i*ln(x_i)-y_i*ln(x_i))##.
 
Last edited:
JoJoQuinoa said:
@Mark44

Sorry I just looked at it and got confused again. So for coefficient b, can I write the numerator as
##\Sigma_{i=1}^n (n*y_i*ln(x_i)-y_i*ln(x_i))##.
No. The formula shown in the Wolfram page for the numerator of b is
$$n\sum_{i =1}(y_i\ln(x_i)) - (\sum_{i = 1}y_i)(\sum_{i = 1}\ln(x_i)$$
You can't simplify things as you have done. You need to calculate all three summations. Once you have these numbers, multiply the first summation by n, multiply the second and third summations together, and then subtract as shown.