I've been trying to solve this problem for days without involving a stat program or anything similar (including least squares fitting) but I've been unsuccessful. I attempted to substitute the given points, form three equations but I couldn't solve them. How do I get around this problem? In advance thank you for your help.
Asked
Active
Viewed 579 times
0
-
2This question answers the question without the constant $C$, and gives a reference for the general case. – rogerl Nov 07 '19 at 19:32
-
Do you want the curve equation or do you want how the values are obtained? – NoChance Nov 07 '19 at 20:08
-
1@NoChance, both would be fine but I believe J.G. has answered my question below. – Meghan C Nov 08 '19 at 12:55
1 Answers
2
Define $B:=Ae^{-14k},\,t:=e^{-5k}$ so $B+C=9176,\,Bt^{11}+C=7681,\,Bt^{13}+C=7542$ and $B(1-t^{11})=1495,\,Bt^{11}(1-t^2)=139$. Hence $1495t^{13}-1634t^{11}+139=0$. The only root in $(0,\,1)$ is $t=0.9082$. Now use$$k=-\frac15\ln t,\,\left(\begin{array}{c} B\\ C \end{array}\right)=\left(\begin{array}{cc} 1 & 1\\ t^{11} & 1 \end{array}\right)^{-1}\left(\begin{array}{c} 9176\\ 7681 \end{array}\right),\,A=Bt^{-2.8}.$$

J.G.
- 115,835
-
-
1@NoChance That was a poor choice of name on my part for the variable; I've changed it to $t$. All I really did was change to a more convenient variable for comparing the differences between data. – J.G. Nov 07 '19 at 20:19
-
1
-
Many thanks for your solution, however, I believe the first equation on the second line in incorrect. – Meghan C Nov 07 '19 at 22:24
-
1
-
-
@MeghanC Increasing $x$ reduces $y$, so you'll need $t$ in that range unless $A<0$. – J.G. Nov 08 '19 at 16:54
-