Ryerson Crest Ryerson Header

MTH 207 Lab Lesson 11

Exponential Functions


Up to Main Lab Page Next Lesson - Finding Roots Previous Lesson - Secants, Tangents and Derivatives

Exponential Functions

Exponential functions are those of the form f(x) = ax.
Exponential functions are always increasing (for a > 0) and concave up.
> plot(2^x, x=-2..2);
> plot(2^x, x=-5..5);
> plot(2^x, x=-10..10);

  1. Plot the following on the same graph.
    1. 2x and 3x between -2 and 2.
    2. 2x and 22x between -2 and 2.
    3. 2x and 2x+1 between -2 and 2.
    4. 2x and 3*2x between -2 and 2.
    5. 2x and x*2x between -2 and 2.

Let f(x) = ax and consider f(x+h)/f(x) = ax+h/ax = ah. Thus the ratio of a exponential functions at equal distance are equal. That is, for fixed h f(x+h)/f(x) is the same regardless of h. Often data is presented in the form of points, this gives us a useful way of checking whether a set of data is related by an exponential function.

Consider the following table which gives the worlds population in millions at 50 year intervals from 1750 to 1950:
Year17501800185019001950
Population700900120016002200
We suspect that this relation is an exponential one. We can test this assertion by considering the ratio of terms.
> L := [ 700, 900, 1200, 1600, 2200 ];
> evalf(L[i]/L[i+1] $ i = 1..4);

.7777777778, .7500000000, .7500000000, .7272727273
While this is not perfect, it does tend to indicate an exponential relation. Since h is 50 in this case we might geuss that with t mearured in years
f(t) = 700 2.4344028242(t - 1750)/50
(2-.4344028242 = 0.74)
> f := t -> 700 * 2^(.4344028242 * (t - 1750)/50);
> f(1800);
> f(1850);
> f(1900);
> f(1950);
Use this approximation to estimate the population in 2000.
In fact this estimate is somewhat low.

  1. Use the method above to check if the following data for the population of the United States, in millions, has an exponential form. If it does try to guess what this function might be and use it to estimate the population in 2000.
    Year1900191019201930194019501960197019801990
    Population7692106123131150179203227250

The Exponential Function

While an exponential function has the form f(x) = ax
The exponential function is the function f(x) = ex.
Where e = 2.718281828459...
Maple represents the exponential function by exp(x).
> plot(exp(x), x=-3..3);
> evalf(exp(1));

  1. Plot the following graphs.
    1. exp(-x)
    2. exp(x) + exp(-x)
    3. exp(x^2)
    4. exp(-x^2)

The exponential function has the property that it is its own derivative, i.e.
D(exp)(x) = exp(x).

The exponetial function is the underlying function in many applications.

This is particularly useful in the context of differential equations of the form
dy/dx = ky.
y = A*exp(kx) satisfies this equation for any constant value of A. (See section 6.5 of Stewart.)

Consider the graph of exp(-x^2):
> plot(exp(-x^2), x=-3..3);

This is the graph of the normal distribution in probability, with mean 0 and standard deviation 1.
In general exp(-((x - m)/s)^2) is the graph of the normal distribution with mean m and standard deviation s.

  1. Plot the following normal distributions on the same graph as exp(-x^2).
    1. mean 0, s.d. 2
    2. mean 0, s.d. 3
    3. mean 1, s.d. 2
    4. mean -1, s.d. 3

Over the complex plane the exponential function is related to the trigonometric functions:
exp(I x) = cos(x) + I sin(x)
Substituting x and -x and solving gives
cos(x) = (exp(I x) + exp(-I x))/(2 I)
sin(x) = (exp(I x) - exp(-I x))/2.

Over the reals a similar expression relates the exponential function to the hyperbolic sine and hyperbolic cosine functions, which are defined by
cosh(x) = (exp(x) + exp(-x))/2
sinh(x) = (exp(x) - exp(-x))/2

  1. Plot exp(x), exp(-x) and (exp(x) + exp(-x))/2 on the same graph.
  2. Plot exp(x), exp(-x) and (exp(x) - exp(-x))/2 on the same graph.

Logarithms

The logarithm function is the inverse of the exponential function. In particular the natural logarithm ln(x) is the inverse of the exponential function.
> exp(ln(x));
> plot(ln(x), x =-1..20);

  1. Plot exp(x), ln(x) and the line y = x on the same graph.

Logarithms are useful for placing one exponential in terms of another.
If c = ln(a) then ax = ecx


Up to Main Lab Page Next Lesson - Finding Roots Previous Lesson - Secants, Tangents and Derivatives Top of this Lesson


Maintained by: P. Danziger, Febuary 1998