Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Carson Witt

2061 views
1
%%%%%%
2
%
3
% PROJECT 1
4
%
5
% filename: p1_intro_project.tex
6
% last modified: 2016-8-29
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
\begin{document}
40
\begin{fullwidth}
41
\mbox{\LARGE PreCalculus BC: Project One - \today }\hfill
42
\end{fullwidth}
43
\section*{Introduction}
44
45
In this first project in PreCalculus BC, we won't be looking at a
46
particularly difficult math problem. Instead, the focus should be
47
on getting comfortable with the new tools used to create these
48
projects.
49
50
Here is the problem we will be solving.
51
52
\begin{quote}
53
A gardener has 140 feet of fencing to fence in a rectangular
54
vegetable garden. Find a function that models the area of the
55
garden she can fence. For what range of widths is the area
56
greater than 825 square feet? Can she fence a garden with area
57
1250 square feet? Find the dimensions of the largest area she
58
can fence.
59
\end{quote}
60
61
\section*{The Process}
62
63
\subsection*{Explore the Problem}
64
The first step in the process of solving and writing a report about
65
this problem is to actually solve the problem and
66
\textbf{explore the problem space}. What does this mean? Here are
67
a few things for you think about.
68
69
\begin{itemize}
70
\item What questions have been asked directly in the problem?
71
\item What are the answers to those direct questions?
72
\item In the process of finding those answers, what other
73
questions came into your mind?
74
\item In what ways could the problem be generalized or extended
75
beyond what was stated? Would those extensions be useful?
76
\end{itemize}
77
78
\subsection*{Example Problem}
79
Here is a short example to give you an idea about what exploring the
80
problem means. Suppose that you are in charge of designing a dating website's
81
algorithm for determining whether two people are compatible. For each person
82
that is registered on the site, a software engineer has written an
83
algorithm that provides you with a rectangle representing that person's
84
character and personality. This rectangle has a length and a width along
85
with the coordinates of the lower-left corner.
86
87
Each person's rectangle is plotted on a normal 2D plane such as the $xy$-axis.
88
For any two people, there are three possibilities. First, their rectangles could
89
have no overlap. Second, their rectangles
90
could overlap a little bit. Third, their rectangles could be identical in which
91
case they would completely overlap.
92
93
Your job is to take the information for each rectangle and write an algorithm
94
that determines the amount of overlap and interpret that as how compatible
95
two people are.
96
97
Exploring this problem means that you need to think about multiple possible
98
solutions and consider the advantages and disadvantages of both. There isn't
99
going to be one and only one correct answer. However, certain answers may
100
be more easily justified than others and the quality of the justifcation is
101
what's important.
102
103
Here are some of the things that go through my head when I think about
104
solving this problem. These are certainly not the only things that you can
105
investigate, but perhaps they give you some idea about what it means to
106
explore the problem space.
107
108
\begin{itemize}
109
\item Given two rectangles, how am I going to compute the overlapping
110
area?
111
\item Once I have that area as a number, how can I interpret that in terms
112
of compatibility. For example, does it matter how large or small each
113
individual person's area is compared with the amount of overlap?
114
\item If there is 0 overlap, but the rectangles are very close, would that
115
have any useful meaning? In other words, could I extend the problem a little
116
bit and consider rectangle proximity rather than only overlapping area?
117
\item Why do we have to use a rectangle? Could other shapes be used and would
118
they have any advantages in terms of the goals of the website?
119
\item Can I generate some random rectangles and test my algorithm to make
120
sure that it works the way I think it does?
121
\item What would be the best way to illustrate compatibility in terms of
122
area?
123
\end{itemize}
124
125
\subsection*{Waiting -- time to percolate}
126
After you spend some time with the problem and exploring the problem space,
127
the next step involves waiting. You want to give your brain some time
128
to think about the work you have just completed. This is important
129
because when we are confronted with a deadline or need to finish
130
something by a particular time, our brains aren't really in the best
131
mode to think creatively. We need time to rest and let things
132
percolate.
133
134
During this time, you will want to think about the problem and talk
135
about your solution with others. Walk through all the steps and
136
focus on what justification you had for each step. What kinds of
137
assumptions have you made? Are they reasonable assumptions?
138
139
I cannot emphasize this step in the process enough. You simply must
140
have time to let your brain wander and develop ideas about the problem.
141
If you find yourself stuck, it helps to ask why you're stuck. Try to write
142
down exactly why you feel stuck. When I get stuck, the process of thinking
143
about why I am stuck really helps to get me unstuck.
144
145
\subsection*{Outlining}
146
After a few days have passed, you will want to start and outline
147
your solution. There are a number of different ways to do this,
148
and you may already have a good process from a previous class. I
149
will give you the same outlining strategy that I have used for
150
writing mathematical papers. The basic idea is to make use of
151
a number of notecards. Each notecard will have a single idea
152
written on it that relates to how you solved the problem. These
153
notecards are a way of documenting your thinking. The reason
154
that we use notecards is that it is really easy to lay out all
155
the cards in front of you and visualize your thought process.
156
157
\subsection*{Writing}
158
Once everything seems to be clear, you can begin writing your
159
report. The notecards will help because you already have all the
160
information you need. This last part of writing is perhaps the
161
most difficult because you will need to think about how to
162
write in a clear and precise way. We will see some examples
163
of how this looks in class and talk about ways to write
164
clearly.
165
166
\section*{The Report}
167
168
After you have written a first draft, you will bring a hardcopy
169
to class and we will exchange papers for others to read and mark
170
up. This is an opportunity for you to get feedback on
171
things like typos or sentences that are not clear.
172
173
Once you have fixed any errors and re-written your report, I will show
174
you how the report will be submitted from within SageMathCloud.
175
176
\section*{Basic Expectations}
177
178
For this first project, here are the things I consider important.
179
180
\begin{itemize}
181
\item Your report is written in \LaTeX\, and contains no spelling errors,
182
no grammatical errors, and is written in a clear and precise way.
183
184
\item You have presented your solution to the problem so that the reader
185
clearly sees that you have considered multiple methods of solving the
186
problem and justified your approach.
187
188
\item If there are equations in your report, they are correctly typeset
189
in a mathematical font.
190
191
\item If there are graphs in your report, they are correctly titled with
192
the axes labeled and referenced from the text of your report.
193
\end{itemize}
194
195
\section*{The Key}
196
197
The key to these projects is not to wait until the last minute to write them.
198
Start early. You will certainly encounter issues as you work, and if you are
199
faced with a deadline you won't have the time to solve these issues. This way
200
of working can be really challenging, depending on your previous experience.
201
202
203
204
\end{document}
205
206
207