I'm trying to map a range:
$$0 \le x \le 1$$
non-linearly to another range:
$$0.01 \le y \le 4$$
where $x = 0.5$ must map to $y = 1$. Essentially, I have three known points:
x 0.00 0.50 1.00
y 0.01 1.00 4.00
and $y$ cannot ever be $\lt 0.01$ (I mention this explicitly because I have also toyed with quadratics in an attempt to solve this problem).
My distant high-school maths memories tell me that I need an exponential function to achieve this. To that end, I followed the instructions in $\infty+1$'s YouTube video, Write an Exponential Equation Given 3 Points, and worked from $y = ar^x + c$ to arrive at this very-close solution:
$$ y = \frac{13167}{6700}\cdot\left(\frac{100}{33}\right)^{x}-\frac{131}{67} $$
This solution satisfies $(0,0.01)$ and $(1,4)$, but not $(0.5,1)$. I guess I need to somehow “tighten” the curve such that the $y$ values for $0 \le x \le 0.5$ are lower without affecting point $(1,4)$, but I'm at a loss as to how I might do this. I guess I have chosen the wrong exponential equation to start from.
Should I be starting from another exponential equation, and should I be able to solve this with my reasonably basic maths skills of algebra and simultaneous equations (and not enough understanding to know where to start with terms like regression, monotone, and differentiable as found in answers to similar questions)?