The Internet Economy

 

Econ 407: Problems dealing with optimal timing using exponential and log functions. See the folllowing example. Suppose you have a property that is worth $1000 and increases in value according to 1000*exp(t^1/3). Further, assume you could invest your $1000 at a rate of 9 percent

or borrow the same amount at this rate. How many years should you hold on to this property?

> v:=1000*exp(t^(1/3));

[Maple Math]

> plot(v,t=0..10);

[Maple Plot]

Form the following equation, take the first deriavtive; set it equal to zero and solve for time--t.

as shown below.

Nv:=1000*exp(t^(1/3)-0.09*t);

[Maple Math]

> nv1:=diff(Nv,t);

[Maple Math]

> solve(nv1,t);

[Maple Math]

The answer clearly is the second one--the positive root which is about 7.12 years.

plot(Nv,t=0..10);

[Maple Plot]

Another example when the interest rate is 8 percent.

V:=100*exp(t^(1/2));

[Maple Math]

> nv:=100*exp(t^(1/2)-0.08*t);

[Maple Math]

> nv1:=diff(nv,t);

[Maple Math]

> solve(nv1,t);

[Maple Math]

> nv:=100*exp(t^(1/2)-0.12*t);

[Maple Math]

> nv1:=diff(nv,t);

[Maple Math]

> solve(nv1,t);

[Maple Math]

Assignments: 9.23, 9.25,9.33

The price of agricultural goods is up by 4 poercent each year;the quantity by 2 percent. What is the annual rate of growth

derived from the agricultural sector?

TR:= P*Q

> TR:=P*Q;

[Maple Math]

Percennathe Change in TR= Percentage Change in Price + Percentage in Quantity. Using this definition, the Percentage

Change in TR= 4% +2% =6%.

> ln(TR):=ln(P) +ln(Q);

[Maple Math]

Equation of Exchange: M*V=P*T: The dominant model in classical macroeconomics. If you believe in this model the following

relation holds:

%M+%V=%P +%T, where M is money, V is velocity, P is the price and T is the number of transactions.

> Y:=ln(x);

[Maple Math]

> y1:=diff(Y,x);

[Maple Math]

If you take the time derivative of a natural log, you will get percentage change. Also, you can find the first difference in

natural log to approximate percentage change.

> ln(6.15);

[Maple Math]

> ln(5.15);

[Maple Math]

> pchminw:=1.816452082-1.638996715;

[Maple Math]

Preoblem 9.25, page 209

> PCE:=E/P;

[Maple Math]

> %changPCE:=0.04-.025;

[Maple Math]

> ln(PCE):=ln(E/P);

[Maple Math]

> %PCE=%E-%P;

[Maple Math]

> %PCE=.04-.025;

[Maple Math]

>