Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

This file is a calculus worksheet Amanda Taylor Lipnicki created and used for teaching applications of calculus to crochet patterns. It is a TeX file, so you can edit it and use it in your own classes.

58 views
ubuntu2004
1
\documentclass{article}
2
\usepackage[english]{babel}
3
\usepackage[margin=0.98in]{geometry}
4
\usepackage{amssymb, amsmath,amsthm, verbatim, cancel, fancybox, graphicx, animate, enumerate, enumitem, amstext, array, cleveref, colonequals, ifthen}
5
\newtheorem{thm}{Theorem}[section]
6
\newtheorem{lem}[thm]{Lemma}
7
\newtheorem{prop}[thm]{Proposition}
8
\newtheorem{cor}[thm]{Corollary}
9
\newtheorem{sch}[thm]{Scholium}
10
11
\theoremstyle{remark}
12
% Above line stops theorem environment from italizing all the text within a remark.
13
\newtheorem{rmk}[thm]{Remark}
14
%Above line creates the command for the theorem environment to recognize remark.
15
\theoremstyle{definition}
16
\newtheorem{defn}[thm]{Definition}
17
18
\newcommand{\ds}{\displaystyle}
19
\newcommand{\x}{\times}
20
\let\temp\phi
21
\let\phi\varphi
22
\let\varphi\temp
23
24
25
\newcommand{\strutdepth}{\dp\strutbox}
26
\newcommand{\marginalnote}[1]
27
{\strut\vadjust{\kern-\strutdepth\domarginalnote{#1}}}
28
\newcommand{\domarginalnote}[1]{\vtop to \strutdepth{
29
\baselineskip\strutdepth
30
\vss\llap{ #1\ \ }\null}} %get sevenpoint font here
31
\newcounter{showlabelflag}
32
\newcounter{makelabelflag}
33
\newcommand{\showlabels}{\setcounter{showlabelflag}{1}}
34
\newcommand{\nolabels}{\setcounter{makelabelflag}{2}}
35
\newcommand{\makelabels}{\setcounter{makelabelflag}{1}}
36
\newcommand{\hidelabels}{\setcounter{showlabelflag}{2}}
37
\newcommand{\mylabel}[1]{
38
\ifthenelse{\value{makelabelflag}=1}
39
{\label{#1}}{}
40
\ifthenelse{\value{showlabelflag}=1}
41
{\marginpar{#1}}{}\relax}
42
43
44
\makelabels
45
\showlabels
46
%\hidelabels
47
48
49
%opening
50
\title{Hooked on Calculus: Crochet Surfaces of Revolution Worksheet}
51
52
\begin{document}
53
54
\date{}
55
56
57
58
\maketitle
59
60
Choose a function $f(x)$ and horizontal bounds $a \leq x \leq b$ on which $f(x)$ is differentiable and positive valued. Generate a crochet pattern for the corresponding surface of revolution. You may use the calculator at https://www.desmos.com/calculator/8rfmnuciwg for this worksheet. Enter your own function $f(x)$ and your own bounds $a$ and $b$ at the top.
61
62
\begin{enumerate}
63
\item For your chosen function and bounds, calculate the arc length using the formula $$\int_a^b \sqrt{1 + \left(f'(x)\right)^2} \, dx.$$ \item Compare the previous number with the number of rows in your pattern. Are they similar? Explain.
64
\item Consider $$\int_a^{x_1} \sqrt{1 + \left(f'(x)\right)^2} \, dx.$$ Find an $x_1 > a$ such that the integral approximately equals 0.5.
65
\item Calculate $2\pi f(x_1)$ and compare this with the number of chain stitches in Row 1. Explain.
66
\item Consider $$\int_a^{x_2} \sqrt{1 + \left(f'(x)\right)^2} \, dx.$$ Find an $x_2 > x_1$ such that the integral approximately equals 1.5.
67
\item Calculate $2\pi f(x_2)$ and compare this with the number of stitches in Row 2. Explain.
68
\item Using the above exploration as guidance, what are the main mathematical concepts behind our pattern creation for surfaces of revolution and why?
69
\item For your chosen function, calculate the surface area of the surface of revolution using the formula $$\int_a^b 2\pi f(x) \sqrt{1 + \left(f'(x)\right)^2} \, dx.$$
70
\item Compare the previous number with the number of stitches in your pattern. Are they similar? Explain.
71
\item For your chosen function, calculate the volume inside the surface of revolution using the formula $$\int_a^b \pi (f(x))^2 \, dx.$$
72
\item Include a printout of your program worksheet that shows your function, bounds, and the pattern generated.
73
\item Share your completed crochet project with Dr. Taylor, preferably in person, but pictures are also welcome!
74
\end{enumerate}
75
\end{document}
76