How do I make exponential equation with points?
Here are my points:
x = 0, y = 0
x = 1, y = 4.75000
x = 2, y = 9.26250
x = 3, y = 13.54937
x = 4, y = 17.62191
this is same as
x = 0, y = 0
x = 1, y = (0 + 5) * 0.95
x = 2, y = ((5 * 0.95) + 5) * 0.95
x = 3, y = (((5 * 0.95) + 5) * 0.95 + 5)) * 0.95
x = 4, y = ((((5 * 0.95) + 5) * 0.95 + 5)) * 0.95 + 5) ) 0.95
as x value increase by 1, y value is added by 5 and multiplied by 0.95 i tried to make an equation for this but i couldn't
also i tried to use natural exponential but the initial value is 0 so it didn't work
please help me
The recurrence is
$$y_{n+1}=0.95(y_n+5)$$ that you can rewrite as
$$y_{n+1}-95=0.95\,(y_n-95).$$
Then by induction,
$$y_n-95=0.95^n(y_0-95)=-95\cdot0.95^n$$ and
$$\color{green}{y_n=95(1-0.95^n)}.$$