1

As the title says, I would like to prove for $f(x) = a^x$ there is always some constant c such that $f'=cf$. Is calculating the limit the right approach to solve this problem? Also, how to show there is only one solution when $c=1$? (the $e^x$)

  • It depends on the author's approach, but by theory, that is the limit definition of $lna$ that follows as a consequence from as how the natural log is introduced: the area under the curve $y=1/x$ from $x=1$ to $x=a$ – imranfat Feb 02 '16 at 22:24
  • 1
    Be aware of $f(x)=0$, though, which also has the property that $f'=cf$. –  Feb 02 '16 at 22:25
  • There are different ways to pose this question. One is to take as a given that $\lim_{h \to 0} \frac{e^h-1}{h}=1$, then $\lim_{h \to 0} \frac{a^h-1}{h} = \ln(a)$ follows by the chain rule and the property $e^{h \ln(a)}=a^h$. But all of this really hinges on your definition of the exponential function, logarithm, etc. – Ian Feb 02 '16 at 22:26

2 Answers2

0

Assuming $a>0$, you need to use the definition of real exponentiation: $$a^h=e^{h\ln a}=\sum_{n=0}^\infty\frac{(h\ln a)^n}{n!}$$

Then $$\lim_{h\to0}\frac{a^h-1}h=\lim_{h\to 0}\sum_{n=1}^\infty h^{n-1}\frac{(\ln a)^n}{n!}=\ln a$$

ajotatxe
  • 65,084
0

To answer the question in your text rather than in the title, if $f(x) = a^x$, then by definition $f(x) = e^{\ln(a)\cdot x}$ and $f'(x)$ exists for all $x$ by the chain rule and is equal to $\ln(a)\cdot e^x$, so you can take $c = \ln(a)$.

As for your follow-on question, $e^x$ is not the only only solution to $f(x) = f'(x)$. The general solution is $f(x) = de^x$ for some constant $d$. To see this, let $g(x) = f(x)e^{-x}$ and note that: $$ g'(x) = f'(x)e^x - f(x)e^x = 0 $$ so $g(x) = f(x)e^{-x} = \frac{f(x)}{e^x}$ is some constant $d$ implying that $f(x) = de^x$.

Rob Arthan
  • 48,577