Kinematics 2 Problem Solutions
Each solution provided below is not necessarily the only possible solution. If a solution differs greatly from yours, copy and paste it from your browser to your Maple worksheet, then execute it and see if the final answers differ. Quick access to the solutions of problems (2a), (2b), (3) , (4a), (4b), (4c), and (4d). (1a) .41 m Place the origin at the tip of the arrow as it leaves the bow 40 m from the target. restart; (1b) t:= 't'; Note that the following two expressions are functions of t, and that as t varies they generate the all the x and y-positions of the arrow. > rhs(x_pos);
> rhs(y_pos);
> plot([rhs(x_pos), rhs(y_pos), t=0..4/14], labels=["x","y], title= `Robin Hood's Arrow`); plot will not plot equations, only functions of variables. To learn how to plot equations see ?implicitplot.
After executing this plot, place scaling = constrained into the list of plot arguments and execute the plot again. This illustrates how you often need to try different types of plots and different parameters to achieve the best plot for a given situation. In this case scaling = constrained is a detriment.
(2a) 77.5 m/s The solution to this problem involves solving a set of four equations in four unknowns. Depending on your approach, the solution process might be real ugly or rather straight forward. This is true whether solving it by hand or with Maple. The solution process involves making a series of substitutions that eliminate the number of equations and variables until you arrive at one equation in one unknown. In theory you may make substitutions in any order you like, but for the cleanest solution the idea is to make substitutions in an order that produces the simplest expressions later on. Learning the pitfalls of different approaches to solving large sets of equations is a matter of trial and error. The launch speed, v, is the magnitude of the vector sum of the restart; Assume that both sides of the canyon are the same height, and place the origin of the coordinate system at the point of launch. Then y[i] := 0; Using Maple's full evaluation to produce substitutions for t := solve(x_pos, t);
v := 77.5; Note that the following two expressions are functions of t, and that as t varies from 0..14 s they generate the all the x and y-positions of Danger Dana during her flight across the canyon. > rhs(x_pos);
> rhs(y_pos);
> plot([rhs(x_pos),rhs(y_pos),t=0..14], labels=["x","y], scaling=constrained, title=`Danger Dana's Canyon Jump`); plot will not plot equations, only functions of variables. To learn how to plot equations see ?implicitplot.
(3) 58 degrees above the horizontal at an initial speed of 23 m/s. A set of equations similar to those that solved problem (2) develop in this solution, also. Place the origin of the coordinate axes at the point the football leaves the punter's foot. Then restart; Now convert the radian angle to degrees: evalf( 7.289713445 * 180/Pi ); The plot: theta := 7.289713445;
Notice that the football reaches 50 m along the x-axis just below the x-axis in this coordinate system. Why?
(4a) .09 s and 3.95 s . restart; (4b) 2.49 m and 105.71 m v[x] := evalf(33.55*cos(37*(Pi/180)));
(4c) No, the ball is about 1 m short along the x-axis. For a home run it needs to be at a height of 3.05 m at any x-position greater than 106.75 m.
> plot([rhs(x_pos),rhs(y_pos),t=(.1)..(4.5)], labels=["x","y"], scaling=constrained, title=`A Little Short`);
Kinematics 2 Top Newton's 2nd Law of Motion Tutorial Index Maple Index How to... Problem Set Index
|