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
40
%% ADDED PREAMBLE
41
\usepackage{todonotes}
42
\usepackage[displaymath, mathlines]{lineno}
43
\usepackage{hyperref}
44
\usepackage{pagecolor}
45
\usepackage{tabularx}
46
47
\newcommand{\sg}[1]{\todo[color=red!40,fancyline]{#1}}
48
\newcommand{\good}[1]{\todo[color=blue!40,fancyline]{#1}}
49
\newcommand{\comm}[1]{\todo[color=orange!40,fancyline]{#1}}
50
%%
51
52
53
\begin{document}
54
55
%% ADDED FEEDBACK
56
\pagecolor{yellow!30!white}
57
\mbox{\LARGE Projectile Motion }\hfill NAME
58
59
\vspace{1cm}
60
61
\hrule
62
63
\vspace{1cm}
64
65
Grade:
66
67
\vspace{1cm}
68
69
\begin{tabularx}{15cm}{ |p{6cm} | p{8cm}|}
70
\hline
71
Part 1 Explanation &
72
73
\\
74
\hline
75
Graph pt. 1 in figure env, caption, label, ref &
76
77
\\
78
\hline
79
Part 2 Explanation &
80
81
\\
82
\hline
83
Graph pt. 2 in figure env, caption, label, ref &
84
85
\\
86
\hline
87
$t$-values for both parametric equations before and after collision &
88
89
\\
90
\hline
91
Extension &
92
93
\\
94
\hline
95
Proper formatting &
96
97
\\
98
\hline
99
Spacing mistakes &
100
101
\\
102
\hline
103
\end{tabularx}
104
105
\newpage
106
107
\listoftodos[List of Comments]
108
109
\newpage
110
111
\maketitle
112
113
\linenumbers
114
\pagecolor{white}
115
%%
116
117
\begin{fullwidth}
118
\mbox{\LARGE PreCalculus BC: Project Three - \today }\hfill
119
\end{fullwidth}
120
\section*{Introduction}
121
122
As we have seen, parametric equations can be powerful tools in describing
123
a variety of curves in two-dimensional space. One example of this power
124
is in describing the path of a projectile. At any moment
125
in time, the position of the projectile, $P$, is given by
126
$$
127
P: \begin{cases}
128
x &= f(t) \\
129
y &= g(t)
130
\end{cases}
131
$$
132
where $f$ and $g$ are functions of $t$.
133
134
There are two parts to this project. In the first part, you will develop
135
parametric equations that describe the flight of a simple cannonball that
136
is launched from some angle $\theta$ with respect to the horizontal.
137
In the second part, you will develop
138
parametric equations that describe the flight of the same cannonball which is
139
launched under the same condtions, but with a bounce off a wall that is located
140
a distance of $d$ meters away from the launch site.
141
142
\section*{Part One -- The Cannonball}
143
144
Modeling motion is one of the most important ideas in both classical and modern
145
physics. Much of Isaac Newton's work dealt with creating a mathematical model
146
for how objects move and interact -- this was the main reason of his invention
147
of the Calculus. Albert Einstein developed his Special Theory of Relativity in the
148
early 1900s to refine Newton's laws of motion.
149
150
We will use coordinate geometry to model the motion of a projectile, such
151
as a cannonball fired upward into the air. Suppose we fire a projectile
152
into the air from ground level, with an intial speed of $v_0$ meters per second
153
and an angle $\theta$, measured in radians,
154
upward from the ground. If there were no gravity and no air resistance, the projectile
155
would just keep moving indefinitely at the same speed and in the same direction.
156
Since distance equals speed times time, the projectile would travel a distance
157
of $v_0t$, so its position, $P$, at time $t$ would be given by the following
158
parametric equations.
159
160
$$
161
P: \begin{cases}
162
x &= (v_0 \cos \theta)t \\
163
y &= (v_0 \sin \theta)t
164
\end{cases}
165
$$
166
167
But, of course, we know that gravity will pull the projectile back to ground
168
level. Your task in part one is to modify the parametric equation given above
169
to account for the effects of gravity. In this part, please use $g=-9.8$ meters
170
per second per second as the gravitational constant. Be sure to completely
171
describe the development of your new model and include an example graph
172
showing the position over time of the projectile. This will require that you
173
plot a parametric equation in SAGE, and we will do this in class.
174
175
\section*{Part Two -- The Bounce}
176
177
After launching the cannonball at an angle of $\theta$ with respect to the ground,
178
it will collide with a wall. You will need to consider a few things.
179
First, depending on $\theta$, the
180
cannonball might not even make it to the wall that is a distance of $d$ meters
181
away. Second, you can assume that the wall is infinitely tall, which means
182
you would never be able to fire the cannonball over the wall. Third, you can
183
assume the collision is purely elastic -- which means no energy is lost
184
in the impact.
185
186
Your goal will be to determine a second parametric equation that describes the
187
flight of the cannonball after the collision. The final result will be two
188
parametric equations. One for before the collision and one for after the collision.
189
You must also supply the $t$-values for each of these two parametric equations,
190
which will indicate how long the cannonball is in flight.
191
192
\section*{What I will be looking for in your report}
193
194
\begin{itemize}
195
\item Have you justified and explained the derivation of the parametric
196
equation in Part 1?
197
\item Do you have the appropriate graph of the parametric equation in Part 1
198
and is it contained in a figure environment with a caption and referenced
199
in the text of your report?
200
\item Have you justified and explained the derivation of the parametric
201
equation in Part 2?
202
\item Do you have the appropriate graph of the parametric equation in Part 2
203
and is it contained in a figure environment with a caption and referenced
204
in the text of your report? This may include the results that we will discuss
205
in class about how to handle elastic collisions.
206
\item Do you have the correct values for $t$ in both parametric equations,
207
representing what happens before and after the collision.
208
\item Have you considered at least one potential extension of the ideas
209
used in this project and described their potential usefulness.
210
\item Does your report use equation formatting properly? All variables
211
and equations should be correctly typeset.
212
\item There should be no spacing mistakes. For example, in this
213
sentence I have not placed a space after the period.This is bad.
214
\end{itemize}
215
216
\end{document}
217
218
219