I need to create a function with the following properties: $$f(1)=1$$ $$f(65)=75$$ $$f(100)=100$$
Additionally, the function needs to grow logarithmically. So that gives three equations: $$A \cdot \ln(B \cdot 1 + C) = 1$$ $$A \cdot \ln(B \cdot 65 + C) = 75$$ $$A \cdot \ln(B \cdot 100 + C) = 100$$
I am having trouble with using substitution to solve this. Barring there is no analytic way to solve this system, how would I use a numerical approximation for $A, B$ and $C$?
Hint: Try taking the exp of both sides of each equation. For instance taking exp of both sides of $A \cdot \ln(B \cdot 1 + C) = 1$ gives $e^{A \cdot \ln(B+ C)}=e.$ That means $e^{\ln(B + C)^A}=e.$ So, $$(B + C)^A=e.$$