1

Given an exponential graph image of $f(x)$, how do you calculate $f(x)$?

Valentina
  • 123

2 Answers2

0

If it is exponential then you can use the logarithms to fit a line since $\ln(e^x) = x$.

law-of-fives
  • 1,963
  • Would you mind explaining through the calculation for me please? I know if y = Ae^bx that ln(y) = bx + ln(A) but I don't know how to calculate it from the graph! – Valentina May 01 '17 at 01:36
0

There are native ways to fit the function as noted in this posts. Logarithmic transformations will distort the problem.

Least squares solution for $y=ax^{b}$ after logarithmic transformation

Linearize $y=c +ax^{b}$

Least Square Approximation for Exponential Functions


Suppose you want to use the functional form $y=ae^{bx}$.

From the boundary point $(0,4)$, we know $a=4$. Now solve for $b$ using the second endpoint $(10,24)$: $$ 4 e^{10b} = 24 $$ to find $$ b = \frac{\ln 6}{10} $$

dantopa
  • 10,342