Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Derivative of Exponential and Logarithmic Functions

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Exponential and Logarithmic functions are a class of functions that are used a lot in different areas of sciences. Exponential functions increase very rapidly and logarithmic functions tend to saturate themselves as the input values increase. In the figure below, it can be noticed that as the power of x increases, functions start to grow faster and the graph becomes steeper. Exponential functions come in a similar class of functions.

The figure below represents the graph of a logarithmic and exponential function. 

Derivative of Exponential Function

Let’s start off by looking at the exponential function, 

y = e

For its differentiation, normal power use that is used usually won’t work. So, let’s derive the derivative of this using limits. The derivative of a function using limits is given by, 

f'(x) = \lim{x \to 0} \frac{f(x + h) - f(x)}{(x + h) - x}\\ = \lim{x \to 0} \frac{f(x + h) - f(x)}{h} \\ =  \lim{x \to 0} \frac{e^{x+h} - e^{x}}{h} \\ =  \lim{x \to 0} \frac{e^{x}e^{h} - b^{x}}{h}\\ = e^{x}\lim{x \to 0} \frac{(e^{h} - 1)}{h} \\

Now this last limit \frac{b^{h} -1}{h}   is exactly the definition of above derivative f'(x) at x = 0, i.e f'(0). Therefore, the derivative becomes, 

f'(x) = bxf'(0) = bx

So, in case of natural exponential functions, f(x) = ex

Note: In general exponential cases, for example, y = bx, where b is a real number. The derivative for this kind of function is

\frac{dy}{dx} = b^{x}log_{e}b

Question 1: Differentiate f(x) = 4ex – 5x

Answer: 

The derivation of ex will remain ex, the derivative of 5x will become 5xln(5) as explained above.

Therefore, f'(x) = 4ex – 5xln(x)

Question 2: Differentiate g(x) = \frac{x}{1-e^x}

Answer:

Here, following Quotient Rule, differentiate the function g(x):

g'(x)=\frac{(\frac{dg}{dx}x)(1-e^x)-(\frac{dg}{dx}(1-e^x))(x)}{(1-e^x)^2}\\=\frac{(1)(1-e^x)-(-e^x)(x)}{(1-e^x)^2}\\=\frac{1-e^x+xe^x}{(1-e^x)^2}

Question 3: Find the value of F'(x) at x=0 when f(x) = 7x + 2ex

Answer: 

Differentiating: f'(x) = 7xln(7) + 2ex

at x=0, f'(0) = 70ln(7) + 2e0

= ln(7) + 2

= 3.945

Derivative of Logarithmic Function

Now, let’s look at how the derivatives for the logarithmic function are calculated. Notice the fact that these functions are actually inverses of each other. 

Note: If two functions are inverses of each other then, 

g'(x) = \frac{1}{f'(g (x))}

It is a known fact that natural exponential and natural log are the inverses of each other. We can use the above property to find the derivative for the logarithmic function. 

Let’s say f(x) = ex and g(x) = logex.

g'(x) = \frac{1}{f'(g(x))} = \frac{1}{e^{g(x)}} \\ \hspace{0.85cm} = \frac{1}{e^{log_{e}x}} = \frac{1}{x}      

Let’s look at some examples on derivatives of both of these functions, 

Question 1: Differentiate: y(x) = x5 – exln(x)

Answer: 

Differentiating using chain rule: 

y'(x)= \frac{dy}{dx}x^5-[(\frac{dy}{dx}e^x)(ln(x))+(\frac{dy}{dx}ln(x))(e^x)]\\=5x^4-e^xln(x)-\frac{e^x}{x}

Question 2: Calculate the derivatives for 

(i) e-x              (ii) sin(logx)              (iii) ecos(x)

Answer: 

(i) Let y = e-x, to find the differentiation of this function we need to use chain rule. 

\frac{dy}{dx} = e^{-x}\frac{d(-x)}{dx} \\ \hspace{0.45cm} = e^{-x}(-1) \\ \hspace{0.45cm} = -e^{-x}

(ii) y = sin(logx). It also requires chain rule for differentiation. 

\frac{dy}{dx} = cos(logx)\frac{d(logx)}{dx} \\ \hspace{0.45cm} = cos(logx)\frac{1}{x}

(iii) y = ecos(x) 

\frac{dy}{dx} = e^{cos(x)}\frac{d(cos(x))}{dx} \\ \hspace{0.45cm} = e^{cos(x)}(-sin(x)) \\ \hspace{0.45cm} = -e^{cos(x)}sinx

Question 3: Calculate the derivative f(x) = 3ex + 10x3log(x). 

Answer:

The derivative requires chain rule and the formulas studied above,

f(x) = \frac{df}{dx} = \frac{d(3e^{x} + 10x^{3}logx)}{dx} \\ \hspace{0.7cm} = \frac{d(3^{x})}{dx} + \frac{d(10x^{3}log(x)}{dx} \\ \hspace{0.7cm} = 3^{x} + 10(\frac{d(x^{3})}{dx}logx + \frac{d(logx)}{dx}x^{3} \\ \hspace{0.7cm} = 3^{x} + 10(3x^{2}logx + \frac{x^{3}}{x}) \\ \hspace{0.7cm} = 3^{x} + 10(3x^{2}logx + x^{2}) \\ \hspace{0.7cm} = 3^{x} + 10x^{2}(logx + 1)


My Personal Notes arrow_drop_up
Last Updated : 10 Feb, 2022
Like Article
Save Article
Similar Reads
Related Tutorials