SE111 homework assigned Week 5 block 5 by Dr. Rickert. Due Monday, October 11, 1999 by 5PM.

Problem 1

Determine the projection of the vector 4 i + 3 j onto the vector -6 i + 3 j .

> restart;

> with(linalg):

Warning, new definition for norm

Warning, new definition for trace

> A := vector([4,3]): B := vector([-6,3]):

> Am := sqrt(dotprod(A,A)); Bm := sqrt(dotprod(B,B));

[Maple Math]

[Maple Math]

> projab := evalm((dotprod(B,A)/Bm)*(B/Bm));

[Maple Math]

>

Problem 2

A mass of 10kg is placed on an incline of [Maple Math] /7. The amount of force required to keep the object from sliding down the incline is the size of the projection of the force vector (weight of the object pointing in the direction of gravitational attraction) onto the incline (find a vector parallel to this direction). Determine how much force is required to keep the mass from sliding down the incline.

> restart:

> with(linalg):

Warning, new definition for norm

Warning, new definition for trace

> fvec := vector([0,98]);

[Maple Math]

> pvec := vector([(30*cos(Pi/7)),(30*sin(Pi/7))]);

[Maple Math]

> fvecM := sqrt(dotprod(fvec,fvec));

[Maple Math]

> pvecM := sqrt(dotprod(pvec,pvec));

[Maple Math]

> projection := evalm((dotprod(pvec,fvec)/pvecM)*(pvec/pvecM));

[Maple Math]

> size := evalf(evalm(sqrt(dotprod(projection,projection))));

[Maple Math]

>

>

Problem 3

A ball is hit (still in a vacuum) at an initial height of 1 meter, with an initial speed of 40 meter per second and angle of inclination of [Maple Math] /6. Assume that the only force acting on the ball is that of gravity (downward at 9.81 m/s/s). The fence is 440 feet away and is 5 meters high. Determine whether the ball clears the wall.

> sty:=-4.9*t^2+(40*cos(Pi/6))*t+1;

>

[Maple Math]

> stx:=t->(40*sin(Pi/6))*t;

[Maple Math]

> sol1 := solve(sty=4,t);

[Maple Math]

The first time is on the way up and out, we want to analyze the ball as it comes down towards the wall, so ignore the first solution.

> stx(sol1[2]);

[Maple Math]

> evalf((((440*12)*2.2)/100));

[Maple Math]

When the ball is at a height of 5 meters, the ball has traveled 140 meters, the wall is only 116 meters away. So, yes, it clears the wall.

Problem 4

A ball is hit at a height of 1.8 meters with an intial velocity of 29.43 meters per second and angle of elevation of [Maple Math] /3. The ball is hit towards an outfielder standing 88.29 meters from the point of impact. The outfielder eyes are 1.8 meters above the ground.
Relative to the outfielder's eyes, the ball is an some angle of elevation
[Maple Math] , where the angle [Maple Math] is a function of the time since the impact. Determine the function [Maple Math] in simplest form.

(hint: what is [Maple Math] ?)

> restart:

> with(linalg):

Warning, new definition for norm

Warning, new definition for trace

> xt:=29.43*cos(Pi/3)*t;

[Maple Math]

> yt:=-4.905*t^2+29.43*sin(Pi/3)*t;

[Maple Math]

> theta := arctan(yt/(88.29-xt));

[Maple Math]

>

Problem 5

A planet orbits a star in a circular orbit with a period of 1 year at a distance of 130 million kilometers.
Write a parametric (vector) representation describing the planet's motion relative to the fixed star.

> restart:

> with(linalg):

Warning, new definition for norm

Warning, new definition for trace

> pxt:=(130*cos(2*Pi*t));

[Maple Math]

> pyt:=(130*sin(2*Pi*t));

[Maple Math]

> plot([pxt,pyt,t=0..1]);

[Maple Plot]

>

Problem 6

A moon orbits the planet of Problem 5 with a period of 1/27.2 years at a distance of 10 million kilometers. Write a parametric (vector) representation describing the moon's motion relative to the fixed star.

> mxt:=10*cos((2*Pi)*27.2*t);

[Maple Math]

> myt:=10*sin((2*Pi)*27.2*t);

[Maple Math]

> plot([mxt,myt,t=0..1/27.2]);

[Maple Plot]

> plot([(mxt+pxt),(myt+pyt),t=0..1],scaling=constrained);

[Maple Plot]

>

>

>

>

>