Carson Witt
%%%%%%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}3738\begin{document}39\begin{fullwidth}40\mbox{\LARGE PreCalculus BC: Project Three - \today }\hfill41\end{fullwidth}42\section*{Introduction}4344As we have seen, parametric equations can be powerful tools in describing45a variety of curves in two-dimensional space. One example of this power46is in describing the path of a projectile. At any moment47in time, the position of the projectile, $P$, is given by48$$49P: \begin{cases}50x &= f(t) \\51y &= g(t)52\end{cases}53$$54where $f$ and $g$ are functions of $t$.5556There are two parts to this project. In the first part, you will develop57parametric equations that describe the flight of a simple cannonball that58is launched from some angle $\theta$ with respect to the horizontal.59In the second part, you will develop60parametric equations that describe the flight of the same cannonball which is61launched under the same condtions, but with a bounce off a wall that is located62a distance of $d$ meters away from the launch site.6364\section*{Part One -- The Cannonball}6566Modeling motion is one of the most important ideas in both classical and modern67physics. Much of Isaac Newton's work dealt with creating a mathematical model68for how objects move and interact -- this was the main reason of his invention69of the Calculus. Albert Einstein developed his Special Theory of Relativity in the70early 1900s to refine Newton's laws of motion.7172We will use coordinate geometry to model the motion of a projectile, such73as a cannonball fired upward into the air. Suppose we fire a projectile74into the air from ground level, with an intial speed of $v_0$ meters per second75and an angle $\theta$, measured in radians,76upward from the ground. If there were no gravity and no air resistance, the projectile77would just keep moving indefinitely at the same speed and in the same direction.78Since distance equals speed times time, the projectile would travel a distance79of $v_0t$, so its position, $P$, at time $t$ would be given by the following80parametric equations.8182$$83P: \begin{cases}84x &= (v_0 \cos \theta)t \\85y &= (v_0 \sin \theta)t86\end{cases}87$$8889But, of course, we know that gravity will pull the projectile back to ground90level. Your task in part one is to modify the parametric equation given above91to account for the effects of gravity. In this part, please use $g=-9.8$ meters92per second per second as the gravitational constant. Be sure to completely93describe the development of your new model and include an example graph94showing the position over time of the projectile. This will require that you95plot a parametric equation in SAGE, and we will do this in class.9697\section*{Part Two -- The Bounce}9899After launching the cannonball at an angle of $\theta$ with respect to the ground,100it will collide with a wall. You will need to consider a few things.101First, depending on $\theta$, the102cannonball might not even make it to the wall that is a distance of $d$ meters103away. Second, you can assume that the wall is infinitely tall, which means104you would never be able to fire the cannonball over the wall. Third, you can105assume the collision is purely elastic -- which means no energy is lost106in the impact.107108Your goal will be to determine a second parametric equation that describes the109flight of the cannonball after the collision. The final result will be two110parametric equations. One for before the collision and one for after the collision.111You must also supply the $t$-values for each of these two parametric equations,112which will indicate how long the cannonball is in flight.113114\section*{What I will be looking for in your report}115116\begin{itemize}117\item Have you justified and explained the derivation of the parametric118equation in Part 1?119\item Do you have the appropriate graph of the parametric equation in Part 1120and is it contained in a figure environment with a caption and referenced121in the text of your report?122\item Have you justified and explained the derivation of the parametric123equation in Part 2?124\item Do you have the appropriate graph of the parametric equation in Part 2125and is it contained in a figure environment with a caption and referenced126in the text of your report? This may include the results that we will discuss127in class about how to handle elastic collisions.128\item Do you have the correct values for $t$ in both parametric equations,129representing what happens before and after the collision.130\item Have you considered at least one potential extension of the ideas131used in this project and described their potential usefulness.132\item Does your report use equation formatting properly? All variables133and equations should be correctly typeset.134\item There should be no spacing mistakes. For example, in this135sentence I have not placed a space after the period.This is bad.136\end{itemize}137138\end{document}139140141142