
Gene G. answered 11/30/16
Tutor
5.0
(257)
Retired Electrical Engineer Helping People Understand Algebra
1.330843062t = years since 1970
I used 1970=0, 1980=10, etc.
The linear part is straightforward. Just do linear regression on the data. You may have a different procedure to do the regression. The trick required to get the exponential model is to do linear regression on the natural log of the the y-values (number of graduates), then convert that result into exponential form. (see below)
LINEAR
I used the SLOPE() and INTERCEPT() functions to get m and b:
m= 0.037735
b = 1.274937
y = 0.03775x + 1.274937
2010 prediction: 2.784
EXPONENTIAL
Replace the y-values with ln(y).
Get m and b as above.
I get this:
m = 0.019883
b = 1.274937
ln(y) = 0.019883x + 1.274937
You have to convert this to an exponential expression.
eln(y) = e 0.019883x + 1.274937 = e 1.274937 * e 0.019883x
y = 1.330843e 0.019883x
2010 prediction: 2.948
I'll let you do the research for the actual 2010 values and calculate the % differences.
When will it reach 3 million?
Solve each equation for x when f(x) = 3
LINEAR
0.03775x + 1.274937 = 3
X = 45.7
round up to 46, 1970+46 = 2016
EXPONENTIAL
1.330843e0.019883x = 3
ln(1.330843)+0.019883x = ln(3) -- This is the form before we converted it to exponential!
x = 40.88
round up to 41, 1970+41 = 2011
Time to double.
Solve e0.019883x = 2 for x
0.019883x = ln(2)
x= ln(2) / 0.019883x
x = 34.86 ∼35 years
Hope this helps!