This may seem like basic math, but I'm trying to determine the relationship between the following sets of numbers to understand how they scale. I would like to write an equation to output y when given x, as follows:
when x = 1366, y = 4.67
when x = 1700, y = 5.0
when x = 2106.45, y = 5.33
I would like an equation that generates the y above when given x, in the context of the relationship between these numbers. I'm stumped.
--
I explored logarithmic functions but wasn't able to come up with anything, and the only constant I was able to solve for was 1.16237188872621, which appears to be the factor by which the ratio between x and y here increments by... e.g.
1366 / 4.67 = 292.5053533191
1700 / 5.0 = 340
2106.45 / 5.33 = 395.2063789869
292.5053533191 * 1.16237188872621 = 340
340 * 1.16237188872621 = 395.2063789869
...and so on. Thanks for any help with this!
FindFit[{{1366,4.67},{1700,5.0},{2106.45,5.33}}, a Log[Abs[b] x],{a,b},x]For more information, have a look here: https://reference.wolfram.com/language/ref/FindFit.html – Maximilian Janisch Jan 02 '20 at 17:08