Carson Witt
PreCalculusBC_Projects / Project One - Fencing a Garden-graded / witt_fencing_a_garden_1_FEEDBACK.tex
2061 views\documentclass[landscape]{article}1\title{\vspace{-4.0cm}Fencing a Livestock Pen}2\author{Carson Witt}3\date{October 14, 2016}45\usepackage{graphicx}6\usepackage{color}7\usepackage{amsmath}8\usepackage{bm}9\usepackage{indentfirst}10%% ADDED PREAMBLE11\usepackage{todonotes}12\usepackage[displaymath, mathlines]{lineno}13\usepackage{hyperref}14\usepackage{pagecolor}15\usepackage{tabularx}1617\newcommand{\sg}[1]{\todo[color=red!40,fancyline]{#1}}18\newcommand{\good}[1]{\todo[color=blue!40,fancyline]{#1}}19\newcommand{\comm}[1]{\todo[color=orange!40,fancyline]{#1}}20%%212223\begin{document}2425%% ADDED FEEDBACK26\pagecolor{yellow!30!white}27\mbox{\LARGE Fencing a Garden }\hfill C. Witt2829\vspace{1cm}3031\hrule3233\vspace{1cm}3435Grade: 1003637\vspace{1cm}3839\begin{tabularx}{\textwidth}{ p{2cm} p{8cm}}40Abstract &41Nice introduction to the problem by adding a little42bit of context. Although I wonder why you decided43to also state the original problem?44\\45Procedure &46Nice use of color in the equations and the graph. That47makes it easier for the reader to follow your arguments.48\\49Conclusion &50I really like the reflection piece at the end of the paper51where you talk about the things you have learned as a52result of working on this project. Great job in doing53the work to figure out how to do some extra things.54\\55\end{tabularx}5657\newpage5859\listoftodos[List of Comments]6061\newpage6263\maketitle6465\linenumbers66\pagecolor{white}67%%6869\section*{Abstract}70You are working over the summer at a fencing company. The client that you are currently working with owns a small ranch. This client asks you to fence off a large rectangular livestock pen. However, the client has only given you enough money for 140 feet of fencing. Your job is to make a livestock pen with the largest area possible. The client has also asked you to model a function for possible areas of the livestock pen. \par71Original Problem: A gardener has 140 feet of fencing to fence in a rectangular vegetable garden. Find a function that models the area of the garden she can fence. For what range is the area greater than 825 square feet? Can she fence a garden with area 1250 square feet? Find the dimensions of the largest area she can fence.727374\section*{Procedure}75In order to solve this problem, you must know a few base equations.7677\begin{enumerate}78\item Perimeter of a rectangle: $P=2l+2w$ where $l$ is length, and $w$ is width.79\item Area of a rectangle: $A=lw$ where $l$ is length and $w$ is width.80\end{enumerate}8182I then plugged in the given perimeter of 140 and solved the equation in terms of $l$. To get the final function, plug in the solved value of $l$ into the area formula. The function should then be in terms of $w$.8384\begin{table}[h]85\centering86\begin{tabular}{cc}87\begin{minipage}{0.03\textwidth}88\begin{align*}89140 = 2w + 2l \\90\downarrow \\912l = 140-2w \\92\downarrow \\93l = 70-w \\94\downarrow \\95A(w) = wl \\96\downarrow \\97\mathbf{\textcolor{blue}{A(w) = w(70-w)}} \\98\end{align*}99\end{minipage}100&101\begin{minipage}{0.97\textwidth}102\includegraphics[scale=0.45]{graph_without_range.pdf}103\end{minipage}104\end{tabular}105\end{table}106107We have now found a function for the area of the rectangle in terms of its width!108109\newpage110When answering the second part of the question (For what range is the area greater than 825 square feet?), simply draw the line $y=825$ onto the pre-existing graph. Any value of $A(w)$ above the line is on the range of areas greater than 825 feet.111$$112\textcolor{blue}{A(w) = w(70-w)}113$$114\begin{center}115and116\end{center}117$$118\textcolor{red}{F(w) = 825}119$$120\begin{center}121yields122\end{center}123124\begin{center}125\includegraphics[scale=0.6]126{graph_with_range.pdf}127\end{center}128129From this graph, you can determine that in order to have an area greater than 825 feet, you must have a width in this limit: $15<w<55$.130131\vspace{0.2cm}{To find the maximum area you can fence, simply find the max y-value \comm{$y$-value and not y-value} for $A(w)$.}132133\begin{center}134\includegraphics[scale=0.6]135{graph_with_maximum.pdf}136\end{center}137138From this graph, you can determine that maximum possible area the gardener can fence is 1225 square feet. Therefore, you \textbf{cannot} fence a garden with an area of 1250 square feet.139140\section*{Conclusion}141\noindent Key Points:142\begin{enumerate}143\item Formula for area: $A(w) = w(70-w)$144\item The maximum area you can fence is 1225 square feet145\begin{itemize}146\item length: 105 feet147\item width: 35 feet148\end{itemize}149\item In order to have an area greater than 825 square feet, the width of the livestock pen must be greater than 15 feet but less than 55 feet.150\end{enumerate}151152\noindent Analysis:153154This was a very fun first project. While the problem was not difficult, I enjoyed getting to know SageMathCloud and the \enspace \LaTeX \enspace programming language. While the basics of \enspace \LaTeX \enspace are straightforward, some issues such as spacing and font size troubled me. In addition, the SageMath Worksheets are very confusing to me. For example, in order to make the graphs, I had to copy and paste Mr. Abell's example code into a new SageMath Worksheet and plug in my own values and restrictions. But, while challenging, I was abel \comm{shouldn't this be able?} to add little nuances such as color and point labels to the SageMath Worksheet.155\end{document}156157