Carson Witt
%%%%%%1%2% PROJECT 13%4% filename: p1_intro_project.tex5% last modified: 2016-8-296%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 One - \today }\hfill41\end{fullwidth}42\section*{Introduction}4344In this first project in PreCalculus BC, we won't be looking at a45particularly difficult math problem. Instead, the focus should be46on getting comfortable with the new tools used to create these47projects.4849Here is the problem we will be solving.5051\begin{quote}52A gardener has 140 feet of fencing to fence in a rectangular53vegetable garden. Find a function that models the area of the54garden she can fence. For what range of widths is the area55greater than 825 square feet? Can she fence a garden with area561250 square feet? Find the dimensions of the largest area she57can fence.58\end{quote}5960\section*{The Process}6162\subsection*{Explore the Problem}63The first step in the process of solving and writing a report about64this problem is to actually solve the problem and65\textbf{explore the problem space}. What does this mean? Here are66a few things for you think about.6768\begin{itemize}69\item What questions have been asked directly in the problem?70\item What are the answers to those direct questions?71\item In the process of finding those answers, what other72questions came into your mind?73\item In what ways could the problem be generalized or extended74beyond what was stated? Would those extensions be useful?75\end{itemize}7677\subsection*{Example Problem}78Here is a short example to give you an idea about what exploring the79problem means. Suppose that you are in charge of designing a dating website's80algorithm for determining whether two people are compatible. For each person81that is registered on the site, a software engineer has written an82algorithm that provides you with a rectangle representing that person's83character and personality. This rectangle has a length and a width along84with the coordinates of the lower-left corner.8586Each person's rectangle is plotted on a normal 2D plane such as the $xy$-axis.87For any two people, there are three possibilities. First, their rectangles could88have no overlap. Second, their rectangles89could overlap a little bit. Third, their rectangles could be identical in which90case they would completely overlap.9192Your job is to take the information for each rectangle and write an algorithm93that determines the amount of overlap and interpret that as how compatible94two people are.9596Exploring this problem means that you need to think about multiple possible97solutions and consider the advantages and disadvantages of both. There isn't98going to be one and only one correct answer. However, certain answers may99be more easily justified than others and the quality of the justifcation is100what's important.101102Here are some of the things that go through my head when I think about103solving this problem. These are certainly not the only things that you can104investigate, but perhaps they give you some idea about what it means to105explore the problem space.106107\begin{itemize}108\item Given two rectangles, how am I going to compute the overlapping109area?110\item Once I have that area as a number, how can I interpret that in terms111of compatibility. For example, does it matter how large or small each112individual person's area is compared with the amount of overlap?113\item If there is 0 overlap, but the rectangles are very close, would that114have any useful meaning? In other words, could I extend the problem a little115bit and consider rectangle proximity rather than only overlapping area?116\item Why do we have to use a rectangle? Could other shapes be used and would117they have any advantages in terms of the goals of the website?118\item Can I generate some random rectangles and test my algorithm to make119sure that it works the way I think it does?120\item What would be the best way to illustrate compatibility in terms of121area?122\end{itemize}123124\subsection*{Waiting -- time to percolate}125After you spend some time with the problem and exploring the problem space,126the next step involves waiting. You want to give your brain some time127to think about the work you have just completed. This is important128because when we are confronted with a deadline or need to finish129something by a particular time, our brains aren't really in the best130mode to think creatively. We need time to rest and let things131percolate.132133During this time, you will want to think about the problem and talk134about your solution with others. Walk through all the steps and135focus on what justification you had for each step. What kinds of136assumptions have you made? Are they reasonable assumptions?137138I cannot emphasize this step in the process enough. You simply must139have time to let your brain wander and develop ideas about the problem.140If you find yourself stuck, it helps to ask why you're stuck. Try to write141down exactly why you feel stuck. When I get stuck, the process of thinking142about why I am stuck really helps to get me unstuck.143144\subsection*{Outlining}145After a few days have passed, you will want to start and outline146your solution. There are a number of different ways to do this,147and you may already have a good process from a previous class. I148will give you the same outlining strategy that I have used for149writing mathematical papers. The basic idea is to make use of150a number of notecards. Each notecard will have a single idea151written on it that relates to how you solved the problem. These152notecards are a way of documenting your thinking. The reason153that we use notecards is that it is really easy to lay out all154the cards in front of you and visualize your thought process.155156\subsection*{Writing}157Once everything seems to be clear, you can begin writing your158report. The notecards will help because you already have all the159information you need. This last part of writing is perhaps the160most difficult because you will need to think about how to161write in a clear and precise way. We will see some examples162of how this looks in class and talk about ways to write163clearly.164165\section*{The Report}166167After you have written a first draft, you will bring a hardcopy168to class and we will exchange papers for others to read and mark169up. This is an opportunity for you to get feedback on170things like typos or sentences that are not clear.171172Once you have fixed any errors and re-written your report, I will show173you how the report will be submitted from within SageMathCloud.174175\section*{Basic Expectations}176177For this first project, here are the things I consider important.178179\begin{itemize}180\item Your report is written in \LaTeX\, and contains no spelling errors,181no grammatical errors, and is written in a clear and precise way.182183\item You have presented your solution to the problem so that the reader184clearly sees that you have considered multiple methods of solving the185problem and justified your approach.186187\item If there are equations in your report, they are correctly typeset188in a mathematical font.189190\item If there are graphs in your report, they are correctly titled with191the axes labeled and referenced from the text of your report.192\end{itemize}193194\section*{The Key}195196The key to these projects is not to wait until the last minute to write them.197Start early. You will certainly encounter issues as you work, and if you are198faced with a deadline you won't have the time to solve these issues. This way199of working can be really challenging, depending on your previous experience.200201202203\end{document}204205206207