Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Carson Witt

2061 views
1
%%%%%%
2
%
3
% PROJECT 3
4
%
5
% filename: p3_parametric_projectile.tex
6
% last modified: 2016-11-30
7
%
8
%%%%%%%
9
%
10
%
11
%%%%%%%
12
13
\documentclass
14
[justified,nohyper]
15
{tufte-handout}
16
17
\usepackage{amsmath}
18
19
\usepackage{booktabs}
20
\usepackage{graphicx}
21
\usepackage{kmath,kerkis} % The order of the packages matters; kmath changes the default text font
22
\usepackage[T1]{fontenc}
23
24
\usepackage{enumitem}
25
26
27
% USEFUL SHORTCUTS FOR MATH
28
\newcommand{\ds}{\displaystyle}
29
30
\newcommand{\dt}[1]{\dfrac{d#1}{dt}}
31
32
\newcommand{\lp}{\left(}
33
\newcommand{\rp}{\right)}
34
\newcommand{\lb}{\left[}
35
\newcommand{\rb}{\right]}
36
37
\newcommand{\evalat}{\biggr\rvert}
38
39
\begin{document}
40
\begin{fullwidth}
41
\mbox{\LARGE PreCalculus BC: Project Three - \today }\hfill
42
\end{fullwidth}
43
\section*{Introduction}
44
45
As we have seen, parametric equations can be powerful tools in describing
46
a variety of curves in two-dimensional space. One example of this power
47
is in describing the path of a projectile. At any moment
48
in time, the position of the projectile, $P$, is given by
49
$$
50
P: \begin{cases}
51
x &= f(t) \\
52
y &= g(t)
53
\end{cases}
54
$$
55
where $f$ and $g$ are functions of $t$.
56
57
There are two parts to this project. In the first part, you will develop
58
parametric equations that describe the flight of a simple cannonball that
59
is launched from some angle $\theta$ with respect to the horizontal.
60
In the second part, you will develop
61
parametric equations that describe the flight of the same cannonball which is
62
launched under the same condtions, but with a bounce off a wall that is located
63
a distance of $d$ meters away from the launch site.
64
65
\section*{Part One -- The Cannonball}
66
67
Modeling motion is one of the most important ideas in both classical and modern
68
physics. Much of Isaac Newton's work dealt with creating a mathematical model
69
for how objects move and interact -- this was the main reason of his invention
70
of the Calculus. Albert Einstein developed his Special Theory of Relativity in the
71
early 1900s to refine Newton's laws of motion.
72
73
We will use coordinate geometry to model the motion of a projectile, such
74
as a cannonball fired upward into the air. Suppose we fire a projectile
75
into the air from ground level, with an intial speed of $v_0$ meters per second
76
and an angle $\theta$, measured in radians,
77
upward from the ground. If there were no gravity and no air resistance, the projectile
78
would just keep moving indefinitely at the same speed and in the same direction.
79
Since distance equals speed times time, the projectile would travel a distance
80
of $v_0t$, so its position, $P$, at time $t$ would be given by the following
81
parametric equations.
82
83
$$
84
P: \begin{cases}
85
x &= (v_0 \cos \theta)t \\
86
y &= (v_0 \sin \theta)t
87
\end{cases}
88
$$
89
90
But, of course, we know that gravity will pull the projectile back to ground
91
level. Your task in part one is to modify the parametric equation given above
92
to account for the effects of gravity. In this part, please use $g=-9.8$ meters
93
per second per second as the gravitational constant. Be sure to completely
94
describe the development of your new model and include an example graph
95
showing the position over time of the projectile. This will require that you
96
plot a parametric equation in SAGE, and we will do this in class.
97
98
\section*{Part Two -- The Bounce}
99
100
After launching the cannonball at an angle of $\theta$ with respect to the ground,
101
it will collide with a wall. You will need to consider a few things.
102
First, depending on $\theta$, the
103
cannonball might not even make it to the wall that is a distance of $d$ meters
104
away. Second, you can assume that the wall is infinitely tall, which means
105
you would never be able to fire the cannonball over the wall. Third, you can
106
assume the collision is purely elastic -- which means no energy is lost
107
in the impact.
108
109
Your goal will be to determine a second parametric equation that describes the
110
flight of the cannonball after the collision. The final result will be two
111
parametric equations. One for before the collision and one for after the collision.
112
You must also supply the $t$-values for each of these two parametric equations,
113
which will indicate how long the cannonball is in flight.
114
115
\section*{What I will be looking for in your report}
116
117
\begin{itemize}
118
\item Have you justified and explained the derivation of the parametric
119
equation in Part 1?
120
\item Do you have the appropriate graph of the parametric equation in Part 1
121
and is it contained in a figure environment with a caption and referenced
122
in the text of your report?
123
\item Have you justified and explained the derivation of the parametric
124
equation in Part 2?
125
\item Do you have the appropriate graph of the parametric equation in Part 2
126
and is it contained in a figure environment with a caption and referenced
127
in the text of your report? This may include the results that we will discuss
128
in class about how to handle elastic collisions.
129
\item Do you have the correct values for $t$ in both parametric equations,
130
representing what happens before and after the collision.
131
\item Have you considered at least one potential extension of the ideas
132
used in this project and described their potential usefulness.
133
\item Does your report use equation formatting properly? All variables
134
and equations should be correctly typeset.
135
\item There should be no spacing mistakes. For example, in this
136
sentence I have not placed a space after the period.This is bad.
137
\end{itemize}
138
139
\end{document}
140
141
142