Carson Witt
PreCalculusBC_Projects / Project Three - Projectile Motion-graded / p3_parametic_projectile_feedback.tex
2061 views%%%%%%1%2% PROJECT 33%4% filename: p3_parametric_projectile.tex5% last modified: 2016-11-306%7%%%%%%%8%9%10%%%%%%%1112\documentclass13[justified,nohyper]14{tufte-handout}1516\usepackage{amsmath}1718\usepackage{booktabs}19\usepackage{graphicx}20\usepackage{kmath,kerkis} % The order of the packages matters; kmath changes the default text font21\usepackage[T1]{fontenc}2223\usepackage{enumitem}242526% USEFUL SHORTCUTS FOR MATH27\newcommand{\ds}{\displaystyle}2829\newcommand{\dt}[1]{\dfrac{d#1}{dt}}3031\newcommand{\lp}{\left(}32\newcommand{\rp}{\right)}33\newcommand{\lb}{\left[}34\newcommand{\rb}{\right]}3536\newcommand{\evalat}{\biggr\rvert}373839%% ADDED PREAMBLE40\usepackage{todonotes}41\usepackage[displaymath, mathlines]{lineno}42\usepackage{hyperref}43\usepackage{pagecolor}44\usepackage{tabularx}4546\newcommand{\sg}[1]{\todo[color=red!40,fancyline]{#1}}47\newcommand{\good}[1]{\todo[color=blue!40,fancyline]{#1}}48\newcommand{\comm}[1]{\todo[color=orange!40,fancyline]{#1}}49%%505152\begin{document}5354%% ADDED FEEDBACK55\pagecolor{yellow!30!white}56\mbox{\LARGE Projectile Motion }\hfill NAME5758\vspace{1cm}5960\hrule6162\vspace{1cm}6364Grade:6566\vspace{1cm}6768\begin{tabularx}{15cm}{ |p{6cm} | p{8cm}|}69\hline70Part 1 Explanation &7172\\73\hline74Graph pt. 1 in figure env, caption, label, ref &7576\\77\hline78Part 2 Explanation &7980\\81\hline82Graph pt. 2 in figure env, caption, label, ref &8384\\85\hline86$t$-values for both parametric equations before and after collision &8788\\89\hline90Extension &9192\\93\hline94Proper formatting &9596\\97\hline98Spacing mistakes &99100\\101\hline102\end{tabularx}103104\newpage105106\listoftodos[List of Comments]107108\newpage109110\maketitle111112\linenumbers113\pagecolor{white}114%%115116\begin{fullwidth}117\mbox{\LARGE PreCalculus BC: Project Three - \today }\hfill118\end{fullwidth}119\section*{Introduction}120121As we have seen, parametric equations can be powerful tools in describing122a variety of curves in two-dimensional space. One example of this power123is in describing the path of a projectile. At any moment124in time, the position of the projectile, $P$, is given by125$$126P: \begin{cases}127x &= f(t) \\128y &= g(t)129\end{cases}130$$131where $f$ and $g$ are functions of $t$.132133There are two parts to this project. In the first part, you will develop134parametric equations that describe the flight of a simple cannonball that135is launched from some angle $\theta$ with respect to the horizontal.136In the second part, you will develop137parametric equations that describe the flight of the same cannonball which is138launched under the same condtions, but with a bounce off a wall that is located139a distance of $d$ meters away from the launch site.140141\section*{Part One -- The Cannonball}142143Modeling motion is one of the most important ideas in both classical and modern144physics. Much of Isaac Newton's work dealt with creating a mathematical model145for how objects move and interact -- this was the main reason of his invention146of the Calculus. Albert Einstein developed his Special Theory of Relativity in the147early 1900s to refine Newton's laws of motion.148149We will use coordinate geometry to model the motion of a projectile, such150as a cannonball fired upward into the air. Suppose we fire a projectile151into the air from ground level, with an intial speed of $v_0$ meters per second152and an angle $\theta$, measured in radians,153upward from the ground. If there were no gravity and no air resistance, the projectile154would just keep moving indefinitely at the same speed and in the same direction.155Since distance equals speed times time, the projectile would travel a distance156of $v_0t$, so its position, $P$, at time $t$ would be given by the following157parametric equations.158159$$160P: \begin{cases}161x &= (v_0 \cos \theta)t \\162y &= (v_0 \sin \theta)t163\end{cases}164$$165166But, of course, we know that gravity will pull the projectile back to ground167level. Your task in part one is to modify the parametric equation given above168to account for the effects of gravity. In this part, please use $g=-9.8$ meters169per second per second as the gravitational constant. Be sure to completely170describe the development of your new model and include an example graph171showing the position over time of the projectile. This will require that you172plot a parametric equation in SAGE, and we will do this in class.173174\section*{Part Two -- The Bounce}175176After launching the cannonball at an angle of $\theta$ with respect to the ground,177it will collide with a wall. You will need to consider a few things.178First, depending on $\theta$, the179cannonball might not even make it to the wall that is a distance of $d$ meters180away. Second, you can assume that the wall is infinitely tall, which means181you would never be able to fire the cannonball over the wall. Third, you can182assume the collision is purely elastic -- which means no energy is lost183in the impact.184185Your goal will be to determine a second parametric equation that describes the186flight of the cannonball after the collision. The final result will be two187parametric equations. One for before the collision and one for after the collision.188You must also supply the $t$-values for each of these two parametric equations,189which will indicate how long the cannonball is in flight.190191\section*{What I will be looking for in your report}192193\begin{itemize}194\item Have you justified and explained the derivation of the parametric195equation in Part 1?196\item Do you have the appropriate graph of the parametric equation in Part 1197and is it contained in a figure environment with a caption and referenced198in the text of your report?199\item Have you justified and explained the derivation of the parametric200equation in Part 2?201\item Do you have the appropriate graph of the parametric equation in Part 2202and is it contained in a figure environment with a caption and referenced203in the text of your report? This may include the results that we will discuss204in class about how to handle elastic collisions.205\item Do you have the correct values for $t$ in both parametric equations,206representing what happens before and after the collision.207\item Have you considered at least one potential extension of the ideas208used in this project and described their potential usefulness.209\item Does your report use equation formatting properly? All variables210and equations should be correctly typeset.211\item There should be no spacing mistakes. For example, in this212sentence I have not placed a space after the period.This is bad.213\end{itemize}214215\end{document}216217218219