For a game I'm making, I'm trying to create a logarithmic equation between starting points I know. I've done a lot of research, but haven't found anything too helpful. The points are: ( 0, .9, 1) ( 25, 1, 1) (100, 2, 1) ( 0, .8, 2) ( 25, 1, 2) (100, 4, 2) ( 0, .7, 3) ( 25, 1, 3) (100, 6, 3) ( 0, .6, 4) ( 25, 1, 4) (100, 8, 4) ( 0, .5, 5) ( 25, 1, 5) (100, 10, 5)
where 0 <= x <= 100, .5 <= y <= 10, 1 <= z <= 5
If the inclusion of z is too difficult, I could write a separate equation for each value of z, but knowing how to write the equation (with exact coefficients) passing through all 3 of the values for each value of z is most important to me.
To clarify, as long as I know how to create a logarithmic equation in any format for, for example, ( 0, .9) ( 25, 1) (100, 2) my question will have been answered.