BBBBBBB
Next: About this document ...
Up: No Title
Previous: More on fsolve
Mount Suluclac, which is really just a hill, may be
defined by the function
y=h(x) = -0.0001x4 + 0.019x3 - 1.17x2 + 27x
for . Here x is the horizontal distance in metres
from the western base of the hill and y is the height of the hill
also measured in metres.
An orchard grows to the west of Mount Sulucalc, spanning the region from
x = -60 to x=0.
Once h(x) is defined, enter the following lines in Maple V to get a picture of the hill and the orchard.
> p1 := plot(h,0..100,color='brown',thickness=2): > p2 := plot(0,-60..0,color='khaki',thickness=5): > display([p1,p2]);
You will investigate how much sun and shade the orchard and
Mount Suluclac receive on an average sunny day.
Use the following simplified description of the movement of the sun.
The sun travels in a circular orbit centered at the origin, and passes
directly overhead. At 6 a.m. the sun is positioned
on the positive x-axis (), and at 6 p.m. the sun is on
the negative x-axis (
). Here
is defined
as the angle between the line connecting the origin to the sun
and the positive x-axis. Since the sun is at a considerable distance
from the earth and Mount Suluclac, its light arrives as parallel rays
at angle
to the positive x-axis.
Enter the following lines in Maple V to see the hill, the orchard and three rays of sunshine at 3 o'clock in the afternoon.
> p3 := plot(-x,x=-70..-10,color='tan',thickness=2): > p4 := plot(-x+200,x=-70..10,color='tan',thickness=2): > p5 := plot(-x+400,x=-70..120,color='tan',thickness=2): > display([p1,p2,p3,p4,p5]);
Answer the questions below, discussing fully the strategy and procedure you use in obtaining the solutions.
> s1:=plot([[-27,0],[-26,0]], color='red', thickness=6): > display([p1,p2,s1]);(The command draws strawberries from x=-27 to x=-26 so that they will show up on the plot. However, you should treat the strawberry patch as a single point in the following exercise.)
To obtain superior strawberries, the patch can receive no more than a certain number of hours of sunlight each day. Assuming that the patch has been positioned at x=-27 so that the strawberries receive the maximum recommended daily allowance of sun, find this recommended amount.
Christine M Palmer