samplefinal2008.mw

N.B. Many problem statements wer lifted from samplefinal2007.pdf - So the "numbers have been changed"

Maple 10 Worksheet for samplefinal2008 Math 165 - Calculus for Business.

Sample Final 2008 (Problems 1-62 are from samplefinal2007)

First load plots and student:

> restart: with( student):with (plots):

Definite integrals are written and evaluated using Maple commands Int and int.

int(f(x), x = a .. b) is the equivalent (almost) of your TI calculator calculator fnInt(f(x),x,a,b).

An alternate method to evaluate the definite integral is value(Int).

> InertDefiniteIntegral:=Int(exp(2*x-1),x = 0 .. 1.0);

EvaluatedDefiniteIntegral:=int(exp(2*x-1),x = 0 .. 1.0);

ValueInt:=value(InertDefiniteIntegral);

Sample Final 2008 (Problems 1-62 are from samplefinal2007)

2007 1. Suppose z = f(x, y), ( , ) 0 x f a b = , ( , ) 0 y f a b = , ( , ) 16 xx f a b = , ( , ) 1 yy f a b = ,

and ( , ) 4 xy f a b = . Then (a, b) is

A) the test is inconclusive

B) a saddle point

C) a relative minimum

D) a relative maximum

> DISC:= proc(fxx,fyy,fxy);

> fxx*fyy -fxy*fxy;

end proc;

D:=DISC(16, 16,16);

Discriminant Test Fails

2007 2.. The only grocery store in a small rural community carries two brands of frozen

apple juice, a local brand that it obtains at the cost of 26 cents per can and a

well-known national brand that it obtains at the cost of 60 cents per can. The

grocer estimates that if the local brand is sold for x cents per can and the

national brand for y cents per can, approximately 70 – 5x + 4y cans of the local

brand and 80 + 6x-7y cans of the national brand will be sold each day. How

should the grocer price each brand to maximize the profit from the sale of the

juice?

A) local brand (x) at 86 cents, national brand (y) at 57 cents

B) local brand (x) at 38 cents, national brand (y) at 118 cents

C) local brand (x) at 45 cents, national brand (y) at 59 cents

D) local brand (x) at 43 cents, national brand (y) at 59 cents

Profit on each brand = (price - cost) * (demand/quantity)

> P_local(x,y):=(x - 18) * (70 - 5*x + 4*y);

P_national(x,y):= (y - 60) * (80 + 6*x -7*y);

Pr(x,y):= P_local(x,y) + P_national(x,y);simplify(%);

Now take the first partial derivatives and solve the two simultaneous equations to find the

critical point. Then the discriminant test will show a local.global MAX

> Pr_x(x,y):= diff(Pr(x,y),x);

Pr_y(x,y):= diff(Pr(x,y),y);

solve([Pr_x(x,y)=0, Pr_y(x,y)=0],[x,y]);

2008 3. Compute f _yy for f (x, y) = e^(5xy) .

A) 25x2e5xy

B) 25y2e5xy

C) 25e5xy

D) 25x2 y2e5xy

> f(x,y):= exp(4*x*y);

f_y(x,y):=diff(f(x,y),y);

f_yy(x,y):=diff(f_y(x,y),y);

2007 4. . Find the second partial xy f given f (x, y) = 6xe5xy + y log(6x + 7y)

??? Careful on typing! Must reinterpret problem! () missing. Correct answer is D

> f(x,y):= 5 * x * exp(8*x*y) + y * ln(2*x + 9* y);

f_y(x,y):=diff(f(x,y),y);f_x(x,y):=diff(f(x,y),x);

f_xy(x,y):=diff(f_y(x,y),x);

Page 2.

2007 5. Find the second partials (including the mixed partials) of f (x, y) = 8x4 y6 + 5xy

A) 96 2 6 xx f = x y , 192 3 5 5 xy f = x y + , 192 3 5 5 yx f = x y + , 240 4 4 yy f = x y

B) 96 3 6 xx f = x y , 192 4 5 5 xy f = x y + , 192 4 5 5 yx f = x y + , 240 4 5 yy f = x y

C) 96 2 6 2 xx f = x y + y , 192 5 5 5 xy f = x y + , 192 3 5 5 yx f = x y + , 240 4 4 5 yy f = x y + x

D) 96 2 6 xx f = x y , 240 4 4 yy f = x y

> f(x,y):= 7 * x^5 * y^6 + 5 * x*y;

f_y(x,y):=diff(f(x,y),y);

f_xy(x,y):=diff(f_y(x,y),x);

f_xx(x,y):=diff(f(x,y),x,x);

f_yy(x,y):=diff(f(x,y),y$2);

2007 6.. Compute f(ln4, ln8) if f (x, y) = e^(2x+ y) .

A) 128

B) 32

C) 16

D) none of the above

> f:=proc(x,y)

exp(2*x + y);

end proc;

ans_7:=f(ln(2), ln(7));`or `:=simplify(%);

2007 7.. Let f (x) =12 x^6 -144 ln x , for x > 0. Find the minimum value of f for x > 0.

A) 6(26 -12ln(2))

B) 12(26 -12ln(2))

C) 0

D) 24(1 – ln(2))

There is a local minimum by the second derivative test; as x -> 0+ , f(x) -> + infty.

As x -> + infty, f(x) -> +infty

> f(x):=10*x^9 - 180 * log(x);

f_prime(x):= diff(f(x),x);

crit_no:=solve(f_prime(x)=0,x)[1];

eval(f(x),x=crit_no);

2007 8.. Suppose your family owns a rare book whose value t years from now will be

V(t) = 9e^sqrt( 7t) dollars. If the prevailing interest rate remains constant at 6% per

year compounded continuously, when will it be most advantageous for your

family to sell the book and invest the proceeds?

A) 416.67 years

B) 486.11 years

C) 555.56 years

D) 625 years=

See Example 4.4.3 page 336.

Method 1: Maximize the Present Value

> Present(t):= exp(-.06*t)*9*exp(sqrt(7.*t));

Present_prime(t):= diff(Present(t),t);

solve(Present_prime(t)=0,t);

Method 2.

We actually wnat to know when the rate of returns of the two methods of investment are =.

> Book(t):= 9 * exp(sqrt(7*t));

P(t):= exp(.06 * t);

Book_Rate(t):=diff(Book(t),t)/Book(t);

P_Rate(t):=diff(P(t),t)/P(t);

Change_Date:= solve(Book_Rate(t) = P_Rate(t),t);

2008 8 different data.. Suppose your family owns a rare book whose value t years from now will be

V(t) = 4e^sqrt( 5t) dollars. If the prevailing interest rate remains constant at 6% per

year compounded continuously, when will it be most advantageous for your

family to sell the book and invest the proceeds?

A) 416.67 years

B) 486.11 years

C) 555.56 years

D) 625 years=

See Example 4.4.3 page 336.

Method 1: Maximize the Present Value

> Present(t):= exp(-.06*t)*4*exp(sqrt(5.*t));

Present_prime(t):= diff(Present(t),t);

Change_date:=solve(Present_prime(t)=0,t);

Method 2.

We actually wnat to know when the rate of returns of the two methods of investment are =.

> Book(t):= 4 * exp(sqrt(5.*t));

P(t):= exp(.06 * t);

Book_Rate(t):=diff(Book(t),t)/Book(t);

P_Rate(t):=diff(P(t),t)/P(t);

Change_Date:= solve(Book_Rate(t) = P_Rate(t),t);

2008 9.How quickly will money triple if it is invested at 7% interest compounded continuously?

A)15.69 years

B)15.71 years

C)15.73 years

D)15.75 years

Note that the answer does not depend in the initial balance B.

> ans_9:= solve(P*exp(.07*T) = 3*P,T);

2007 10.

.Find , where .

A)

B)8x

C)

D)

Two ways - ln(x^6) or 6*ln(x)

> f(x):=ln(x^6);

ans_10:= diff(f(x),x);

2007 11.

12.The equation of the tangent line to at x = e is

A)

B)

C)

D)y = 14x

> f11:=proc(x);

8*ln(x^2);

end proc;

f11_prime(x):=diff(f(x),x);

slope:=eval(f11_prime(x), x=exp(1));

tan_eqn(x):=f11(exp(1)) + slope* (x - exp(1));

`Answer_11: y `:=simplify(%);

2007 12..Find the derivative of

Best to use ln(((ln(x^2)))^3) = 3 ln ( 2 ln(x)) = 3 ln 2 + 3 ln(ln(x))

> f(x):=ln(((ln(x^2)))^3);

f_prime(x):=diff(f(x),x);

Answer_12:=simplify(%);

2008 13.The consumer demand for a certain commodity is units per month when the market price is p dollars per unit. Express consumers'total monthly expenditure for the commodity as a function of p and determine the market price that will result in the greatest consumer expenditure.

A)$31.91

B)$2000.00

C)$2.13

D)$17.02

R(x):= x *

> D_13(p):= 7000*exp(-0.52*p);

R_13(p):= p* D_13(p);

ddp_R_13(p):= diff(R_13(p),p);

crit_13:= solve(ddp_R_13(p) =0,p);

2008 14.Use logarithmic differentiation to find (By hand is easier!) .

> f(x):=((6*x + 9)/(4 + 4*x))^(1/4);

log_f(x):= ln(f(x));

`simplified `:=simplify(f(x));

d_dx_log_f(x):=diff(ln(f(x)),x);

#quotient(x):=(%)/f(x);

convert(%,parfrac,x);

Answer:= f(x)*(%);

2008 15..Solve for x: .(Easier by hand!)

> eqn_15:= 5*ln(x) - (1/7)*ln(x^5)=30;

exp15:= x -> exp(5*ln(x) - (1/7)*ln(x^5));

simplify(exp15(x));

solve(exp15(x)= exp(30),x);

solve(eqn_15,x);

2008 16.A radioactive substance decays exponentially. If 600 grams were present initially and 200 grams are present 100 years later, how many grams will be present after 400 years?

A)7.41 grams

B)0 grams

C)6.16 grams

D)4.91

> R(t):= 600*(200/600)^(t/100);

`fraction answer`:=eval(R(t),t=400);

Answer_16:=evalf(%);

2008 17..Solve for x: .

> eqn_17:= log[2](x - 1)=5;

> solve(eqn_17,x);

`solution `:=solve(2^5 = x-1,x);

2008 18.

If $2500 is invested at 7 percent compounded continuously, what is the balance after 11 years?

A)$1157.53

B)$2675

C)$5399.42

D)$5262.13

> P(t):=1500 * exp(.10*t);

eval(P(t),t=12);

2008 19.Find all the critical points of the function .

A)0, 1, -1

B)-1

C)

D)none + 4* x^2 +1;y v

> f(x):=-2*x^4 + 4*x^2 +1;

f_prime(x):= diff(f(x),x);

crit_no:=solve(f_prime(x)=0,x);

2008 20..Find the intervals of increase and decrease for .

A)increasing on x < 2.666667, decreasing on x > 2.666667

B)increasing on x < 2.666667 and x > 2.666667

C)increasing on x  0.125 and on x > 2.666667, decreasing on 0.125 < x  2.666667

D)increasing on 0.125 < x  2.666667 , decreasing on x  0.125 and on x > 2.666667

> f(x):=(10*x - 3)/(-x + 10);

f_prime(x):= diff(f(x),x);

crit_no:=solve(f_prime(x)=0,x);

increase:=solve(f_prime(x)>0,x);

decrease:=solve(f_prime(x)<0,x);

2008 21Find the intervals of increase and decrease for the function

A)decreasing for and increasing for

B)decreasing for and increasing for

C)decreasing for all x

D)increasing for all x

> f(x):=x^2 + 3*x -7;

f_prime(x):= diff(f(x),x);

crit_no:=solve(f_prime(x)=0,x);

increase:=solve(f_prime(x)>0,x);

decrease:=solve(f_prime(x)<0,x);

200822.Determine where the graph of is concave down.

A)x > 1

B)x < 1

C)x > -1

D)x < -1

> f:= x-> x^3 - 3*x^2 - 9 *x +1;

f_prime(x):= diff(f(x),x);

f_prime_prime(x):= diff(f_prime(x),x);

concave_up:=solve(f_prime_prime(x)>0,x);

concave_down:=solve(f_prime_prime(x)<0,x);

2008 23.A 5-year projection of population trends suggests that t years from now, the population of a certain community will be thousand.

1) At what time during the 5-year period will the population be growing most rapidly?

2) At what time during the 5-year period will the population be growing least rapidly?

3) At what time is the rate of population growth changing most rapidly?

A)t = 5 years; t = 0 years; t = 0 years

B)t = 0 years; t = 0 years; t = 2 years

C)t = 2 years; t = 1 year; t = 3 years

D)t = 2 years; t = 0 years; t = 2 years

The problem is:

1) maximize P'(t) on [0,5]

2) minimize P'(t) on [0,5]

3) maximize |P''(t)|

P:= t -> -t^3 + 9 * t^2 +120*t +55;

P_prime(t):= diff(P(t),t);factor(P_prime(t));

P_prime_prime(t):=diff(P_prime(t),t);

> crit_no:= solve(P_prime_prime(t)=0, t);

maximize(abs(P_prime_prime(t)),t = 0 ..5,location);

P' is INCreasing on [0,3] and achieves MAX at t=3., MIN at t=0. |P''(t)| is MAX at t = 0.

Answer A

24..Find the absolute maximum of the function on the interval –1ef020b01ee020c01ee020d01ec020e01eb020e01ea020f01e9020f01e7021001e5021001e4021001e402140122031401220310011e0310011b03100119030f0117030f0116030e0115030d0114030c0113030a011203080112030601120303011203ff001203d6001503d9001803dc001903dd001b03de001c03df001e03e0002003e1002203e2002403e3002603e3002803e4002a03e4002c03e4002f03e4003203e4003503e4003803e3003b03e2003d03e1004003e0004303df004503dd004803db004a03d9004c03d7004e03d4005003d1005203ce005303cb005503c8005603c5005703c1005803bd005903ba005903b6005a03b2005a03ae005a03aa005a03a6005a03a20059039e0059039b0058039700570394005603900055038d005403890052038600500383004f0381004d037e004b037c0048037a004603780043037600410374003e0373003b0372003903710036037100330370003003700007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000014000000fb02f0ff0000000000009001010000000000000054696d6573204e657720526f6d616e00040000002d01000004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101008701000038050100c1002505770005057c0005058100090580000c0580000e05800010058100110581001305810015058200160582001705830018058400190584001a0585001b0587001c0588001d0589001e058b001f058c001f058e0020059100220597002705ad002505b0002305b5001f05bb001b05c2001605c9001205ce001005d0000f05d2000d05d4000c05d5000b05d6000a05d6000905d7000805d7000705d7000605d6000505d5000305d4000105d200ff04d100fe04d100fd04d100fc04d000fb04d000fa04d100f804d100f704d200f504d300f404d400f304d600f304d800f304da00f304dc00f304dd00f404de00f404df00f504e000f604e100f704e200f804e200f904e300fb04e300fc04e400fd04e400fe04e4000005e4000105e3000305e3000505e2000705e2000805e1000a05df000c05de000f05db001205d8001505d4001905cf001c05ca002005c3002505bd002905b5002d05c4003005d0003205d8003305db003305dc003405de003505e0003705e1003805e2003905e3003b05e3003c05e4003e05e4003f05e4004005e3004105e3004305e3004405e2004605e1004905df004b05dc004e05da005105d7005305d4005505d1005705ce005905cb005b05c8005705c6005505ca005405cc005205cd005105cf004f05d1004e05d2004c05d4004b05d5004905d6004805d6004605d6004605d6004505d6004405d5004405d4004305d4004305d3004205d1004105ce004005c9003605a10039059d003b0599003d0596003f0592004205900044058d0046058b0047058a00490588004b0587004d0587004e0586004f058600510587005505880057058900580589005a0589005b0589005d0589005f05880061058800620586006305850064058400640582006405800064057e0063057d0062057b0061057a00600579005f0578005f0578005e0578005b0577005905770057057700560577005405770053057800510579004e057b004b057d0049057f004605820043058400410587003f058a00340599003205910030058b002f0586002d0583002c0580002a057d0027057a002505770007000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f0010100e9000000380501007200db043c00d9043e00d6043f00d4044100d1044300cf044500cd044800cb044a00c8044c00c7044f00c5045100c3045400c1045700bf045a00be045d00bc046000bb046300ba046700b9046a00b7046e00b6047100b5047500b4047900b4047d00b3048100b2048900b1049200b0049b00b004a500b004a500b004a300b004a500b004a700b004a500b004a500b004af00b104b800b204c100b304c900b404d100b504d500b604d900b704dc00b904e000ba04e300bb04e700bc04ea00be04ed00bf04f000c104f300c304f600c504f800c704fb00c804fe00cb040001cd040201cf040401d1040701d4040901d6040a01d9040c01db040e01df040901dc040701da040401d8040201d6040001d404fd00d204fb00d004f800cf04f500cd04f200cc04ef00ca04ec00c904e900c804e500c704e200c604de00c504db00c404d600c304d100c204cb00c204c500c104be00c104b700c104af00c104a700c104a500c104a300c1049b00c1049300c1048c00c2048500c2047f00c3047900c4047400c5046f00c6046b00c7046800c8046400c9046100ca045e00cc045b00cd045800cf045500d0045200d2044f00d4044d00d6044a00d8044800da044500dc044300df044100db043c0007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f0010100e900000038050100720094053c00910541009305430096054600980548009a054a009c054d009e054f009f055200a1055500a3055800a4055b00a5055e00a7056100a8056500a9056800aa056c00ab056f00ac057400ac057900ad057f00ae058500ae058c00ae059300af059b00af05a300af05a500af05a700af05af00ae05b700ae05be00ae05c500ad05cb00ac05d100ac05d600ab05db00aa05df00a905e200a805e600a705e900a505ec00a405ef00a305f200a105f5009f05f8009e05fb009c05fd009a0500019805020196050501930507019105090194050e0197050c019a050b019c0509019e050701a1050501a3050201a5050001a705fe00a905fb00ab05f900ad05f600ae05f300b005f000b205ed00b305ea00b405e700b605e300b705e000b805dc00b905d900ba05d500bb05d100bc05cd00bd05c900be05c100bf05b800bf05af00c005a500c005a500c005a700c005a500c005a300c005a500c005a500bf059b00bf059200be058900bd058100bb057900ba057500b9057100b8056e00b7056a00b6056700b4056300b3056000b2055d00b0055a00ae055700ad055400ab055200a9054f00a7054c00a5054a00a3054800a10546009e0543009c0541009a05400097053e0094053c0007000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001020014000000fb02f0ff0000000000009001010000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00100000500000009020000ff0007000000fc0200000000ff000000040000002d01000004000000f00101008701000038050100c1004206770022067c002206810026068000290680002b0680002d0681002e0681003006810032068200330682003406830035068400360684003706850038068700390688003a0689003b068b003c068c003c068e003d0691003f0697004406ad004206b0004006b5003c06bb003806c2003306c9002f06ce002d06d0002c06d2002a06d4002906d5002806d6002706d6002606d7002506d7002406d7002306d6002206d5002006d4001e06d2001c06d1001b06d1001a06d1001906d0001806d0001706d1001506d1001406d2001206d3001106d4001006d6001006d8001006da001006dc001006dd001106de001106df001206e0001306e1001406e2001506e2001606e3001806e3001906e4001a06e4001b06e4001d06e4001e06e3002006e3002206e2002406e2002506e1002706df002906de002c06db002f06d8003206d4003606cf003906ca003d06c3004206bd004606b5004a06c4004d06d0004f06d8005006db005006dc005106de005206e0005406e1005506e2005606e3005806e3005906e4005b06e4005c06e4005d06e3005e06e3006006e3006106e2006306e1006606df006806dc006b06da006e06d7007006d4007206d1007406ce007606cb007806c8007406c6007206ca007106cc006f06cd006e06cf006c06d1006b06d2006906d4006806d5006606d6006506d6006306d6006306d6006206d6006106d5006106d4006006d4006006d3005f06d1005e06ce005d06c9005306a10056069d00580699005a0696005c0692005f06900061068d0063068b0064068a0066068800680687006a0687006b0686006c0686006e06870072068800740689007506890077068900780689007a0689007c0688007e0688007f0686008006850081068400810682008106800081067e0080067d007f067b007e067a007d0679007c0678007c0678007b0678007806770076067700740677007306770071067700700678006e0679006b067b0068067d0066067f0063068200600684005e0687005c068a00510699004f0691004d068b004c0686004a0683004906800047067d0044067a004206770007000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01030004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f001010013000000380501000700e5063f00b2069300bd069300e6064e00100793001a079300e8063f0007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01000004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101002d01000038050100940073074200550780005a0780005f07800064078100690782006d0783007107840074078500780786007c0788007f078a0083078c0086078e00890791008c0793008f0796009107990093079c009507a0009707a3009807a6009907aa009a07ad009a07b0009a07b4009a07b8009a07bb009907bf009807c2009607c5009507c8009207cb009007cd008d07d0008b07d2008807d4008507d5008207d6007f07d7007b07d7007807d8007607d8007307d7007107d7006f07d6006d07d5006b07d4006807d3006607d2006107ce006007cd005e07cd005d07cc005c07cc005b07cc005907cc005707cc005507cd005407cd005207ce005107d0005007d1005007d3004f07d4005007d6005007d7005007d8005107da005207db005307dc005507de005607df005807e0005a07e1005c07e2005f07e3006107e3006407e4006707e4006b07e4006e07e4007207e3007507e3007907e2007c07e1008007e0008307df008707dd008907dc008b07db008d07d9009007d8009207d6009407d5009607d3009807d1009a07cf009b07cd009d07cb009f07c900a007c700a207c400a307c200a507bf00a607bc00a707ba00a807b700a807b400a907b100a907ae00aa07ab00aa07a800aa07a500a907a300a907a000a9079d00a8079b00a8079800a7079600a6079400a5079100a4078f00a2078d00a1078b009f0788009e0786009c0784009a0782009807800095077e0093077c0090077a008d0778008b0776008807750085077300820772007e0771007b07700078076e0074076e0070076d006d076c0069076b0073075600a3075600ac07420007000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00100000500000009020000ff0007000000fc0200000000ff000000040000002d01000004000000f0010100040000003805000007000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020012000000fb02f0ff00000000000090010000000000000000455353544958456967687400040000002d01020004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101000d000000380501000400f8079300f8079f0070089f007008930007000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00100000500000009020000ff0007000000fc0200000000ff000000040000002d01000004000000f0010100040000003805000007000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030014000000fb02f0ff0000000000009001010000000000000054696d6573204e657720526f6d616e00040000002d01030004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f00101008701000038050100c100d6087700b6087c00b6088100ba088000bd088000bf088000c1088100c2088100c4088100c6088200c7088200c8088300c9088400ca088400cb088500cc088700cd088800ce088900cf088b00d0088c00d0088e00d1089100d3089700d808ad00d608b000d408b500d008bb00cc08c200c708c900c308ce00c108d000c008d200be08d400bd08d500bc08d600bb08d600ba08d700b908d700b808d700b708d600b608d500b408d400b208d200b008d100af08d100ae08d100ad08d000ac08d000ab08d100a908d100a808d200a608d300a508d400a408d600a408d800a408da00a408dc00a408dd00a508de00a508df00a608e000a708e100a808e200a908e200aa08e300ac08e300ad08e400ae08e400af08e400b108e400b208e300b408e300b608e200b808e200b908e100bb08df00bd08de00c008db00c308d800c608d400ca08cf00cd08ca00d108c300d608bd00da08b500de08c400e108d000e308d800e408db00e408dc00e508de00e608e000e808e100e908e200ea08e300ec08e300ed08e400ef08e400f008e400f108e300f208e300f408e300f508e200f708e100fa08df00fc08dc00ff08da000209d7000409d4000609d1000809ce000a09cb000c09c8000809c6000609ca000509cc000309cd000209cf000009d100ff08d200fd08d400fc08d500fa08d600f908d600f708d600f708d600f608d600f508d500f508d400f408d400f408d300f308d100f208ce00f108c900e708a100ea089d00ec089900ee089600f0089200f3089000f5088d00f7088b00f8088a00fa088800fc088700fe088700ff08860000098600020987000609880008098900090989000b0989000c0989000e0989001009880012098800130986001409850015098400150982001509800015097e0014097d0013097b0012097a001109790010097800100978000f0978000c0977000a0977000809770007097700050977000409780002097900ff087b00fc087d00fa087f00f7088200f4088400f2088700f0088a00e5089900e3089100e1088b00e0088600de088300dd088000db087d00d8087a00d608770007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01000004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101001300000038050100070079093f0046099300510993007a094e00a4099300ae0993007c093f0007000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00100000500000009020000ff0007000000fc0200000000ff000000040000002d01000004000000f0010100240000003805020004000b001f0a57001f0aa600e709a6001f0a5700260a3f00dc09a800dc09b7001f0ab7001f0ae100320ae100320ab700480ab700480aa600320aa600320a3f0007000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030014000000fb02f0ff000000000000bc02000000000000000054696d6573204e657720526f6d616e00040000002d01030004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f0010100c508000038050b00240043003e004f008e00810088006c0077006d008000d40a7800d60a7800d80a7800d90a7900db0a7a00dc0a7b00dd0a7c00de0a7d00de0a7e00df0a8000e00a8100e10a8400e20a8600e20a8900e20a8b00e30a8e00e30a9600e30a9e00c30a9e00c30a9a00c30a9600c40a9200c40a8e00c50a8a00c60a8700c70a8300c90a8000ca0a7e00cb0a7c00cc0a7b00cd0a7a00cf0a7900d00a7900d10a7800d30a7800d40a7800c80b7c00c90b7c00cb0b7c00cc0b7c00ce0b7d00cf0b7d00d00b7e00d20b7f00d30b8000d40b8100d60b8200d70b8400d80b8500db0b8800dd0b8c00dd0bc600da0bca00d80bcd00d60bd000d30bd200d20bd300d10bd400d00bd500ce0bd500cd0bd600cc0bd600cb0bd600c90bd600c70bd600c50bd600c30bd500c20bd400c10bd300c00bd100be0bd000bd0bce00bc0bcc00bb0bca00ba0bc800ba0bc500b90bc300b80bc000b80bbc00b70bb900b70bb500b70bb100b70bac00b70ba700b70b9e00b70b9a00b70b9600b80b9300b80b9000b90b8d00b90b8b00ba0b8900bb0b8700bc0b8500bd0b8300bd0b8200be0b8000bf0b7f00c00b7e00c20b7d00c40b7c00c60b7c00c80b7c00920c7e00940c7e00960c7f00970c7f00990c80009a0c81009c0c82009d0c84009e0c85009f0c8700a00c8800a10c8c00a20c9000a30c9400a40c9900a40c9f00a40ca500a50cac00a40cb300a40cb900a40cbe00a30cc300a20cc800a10ccb00a00ccf009f0cd0009f0cd2009d0cd3009c0cd5009b0cd6009a0cd700990cd700970cd800960cd800940cd800930cd800910cd800900cd8008f0cd7008d0cd7008c0cd6008a0cd600890cd500860cd300840cd000810ccd007f0cca007f0c8f00810c8b00830c8800840c8600850c8500860c8400870c8300880c82008a0c81008b0c80008c0c7f008e0c7f008f0c7f00910c7e00920c7e00780d78007b0d79007d0d79007f0d7a00800d7b00810d7c00820d7d00830d7e00840d7f00850d8100860d8200860d8400870d8600870d8800880d8a00880d8d00890d9000890d9800890da100890db100890dbd00880dc300880dc700870dcb00870dce00860dd000860dd100850dd300840dd400840dd600830dd700820dd800810dd900800dda007f0dda007e0ddb007d0ddb007a0ddc00780ddc00760ddc00750ddc00740ddb00730ddb00710dda00700dda006f0dd9006e0dd8006d0dd7006c0dd5006b0dd4006b0dd2006a0dd1006a0dcf00690dcd00690dcb00680dc600680dc000670dba00670db400670da900670d9f00680d9600680d8f00690d8c00690d89006a0d86006a0d84006b0d82006c0d80006d0d7e006e0d7d006f0d7c00700d7b00720d7a00730d7a00740d7900750d7900770d7900780d78005c0b70005a0b7000570b7000550b7100530b7100510b72004f0b72004d0b73004b0b7400490b7500470b7700450b7800430b7a00410b7b003f0b7d003b0b82003b0b73000e0b73000e0b7800120b7800130b7900140b7900150b7a00160b7a00170b7b00180b7c00180b7d00190b7e00190b7f001a0b81001a0b83001a0b86001a0b8b001a0bc9001a0bcf001a0bd300190bd500190bd600190bd800180bd800170bd900160bda00150bdb00140bdb00130bdc00110bdc00100bdd000e0bdd000e0be100460be100460bdd00430bdc00420bdc00400bdb003f0bdb003f0bda003e0bd9003d0bd9003d0bd8003c0bd6003c0bd5003c0bd3003b0bcf003b0bc9003b0b8e003d0b8b003f0b8800420b8600440b8400460b8200480b8100490b81004a0b80004b0b80004c0b80004e0b80004f0b8000510b8000520b8100530b8200540b8300550b8400560b8600570b8700570b8a00580b8d00580b9200580b9800580bc900580bce00570bd200570bd400570bd600560bd700560bd800550bd900540bda00530bda00520bdb00510bdc00500bdc004f0bdc004d0bdd004d0be100850be100850bdd00810bdc00800bdc007f0bdb007d0bdb007c0bda007c0bda007b0bd9007a0bd8007a0bd7007a0bd500790bd300790bd100790bcf00790bc900790b9e00780b9600780b8f00780b8900770b8700770b8500760b8300750b8000740b7f00730b7d00720b7b00710b79006f0b78006d0b76006c0b75006a0b7300680b7200650b7200630b7100610b70005e0b70005c0b70002a0d7000280d7000260d7000240d7100220d7100200d72001e0d73001c0d74001a0d7600180d7700150d7900130d7b00110d7e000e0d81000c0d8400090d8800070d8c00070d7300da0c7300da0c7800dd0c7800df0c7800e00c7900e20c7a00e30c7b00e40c7c00e50c7d00e50c7f00e60c8000e60c8300e60c8600e60c8b00e60cc700e60cce00e60cd000e50cd300e50cd500e50cd600e40cd800e40cd900e30cda00e20cda00e10cdb00e00cdb00df0cdc00dd0cdc00dc0cdd00da0cdd00da0ce100150de100150ddd00120ddc000f0ddc000d0ddc000c0ddb000a0dda00090dd900080dd800080dd600070dd500070dd300070dd100070dce00070dc700070dae00070dab00070da700070da400080da100080d9e00090d9b000a0d98000a0d95000b0d93000c0d91000d0d90000d0d8e000e0d8d000f0d8c00100d8b00120d8a00130d8800150d8800160d8700180d87001a0d87001a0d87001b0d8800200d8c00210d8d00220d8e00240d8f00250d8f00270d9000280d9000290d90002b0d90002c0d90002e0d90002f0d9000300d8f00310d8e00320d8e00330d8d00340d8c00350d8b00360d8900360d8800370d8700370d8500380d8300380d8100380d8000380d7e00380d7c00370d7a00370d7900360d7800360d7600350d7500340d7400330d7300320d7200310d72002f0d71002e0d71002d0d70002b0d70002a0d7000d60a7000d30a7000d10a7000cf0a7100cc0a7100ca0a7200c80a7200c50a7300c30a7400c10a7500bf0a7600bd0a7800bb0a7900b90a7b00b70a7d00b50a7e00b30a8000b10a8200b00a8500ae0a8700ad0a8900ab0a8c00aa0a8e00a90a9100a80a9300a70a9600a60a9900a60a9c00a50a9f00a50aa200a50aa500a40aa900a40aac00a50ab100a50ab700a60abc00a70ac100a80ac500aa0ac900ac0ace00ae0ad200b00ad400b20ad600b40ad800b50ada00b70adb00b90add00bc0ade00be0ae000c00ae100c30ae200c50ae200c80ae300cb0ae400cd0ae400d00ae400d30ae400d70ae400da0ae400dd0ae300e10ae200e40ae100e70ae000ea0ade00ec0add00ef0adb00f20ad800f40ad500f70ad200f90acf00fb0acb00fe0ac700000bc300fc0ac000f90ac500f60ac900f40acb00f30acc00f10acd00f00ace00ee0acf00ed0ad000eb0ad100ea0ad100e80ad200e60ad200e50ad200e30ad200e00ad200dd0ad200db0ad100d80ad000d60acf00d40acd00d20acb00d00ac900ce0ac700cd0ac500cb0ac200c90abe00c70aba00c60ab500c50ab000c40aab00c40aa600000ba600000ba000ff0a9d00ff0a9a00fe0a9700fe0a9400fd0a9100fc0a8f00fb0a8c00fa0a8a00f90a8800f80a8500f70a8300f60a8100f40a8000f30a7e00f00a7b00ee0a7900ec0a7800eb0a7700e90a7500e70a7400e50a7300e40a7300e20a7200e00a7100de0a7100dc0a7100da0a7000d80a7000d60a7000cd0b4200cd0b4700d10b4700d40b4700d60b4800d70b4800d80b4900d90b4a00da0b4b00db0b4c00dc0b4e00dc0b4f00dd0b5300dd0b5700dd0b5d00dd0b7e00d90b7a00d60b7700d50b7600d30b7500d10b7400d00b7300ce0b7200cd0b7200cb0b7100c90b7100c80b7000c60b7000c20b7000bf0b7000bc0b7000b90b7100b60b7200b30b7300b00b7400ae0b7600ab0b7700a90b7900a60b7b00a40b7e00a20b8000a00b83009e0b86009c0b89009a0b8c00990b9000980b9400970b9700960b9b00950b9f00950ba300940ba800940bac00950bb100950bb700960bbc00970bc100980bc5009a0bc9009c0bce009e0bd200a00bd400a10bd600a30bd800a50bda00a70bdb00a90bdd00ab0bde00ad0be000af0be100b10be200b30be200b50be300b80be400ba0be400bd0be400bf0be400c10be400c30be400c50be400c70be300c90be300cb0be200cc0be100ce0be100d00be000d10bde00d30bdd00d50bdb00d70bda00d90bd800dd0bd300dd0be4000b0cdb000b0cd700080cd700060cd700040cd600020cd500010cd400000cd300ff0bd100fe0bcf00fe0bcd00fe0bca00fe0bc600fe0bc000fe0b4200780d7000750d7000720d70006f0d71006d0d71006a0d7200670d7300650d7300630d7400600d76005e0d77005c0d78005a0d7a00580d7c00560d7d00540d7f00520d8200510d84004f0d86004e0d88004c0d8b004b0d8d004a0d9000490d9200480d9500470d9700470d9a00460d9d00460d9f00450da200450da500450da800450dab00450dad00450db000450db300460db600460db800470dbb00470dbe00480dc000490dc3004a0dc5004b0dc8004c0dca004d0dcc004f0dcf00500dd100520dd300540dd500560dd700570dd900590ddb005c0ddc005e0dde00600ddf00620de000650de100670de2006a0de3006d0de3006f0de400720de400750de400780de4007b0de4007e0de400810de400840de300870de2008a0de2008c0de1008f0de000910dde00930ddd00960ddb00980dda009a0dd8009c0dd6009e0dd400a00dd100a10dcf00a20dcd00a40dcb00a50dc900a60dc700a70dc400a80dc200a90dc000a90dbd00aa0dbb00aa0db800ab0db500ab0db000ac0daa00ab0da600ab0da200ab0d9e00aa0d9b00a90d9700a80d9300a70d9000a50d8c00a30d8900a20d86009f0d83009d0d80009b0d7e00980d7b00950d7900920d77008f0d76008c0d7400890d7300860d7200820d71007f0d70007b0d7000780d7000f10d7000ee0d7000eb0d7000e80d7100e50d7100e20d7200df0d7300dd0d7400da0d7500d80d7700d60d7800d30d7a00d10d7c00cf0d7e00cd0d8000cb0d8200c90d8500c80d8700c60d8900c50d8b00c40d8d00c30d9000c20d9200c10d9400c00d9700bf0d9900bf0d9c00be0da100bd0da600bd0dac00bd0daf00bd0db200be0db400be0db700be0dba00bf0dbc00c00dbf00c00dc200c10dc400c20dc600c30dc900c50dcb00c60dcd00c70dd000c90dd200ca0dd400cc0dd600ce0dd800d00dd900d10ddb00d30ddc00d50dde00d70ddf00da0de000dc0de100de0de200e10de300e30de300e50de400e80de400eb0de400ed0de400f00de400f20de400f20de400f20dce00f20dce00f10dce00ef0dcd00ed0dcb00eb0dc900e90dc600e80dc400e60dc100e40dbe00e30dbb00e20db800e10db400e00db000df0dad00de0da900dd0da500dd0da200dd0d9e00dd0d9a00dd0d9500dd0d9100de0d8d00de0d8a00df0d8600e00d8300e10d8100e30d7e00e40d7d00e50d7c00e60d7b00e70d7a00e80d7900ea0d7900eb0d7800ec0d7800ee0d7800ef0d7900f10d7900f20d7a00f20d7a00f20d7000f20d7000f10d70009d0c70009a0c7000980c7000960c7100930c7100910c72008f0c73008c0c74008a0c7600890c7700870c7800860c7900840c7b00830c7c00810c7e007f0c82007f0c7300510c7300510c7800530c7800540c7800560c7800570c7900580c7900590c7a005a0c7b005b0c7b005c0c7c005c0c7e005d0c7f005d0c81005d0c83005e0c85005e0c8a005e0cfe005e0c03015d0c05015d0c07015d0c09015c0c0a015c0c0b015b0c0c015b0c0d01590c0e01580c0e01570c0f01560c0f01540c1001520c1001510c1001510c14018f0c14018f0c10018b0c1001880c1001860c0f01840c0f01830c0e01820c0d01810c0c01800c0a017f0c08017f0c06017f0c03017f0cff007f0cd600820cd900850cdc00860cdd00880cde00890cdf008b0ce0008d0ce1008f0ce200910ce300930ce300950ce400970ce400990ce4009c0ce4009f0ce400a20ce400a50ce300a80ce200aa0ce100ad0ce000b00cdf00b20cdd00b50cdb00b70cd900b90cd700bb0cd400bd0cd100bf0cce00c00ccb00c20cc800c30cc500c40cc100c50cbd00c60cba00c60cb600c70cb200c70cae00c70caa00c70ca600c70ca200c60c9e00c60c9b00c50c9700c40c9400c30c9000c20c8d00c10c8900bf0c8600bd0c8300bc0c8100ba0c7e00b80c7c00b50c7a00b30c7800b00c7600ae0c7400ab0c7300a80c7200a60c7100a30c7100a00c70009d0c700007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000004000000f001010004000000f001020004000000f0010300030000000000

2008 25..An apartment complex has 250 units. When the monthly rent for each unit is $330, all units are occupied. Experience indicates that for each $14 per month increase in rent, 4 units will become vacant. Each rented apartment costs the owner of the complex $50 per month to maintain. What monthly rent should be charges to maximize profit?

A)$125.5

B)$251

C)$376.5

D)$627.5

Formula for demand is q = 250 (all) - (4 per $14)* (increase in rent from $330)

> q(p):= 250 - (4/12) * (p - 400);

Profit(p):= (p -40) * q(p);simplify(%);normal(%);

Profit_prime(p):=diff(Profit(p),p);

`Maximum Profit at Rent `:=solve(Profit_prime(p)=0, p);

2008 26. A commuter's train carries 600 passengers each day from a suburb to a city. It

now costs $1 per person to ride the train. A study shows that 50 additional

people will ride the train for each 5 cent reduction in fare. What fare should be

charged in order to maximize total revenue?

A) 78 cents

B) 79 cents

C) 80 cents

D) 85 cents

Simlar to previous problem. q = number riders, p = fare

> q(p):= 600 - (50/.05) * (p - 1.);

R(p):= p * q(p);

R_prime(p):=diff(R(p),p);

`Maximum Revenue at fare `:=solve(R_prime(p)=0, p);

2008. 27.

2

Find the elasticity n of the demand function 2

.

> D_27(p):= 3/(1 + 2*p^2);

n_27(p):=(p/D_27(p))*diff(D_27(p),p);

2008 28A Florida citrus grower estimates that if 70 orange trees are planted, the average yield per tree will be 300 oranges. The average yield will decrease by 3 oranges per tree for each additional tree planted on the same acreage. How many trees should the grower plant to maximize the total yield?

A)70 trees

B)20 trees

C)30 trees

D)65 trees

AY = average yield

TY = total yield = q * AY

> AY(q):= 300 - (3/1)*(q -70);

TY(q):= q* AY(q);

d_dq_TY(q):= diff(TY(q),q);

crit_no_30:=solve(d_dq_TY(q)= 0, q);

2008 29.

The owner of a novelty store can obtain joy buzzers from the manufacturer for

50cents apiece. He estimates he can sell 70 buzzers when he charges $1.4

apiece for them and that he will be able to sell 11 more buzzers for every 10 cent

decrease in price. What price should he charge in order to maximize profit?

A) $0.76

B) $0.86

C) $0.66

D) $0.96

> q(p):= 70 + (11/(-.10)) * (p - 1.40);

Profit(p):= (p -.50) * q(p);

Profit_prime(p):=diff(Profit(p),p);

solve(Profit_prime(p)=0, p);

ans_31:=evalf(%,4);

2008 30.

32.The derivative of is

A)

B)

C)

D)

doff

> f(t):= 1/(t^7);

f_prime(x):= diff(f(t),t);

2008 31..The graph of 3x^2 + 3 has

A)a maximum at

B)a minimum at

C)a maximum at x = 0

D)a minimum at x = 0

> f(x):=5* x^2 + 9;

f_prime(x):=diff(f(x),x);

crit_no:= solve(f_prime(x),x);

second_der_test:=eval(diff(f_prime(x),x), x = crit_no);

2008 32.Differentiate:

> f(x):= sqrt(x) + 3/sqrt(x);

f_prime(x):= diff(f(x),x);

2008 33.Find the second derivative of the given function and simplify your answer:

A)

B)

C)

D)

> f(t):= 7/(4*t + 7);

f_p_p(t):= diff(f(t),t$2);

2008 34.Evaluate the limit:

A)1

B)-1

C)0

D)

> f(x):=(x^4 + 2* x^2 -3)/x^5;

Answer_34:= limit(f(x), x = infinity);

2008 35.Evaluate .

A)

B)

C)

D)

> ans_35(x):=int((8*x)^(1/3),x) + C;simplify(%);

2008 36. CHECK ANSWER An object is moving so that its speed after 5 + 2*t +6*t^2 minutes is meters per minute.

How far does the object travel between the end of minute 8 and the end

of minute 9?

A) 490 meters

B) 3002 meters

C) 480 meters

D) 2832 meters

Use fnInt(5 + 6*x + 6*x^2,x,8,10)

> Int(5 + 2*t + 6*t^2, t = 6 .. 7);

ans_38:=value(%);

2008 37.Evaluate

> Integral:=Int(2*x^8 - 5*x + 6,x);

Answer_37:=value(%) + C;

2008 38.In a certain section of the country, the price of chicken is currently $2 per kilogram.

It is estimated that x weeks from now the price will be increasing at a

rate of 2sqrt(x +1) cents per kilogram, per week. How much will chicken cost 9

weeks from now?

A) $3.61

B) $0.62

C) $4.61

D) $2.62

> 2.00 + Int(.02 *sqrt(t+1), t = 0 .. 8);

ans_38:=value(%);

39.Use the fundamental theorem of calculus to find the area of the region under the line y = 2x + 1 above the interval 1 02d01000004000000f0010100f701000038050300340041008300c0033100c2033100c4033100c6033100c8033200ca033300cb033300cd033400ce033600d0033700d1033900d1033a00d2033c00d3033e00d3034000d3034200d3034400d3034800d3034b00d2034e00d1035100d0035200cf035400cd035500cc035700c8035b00c3036000b5035400b3035200b1034f00b0034d00ae034b00ad034900ad034600ac034400ac034200ac034000ac033e00ad033d00ad033b00ae033a00af033800b0033700b2033600b3033400b5033300b6033300b8033200ba033100bc033100be033100c0033100ba036c00be037000c2037300c6037700c9037a00cc037d00cf038000d1038200d3038500d4038600d4038700d5038900d5038a00d6038b00d6038d00d6038e00d6039000d6039200d6039400d5039500d5039700d4039900d3039a00d2039c00d1039d00cf039e00cd039f00cc03a000ca03a100c803a200c603a200c403a200c103a200bf03a200bd03a200bb03a100b903a100b703a000b5039f00b3039d00b2039c00b0039a00af039800ae039600ad039400ac039100ac038f00ab038c00ab038900ab038700ac038500ac038300ac038100ad037f00ad037d00ae037b00af037a00b0037800b1037600b2037400b3037300b5037100b6036f00b8036e00ba036c00c0032b00bc032b00b9032c00b6032d00b3032d00b0032f00ad033000ab033200a8033400a6033600a4033800a3033b00a1033d00a0034000a00342009f0345009f0348009f034a009f034b00a0034d00a0034f00a1035100a1035300a2035400a3035600a4035800a6035a00a8035c00aa035e00ac036100af036300b5036900b2036b00af036e00ad037000aa037200a8037400a6037600a5037800a3037a00a2037c00a1037e00a00380009f0382009f0384009e0386009e0388009e038a009e038c009e038f009f039100a0039400a1039600a2039800a4039a00a6039d00a7039e00a8039f00a903a000ab03a100ac03a200ae03a300af03a400b103a400b403a600b803a600bc03a700c003a700c403a700c703a700cb03a600ce03a500d103a400d403a200d703a000d9039e00db039c00dd039a00df039700e0039400e1039200e2038f00e3038c00e3038900e3038600e2038400e2038100e1037f00e0037d00df037a00dd037800dc037600da037400d9037200d7037000d4036e00d2036b00cf036900c8036300cb036100ce035e00d1035c00d4035a00d6035800d8035600da035400db035300dc035100dd034f00de034d00df034c00df034a00e0034800e0034700e0034500e0034200e0034000df033e00de033c00dd033900db033700d9033500d7033300d5033100d3033000d0032e00cd032d00ca032c00c7032c00c4032b00c0032b0007000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f001010037020000380503003a0041009d009204270195042701980427019a0428019d0428019f042901a1042a01a3042c01a5042e01a7042f01a8043101a9043301aa043601ab043801ac043b01ac043e01ac044101ac044301ac044501ab044701ab044a01ab044c01aa044e01a9045001a8045101a7045301a6045501a4045801a2045a01a0045d019d045f019a0462019604650183045501810453017e0450017c044d017a044a0179044701780444017704410177043e0177043b017804390178043701790435017a0433017c0431017d042f017f042e0181042c0183042a0185042901870428018a0428018d0427018f042701920427018a04760190047b01950480019a0484019f048901a3048c01a6049001a9049401ab049701ac049901ad049a01ae049c01af049e01af04a001af04a201b004a401b004a601b004a801af04ab01af04ad01ae04af01ad04b201ab04b401aa04b501a804b701a604b901a404ba01a204bc019f04bd019d04bd019a04be019704be019404be019104be018e04be018b04bd018804bc018604bb018304b9018104b7017f04b5017d04b3017b04b0017a04ae017904ab017804a8017704a4017704a10177049d0177049a017704980177049501780492017804900179048d017a048b017b0488017d0486017e0483017f04810181047f0183047d0185047a01870478018a047601920420018d042001890421018404210182042201800423017e0423017c0424017b04250179042601770427017504280174042a0172042b0170042e016d0431016b0434016904370168043b0167043e0167044201660446016604480167044b0167044d0168044f0169045201690454016b0457016c0459016d045b016f045e017204610175046401780467017c046a0180046e0184047201800475017c04780179047b0175047e0172048101700484016e0486016c0489016a048b0169048e016704910166049301660496016504980165049b0165049e016504a1016504a4016604a8016704ab016804ae016a04b1016c04b4016f04b7017004b8017204ba017404bb017604bd017804be017a04bf017c04c0017e04c1018004c2018204c3018504c3018704c4018a04c4018c04c5018f04c5019204c5019704c5019c04c4019e04c401a004c301a304c301a504c201a704c101a904c001ab04bf01ad04be01ae04bd01b004bc01b204ba01b304b901b604b601b804b401b904b301ba04b101bb04af01bc04ae01bd04ac01be04aa01be04a801bf04a601bf04a401c004a201c004a001c0049e01c0049c01c0049901c0049601bf049201be048f01bd048c01bb048901b9048601b7048301b5048101b3047e01b0047b01ad047801aa047501a6047101a1046e019c046a01a1046701a5046401a9046101ad045e01b0045c01b2045901b5045701b6045401b8045201b9045001ba044d01bb044b01bc044901bc044701bd044401bd044201bc043f01bc043c01bb043801ba043501b8043201b6043001b4042d01b1042a01af042901ae042801ac042701ab042601a7042401a30422019f0421019b042001970420019204200107000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01000004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f0010100040000003805000007000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001030014000000fb02f0ff0000000000009001010000000000000054696d6573204e657720526f6d616e00040000002d01030004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00100000500000009020000ff0007000000fc0200000000ff000000040000002d01000004000000f00101008701000038050100c1003405580114055d0114056201180561011b0561011d0561011f05620120056201220562012405630125056301260564012705650128056501290566012a0568012b0569012c056a012d056c012e056d012e056f012f0572013105780136058e0134059101320596012e059c012a05a3012505aa012105af011f05b1011e05b3011c05b5011b05b6011a05b7011905b7011805b8011705b8011605b8011505b7011405b6011205b5011005b3010e05b2010d05b2010c05b2010b05b1010a05b1010905b2010705b2010605b3010405b4010305b5010205b7010205b9010205bb010205bd010205be010305bf010305c0010405c1010505c2010605c3010705c3010805c4010a05c4010b05c5010c05c5010d05c5010f05c5011005c4011205c4011405c3011605c3011705c2011905c0011b05bf011e05bc012105b9012405b5012805b0012b05ab012f05a40134059e01380596013c05a5013f05b1014105b9014205bc014205bd014305bf014405c1014605c2014705c3014805c4014a05c4014b05c5014d05c5014e05c5014f05c4015005c4015205c4015305c3015505c2015805c0015a05bd015d05bb016005b8016205b5016405b2016605af016805ac016a05a9016605a7016405ab016305ad016105ae016005b0015e05b2015d05b3015b05b5015a05b6015805b7015705b7015505b7015505b7015405b7015305b6015305b5015205b5015205b4015105b2015005af014f05aa014505820148057e014a057a014c0577014e0573015105710153056e0155056c0156056b01580569015a0568015c0568015d0567015e056701600568016405690166056a0167056a0169056a016a056a016c056a016e05690170056901710567017205660173056501730563017305610173055f0172055e0171055c0170055b016f055a016e0559016e0559016d0559016a055801680558016605580165055801630558016205590160055a015d055c015a055e01580560015505630152056501500568014e056b0143057a01410572013f056c013e0567013c0564013b05610139055e0136055b013405580107000000fc0201000000ff000000040000002d01010004000000f001000008000000fa020000010000000000ff00040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020012000000fb02f0ff00000000000090010000000000000000455353544958466976650000040000002d01020004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101001d000000380501000c0021062b0121067401d8057401d8058001210680012106c9012d06c9012d06800176068001760674012d0674012d062b0107000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01000004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f00101002d010000380501009400fb062301dd066101e2066101e7066101ec066201f1066301f5066401f9066501fc066601000767010407690107076b010b076d010e076f0111077201140774011707770119077a011b077d011d0781011f0784012007870121078b0122078e0122079101220795012207990122079c012107a0012007a3011e07a6011d07a9011a07ac011807ae011507b1011307b3011007b5010d07b6010a07b7010707b8010307b8010007b901fe06b901fb06b801f906b801f706b701f506b601f306b501f006b401ee06b301e906af01e806ae01e606ae01e506ad01e406ad01e306ad01e106ad01df06ad01dd06ae01dc06ae01da06af01d906b101d806b201d806b401d706b501d806b701d806b801d806b901d906bb01da06bc01db06bd01dd06bf01de06c001e006c101e206c201e406c301e706c401e906c401ec06c501ef06c501f306c501f606c501fa06c401fd06c4010107c3010407c2010807c1010b07c0010f07be011107bd011307bc011507ba011807b9011a07b7011c07b6011e07b4012007b2012207b0012307ae012507ac012707aa012807a8012a07a5012b07a3012d07a0012e079d012f079b0130079801300795013107920131078f0132078c013207890132078601310784013107810131077e0130077c01300779012f0777012e0775012d0772012c0770012a076e0129076c0127076901260767012407650122076301200761011d075f011b075d0118075b011507590113075701100756010d0754010a075301060752010307510100074f01fc064f01f8064e01f5064d01f1064c01fb0637012b0737013407230107000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f0010300040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01030004000000f001020008000000fa020500010000000000ff00040000002d01020004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f0010100e900000038050100720036041d0134041f01310420012f0422012c0424012a0426012804290126042b0123042d0122043001200432011e0435011c0438011a043b0119043e0117044101160444011504480114044b0112044f0111045201100456010f045a010f045e010e0462010d046a010c0473010b047c010b0486010b0486010b0484010b0486010b0488010b0486010b0486010b0490010c0499010d04a2010e04aa010f04b2011004b6011104ba011204bd011404c1011504c4011604c8011704cb011904ce011a04d1011c04d4011e04d7012004d9012204dc012304df012604e1012804e3012a04e5012c04e8012f04ea013104eb013404ed013604ef013a04ea013704e8013504e5013304e3013104e1012f04de012d04dc012b04d9012a04d6012804d3012704d0012504cd012404ca012304c6012204c3012104bf012004bc011f04b7011e04b2011d04ac011d04a6011c049f011c0498011c0490011c0488011c0486011c0484011c047c011c0474011c046d011d0466011d0460011e045a011f0455012004500121044c0122044901230445012404420125043f0127043c01280439012a0436012b0433012d0430012f042e0131042b013304290135042601370424013a04220136041d0107000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f0010200040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01020004000000f001030008000000fa020500010000000000ff00040000002d01030004000000f00102000500000009020000ff0007000000fc0200000000ff000000040000002d01020004000000f0010100e900000038050100720065071d01620722016407240167072701690729016b072b016d072e016f07300170073301720736017407390175073c0176073f0178074201790746017a0749017b074d017c0750017d0755017d075a017e0760017f0766017f076d017f07740180077c01800784018007860180078801800790017f0798017f079f017f07a6017e07ac017d07b2017d07b7017c07bc017b07c0017a07c3017907c7017807ca017607cd017507d0017407d3017207d6017007d9016f07dc016d07de016b07e1016907e3016707e6016407e8016207ea016507ef016807ed016b07ec016d07ea016f07e8017207e6017407e3017607e1017807df017a07dc017c07da017e07d7017f07d4018107d1018307ce018407cb018507c8018707c4018807c1018907bd018a07ba018b07b6018c07b2018d07ae018e07aa018f07a20190079901900790019107860191078601910788019107860191078401910786019107860190077c01900773018f076a018e0762018c075a018b0756018a07520189074f0188074b0187074801850744018407410183073e0181073b017f0738017e0735017c0733017a07300178072d0176072b0174072901720727016f0724016d0722016b07210168071f0165071d0107000000fc0201000000ff000000040000002d01010004000000f001020008000000fa020000010000000000ff00040000002d01020004000000f001030014000000fb02f0ff0000000000009001000000000000000054696d6573204e657720526f6d616e00040000002d01030004000000f0010000040000002c010000040000000601020008000000fa020500010000000000ff00040000002d01000004000000f001020008000000fa0205000100000090909000040000002d01020004000000f00100000500000009029090900007000000fc020000909090000000040000002d01000004000000f001010090010000380502004500800024085b0125085b0126085b0129085b012c085c012f085e0130085f01320860013308610134086201350863013608650137086601380868013a086b013b086f013c0872013c0876013c08ae013a08b0013708b2013508b4013208b6013008b7012d08b8012a08b8012808b8012508b8012308b8012208b8011f08b7011c08b5011908b3011608b1011308af011108ac011008aa010e08a8010d08a7010c08a5010b08a3010b08a1010a089f0109089c01080898010708930107088d01070887010708820107087c010808770109087501090873010a0871010b086f010c086c010c086b010d0869010f0867011008650111086401130862011508600118085e011a085d011c085c011f085b0121085b0124085b014b081b012a0828012c082c012e082c0130082b0132082b0134082b0135082b0137082b0138082b0139082c013a082d013a082e013b0830013c0832013c0835013c083a013c0840013c0849013c085c013a085a013708580135085701320856012f0855012c0854012808540125085301220853011f0854011d0854011a085501170855011508560113085701100858010e0859010c085b0109085c0107085e0105086001030862010108640100086601fe076901fc076b01fb076e01f9077001f8077301f7077501f6077801f5077b01f4077d01f3078001f2078301f2078501f1078801f1078b01f1078e01f1079101f1079401f1079601f1079901f2079c01f2079e01f307a101f307a301f407a601f507a801f607aa01f707ac01f807af01fa07b101fb07b301fd07b501fe07b7010008b8010108ba010308bc010508bd010708be010908c0010a08c1010c08c2010e08c2011008c3011208c4011408c4011608c5011808c5011b08c5011d08c5011f08c5012108c5012308c5012508c4012708c4012908c3012b08c2012d08c2012f08c1013108c0013308be013508bd013708bb013808ba013c08b6013c08c5014208c5016208b8016008b4015e08b5015c08b5015a08b6015808b6015708b6015508b5015408b5015308b4015308b3015208b2015108b0015108ae015008ab015008a7015008a0015008970150081b0107000000fc020100909090000000040000002d01010004000000f001000008000000fa0200000100000090909000040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001030011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01030004000000f001020014000000fb02f0ff0000000000009001010000000000000054696d6573204e657720526f6d616e00040000002d01020004000000f0010300040000002c010000040000000601020008000000fa0205000100000090909000040000002d01030004000000f001000008000000fa020500010000000000ff00040000002d01000004000000f00103000500000009020000ff0007000000fc0200000000ff000000040000002d01030004000000f00101008701000038050100c1008b0858016b085d016b0862016f08610172086101740861017608620177086201790862017b0863017c0863017d0864017e0865017f08650180086601810868018208690183086a0184086c0185086d0185086f0186087201880878018d088e018b0891018908960185089c018108a3017c08aa017808af017608b1017508b3017308b5017208b6017108b7017008b7016f08b8016e08b8016d08b8016c08b7016b08b6016908b5016708b3016508b2016408b2016308b2016208b1016108b1016008b2015e08b2015d08b3015b08b4015a08b5015908b7015908b9015908bb015908bd015908be015a08bf015a08c0015b08c1015c08c2015d08c3015e08c3015f08c4016108c4016208c5016308c5016408c5016608c5016708c4016908c4016b08c3016d08c3016e08c2017008c0017208bf017508bc017808b9017b08b5017f08b0018208ab018608a4018b089e018f0896019308a5019608b1019808b9019908bc019908bd019a08bf019b08c1019d08c2019e08c3019f08c401a108c401a208c501a408c501a508c501a608c401a708c401a908c401aa08c301ac08c201af08c001b108bd01b408bb01b708b801b908b501bb08b201bd08af01bf08ac01c108a901bd08a701bb08ab01ba08ad01b808ae01b708b001b508b201b408b301b208b501b108b601af08b701ae08b701ac08b701ac08b701ab08b701aa08b601aa08b501a908b501a908b401a808b201a708af01a608aa019c0882019f087e01a1087a01a3087701a5087301a8087101aa086e01ac086c01ad086b01af086901b1086801b3086801b4086701b5086701b7086801bb086901bd086a01be086a01c0086a01c1086a01c3086a01c5086901c7086901c8086701c9086601ca086501ca086301ca086101ca085f01c9085e01c8085c01c7085b01c6085a01c5085901c5085901c4085901c1085801bf085801bd085801bc085801ba085801b9085901b7085a01b4085c01b1085e01af086001ac086301a9086501a7086801a5086b019a087a019808720196086c0195086701930864019208610190085e018d085b018b08580107000000fc0201000000ff000000040000002d01010004000000f001030008000000fa020000010000000000ff00040000002d01030004000000f001000011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01000004000000f001020011000000fb02f4ff0000000000009001000000000000000048656c76657469636100040000002d01020004000000f001000004000000f001010004000000f001020004000000f0010300030000000000

2008 40.

40 CHECK ANSWER An animal population increases at the rate of 8 x^3 + 3 per year. What is the approximate increase in the animal population from the end of year 3 to the end of year 5?

A)4611

B)4621

C)23066

D)5399

> Increase:= Int(8*x^3 +3., x = 1 .. 4);

ans_42:=value(%);

2008 41.Records indicate that t hours past midnight, the temperature at the local airport was degrees Celsius. If the average temperature between 11 A.M. and 1 P.M. is 50 degrees C, what is k?

A)1.90

B)1.95

C)2.05

D)2.72

> f(t):= - 0.2* t^3 + k*t^2 + 5;

Int(f(t),t = 11 .. 13);

AVG:=(1/(13 -11)) *Int(f(t),t = 11 .. 13);

avg:= value(AVG);

ans_43:=solve(avg = 50,k);

2008 42.CHECK ANSWER Money is transferred continuously into an account at the constant rate of $1300 per year. The account earns interest at the annual rate of 7% compounded continuously. How much will be in the account at the end of 5 years?

Wrong Answer! -- None Correct

> FV:= Int(1300 * exp(.07 *(5 - t)),t = 0 .. 5);

ans_44:=value(FV);

2008 43.It is estimated that t days from now a farmers crop will be increasing at the rate of

bushels per day. By how much will the value of the crop increase

during the next 2 days if the market price remains fixed at $5

It is estimated that t days from now a farmers crop will be increasing at the rate

of 0.3t 2 + 0.6t +1 bushels per day. By how much will the value of the crop

increase during the next 2 days if the market price remains fixed at $5 per

bushel?

A) $10

B) $20

C) $45

D) $15

> INCREASE:= 4* Int(0.3*t^2 + 0.6*t + 1,t = 0..2);

ans_45:=value(%);

2008 44.Money is transferred continuously into an account at the constant rate of $1000 per year. Assume the account earns interest at the annual rate of 7% compounded continuously. Compute the future value of the income stream over a 14 year period.

A) 2244.8

B) 74826.58

C) 149653.15

D) 37413.29

> FV:= Int(1000 * exp(.07*(14 - t)), t = 0 .. 14);

ans_46:=value(FV);

2007 45 Domain is {(x,y) | x^2 + y^2 > 16}

> f(x,y):= x/sqrt(x^2 + y^2 - 16);solve(f(x,y)>0);

Warning, solutions may have been lost

2008 46

46. The monthly demand for product A is D1 = 50 -10x + y , while D2 = 20 + 3x -5y

is that for B. A sells for x dollars per item, B for y dollars per item. Express this

total monthly revenue as a function of x and y.

Revenue = x * D1 + y * D2

> R(x,y):= x* (50 -10*x + y) + y*(20 + 3*x -5*y);

simplify(%);

2008 48

Compute the indicated function value: if ( , )

t s

f s t

s t

= + , then f(6, –5) =

A) –2.03

B) 0.37

C) –1,830.00

D) –1.03

> f:=proc(s,t);

(t/s) + (s/t);

end proc;

`f(4,-1) `:=f(4,-1);

2008 48. SADDLE D < 0

48.Suppose z = f(x, y), , , , , and . Then (a, b) is

A)a relative minimum

B)a relative maximum

C)a saddle point

D)the test is inconclusive

> DISC:= 5*1 - 4^2;

2008 49. 49.Evaluate .

> Integral:= Int(5*x^3 - 3*x +4,x);

Answer:= int(5*x^3 - 3*x +4,x) + C;

2007 50

Find the function whose tangent line has the slope for each value of x and whose graph passes through (0, 2).

> F(x):= 2 + Int(exp(s),s=0 .. x);

f(x):= 2 + int(exp(s),s=0 .. x);`Answer y`:=simplify(%);

2008 51.

CHECK ANSWER AInn object is moving so that its velocity after t minutes is meters per minute. How far does the object travel from the end of minute 2 to the end of minute 3?

72 meters

131 meters

–67 meters

–47 meters

> ANS:= Int(5 + 8*t + 9*t^2,t= 5 .. 6);

ans:= int(5 + 8*t + 9*t^2,t= 5 .. 6);

2008 52.

> f(x):=x^3* (2*x +5 -3*sqrt(x));

ANS:= Int(f(x),x);

ans:= int(f(x),x) + C;

2008 53

> f(x):=1/(4*x);

ANS:= Int(f(x),x);

ans:= int(f(x),x) + C;

2007 54.

> f(x):=(x/3 - 9)^(2/3);

ANS:= Int(f(x),x);

ans:= int(f(x),x) + C;

2008 55.

> f(x):=7*exp(2*x);

ANS:= Int(f(x),x);

ans:= int(f(x),x) + C;

2008 56.

> f(x):=(3*x - 5)^4;

ANS:= Int(f(x),x = - 1 .. 3);

ans:= int(f(x),x= -1 .. 3);

evalf(%,6);

2008 57.

Suppose the marginal cost is C¢(x) = e-0.1x , where x is measured in units of 300

items and the cost is measured in units of $5,000. Find the cost corresponding

to the production interval [300, 1,800] .

A) $241

B) $72

C) $804

D) $158

> MC(x):= exp(-0.1*x);

5000*Int(MC(x),x= 1 .. 6);

ans:= value(%);

2008 58.

> Intf:= -7;

Intg:= 3;

ans:= Intf - Intg;

2008 59

> f(x,k):= x^3 - 3*x +k;

AVG:= (1/(5-1))*Int(f(x,k),x= 1 .. 5);

avg:= (1/(5-1))*int(f(x,k),x= 1 .. 5);

ans:=solve(avg = 50,k);

2007 60

Find the consumers surplus for a commodity whose demand function is

D(q) = 30e-0.03q dollars per unit if the market price is 0 p = $21 per unit. (Hint:

Find the quantity q0 that corresponds to the given price p0 = D(q0).)

A) $49.53

B) $49.81

C) $50.33

D) $53.41

> Dem:= proc(q);

30 * exp(-.03*q);

end proc;

CS:= q -> Int(Dem(s), s = 0 ..q ) - q*Dem(q);

q_0:= solve( Dem(q) = 21,q);

evalf(CS(q_0),2);

2008 61 CHECK ANSWER

> FV:Int(1100*exp(.06*(2 - t)),t = 0 .. 2);ans:=evalf(value(%),6);

2008 62

> FV:Int(1100*exp(.04*(14 - t)),t = 0 .. 14);ans:=evalf(value(%),6);

2007 63.

Demographic studies conducted in a certain city indicate that the fraction of the residents that will remain in the city for at least t years is . The current population of the city is 500,000, and it is estimated that new residents will be arriving at the rate of 1,000 people per year. Assuming this estimate is correct, give an expression for the population as a function of t.

From the original 500 (thousand), 500e^(-.02T), At time 0 < t < T to time t + dt, 1 dt arrive, and e^(-.02(T-t)dt remain after T years.

> FP_thousand(T):= 500 * exp(-.02*T) + Int(1* exp(-.02*(T - t)), t = 0 ..T);

value(%);ans_47(T):=simplify(%);

2008 64

2007 61.

NO RIGHT ANSWER

Money is transferred continuously into an account at the constant rate of $900

per year. The account earns interest at the annual rate of 6% compounded

continuously. How much will be in the account at the end of 5 years?

A) $2,023.79

B) $301,282.05

C) $20,246.88

D) $4,500

> ANS:= Int(900 * exp(.06*(5 - t)), t = 0 ..5);

ans:= value(%);

2007 62

Money is transferred continuously into an account at the constant rate of $1,700

per year. Assume the account earns interest at the annual rate of 4%

compounded continuously. Compute the future value of the income stream over

a 10 year period.

A) $836.1

B) $41,805.1

C) $83,610.2

D) $20,902.55

> ANS:= Int(1700 * exp(.04*(10 - t)), t = 0 ..10);

ans:= value(%);

2008 Problem 63..

Fix T. Of the original 500,000 there will remain 500000exp(-T/50).

Between t and t + dt, 1000 dt will arrive; of these 1000 dt exp(-(T-t)/50 will remain.

Let FP be the "future poulation" at time T from the "stream" arriving.

> FP:= proc(T);

Int(1000*exp(-(T - t)/50),t = 0 ..T);

end proc;

`FP(T) `:=FP(T);value(%);

`Total Population `:= 500000*exp(-T/50) + value(FP(T));

2008 Problem64

> f_64:=proc(x,y);

7 * x *y^8;

end proc:

`f_64(x,y) `:=f_64(x,y);

ans_64:=diff(f_64(x,y),x);

2008 Problem 65 - See hoffmannchap7 Problem 17

Problem 17 -- I won't use x since assigning `x` would require correction bfore proceeding to other problems.

> Z:=proc(X,Y);

9*X - 8*Y;

end proc:

`Z `:=Z(X,Y);

> X:=proc(t);

t^3;

end proc:

`X `:=X(t);

> Y:=proc(t);

11*t;

end proc:

`Y `:=Y(t); `

> `Answer_17 `:=

diff(Z(X(t),Y(t)),t);

> `Solution `:=Eval(diff(Z(x,y),x),{X=X(t),Y=Y(t)})*Diff(X(t),t)+

Eval(diff(Z(x,y),y),{X=X(t),Y=Y(t)})*Diff(Y(t),t);

`Or, as we said `:=value(%);

Problem 66 is the same as hoffmann Problem 18

N.B. Numbers don't make much sense. Note that you start with negative profit!

18.A mall kiosk sells two different models of pagers, the Elite and the Diamond. Their monthly profit from pager sales is where x and y are the prices of the Elite and the Diamond respectively, in dollars. At the moment, the Elite sells for $32 and the Diamond sells for $40. Use calculus to estimate the change in monthly profit if the kiosk operator raises the price of the Elite to $33 and lowers the price of the Diamond to $38.

A)Profit will increase by about $26.

B)Profit will decrease by about $310.

C)Profit will increase by about $194.

D)Profit will stay the same.

> P:=proc(x,y);

(x - 40)*(20 - 5*x +6*y)

+ (y - 50) * (30 + 3*x - 4*y);

end proc:

`P(x,y) `:=P(x,y);

`P(32,40) `:=P(32,40);

P_x:=proc(x,y);

diff(P(x,y),x);

end proc:

`P_x `:=P_x(x,y);

P_y:=proc(x,y);

diff(P(x,y),y);

end proc:

`P_y `:=P_y(x,y);

`dP `:=Eval(P_x(x,y),{x=32,y=40})*1 + Eval(P_y(x,y),{x=32,y=40})*(-2);

Answer_18:=value(%);

2008 67. D>0 f_xx < 0 RELATIVE MAXIMUM

> D:= (-5)*(-2) - (-3)^2;

2008 68. x^2 - y = -6 or y = x^2 + 6 is a parabola.

2008 69 hoffmannchap7.mw

2008 hoffmannchap7.mw

Answer Key

1.A

2.D

3.A

4.B

5.A

6.A

7.D

8.B

9.A

10.A

11.A

12.A

13.C

14.B

15.A

16.A

17.A

18.C

19.A

20.B

21.B

22.B

23.A

24.B

25.B

26.C

27.B

28.A

29.B

30.A

31.D

32.A

33.A

34.C

35.B

36.A

37.A

38.A

39.C

40.B

41.D

42.C

43.B

44.D

45.

46.

47.A

48.A

49.A

50.B

51.A

52.D

53.A

54.C

55.B

56.C

57.C

58.A

59.D

60.C

61.C

62.D

63.D

64.A

65.B

66.C

67.C

68.A

69.B

70.1.2