Skip to content

Commit 3eae17a

Browse files
authored
Merge pull request #386 from rhinopotamus/main
proteus chapter 4; favicons
2 parents c4b3168 + abc06e5 commit 3eae17a

9 files changed

Lines changed: 269 additions & 2 deletions

File tree

assets/favicon/favicon-16x16.png

22.8 KB
Loading

assets/favicon/favicon-32x32.png

23.8 KB
Loading

publication/publication-proteus.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<directories external="../assets" generated="../generated-assets-proteus"
55
/>
66
</source>
7-
<html>
7+
<html favicon="simple">
88
<search google-cx="015103900096539427448:ngwuia10qci" />
99
<css theme="default-modern" palette="blues" />
1010
<!-- Examples and exercises are knowlized by default -->

publication/publication.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<directories external="../assets" generated="../generated-assets-ed1" />
44
<version include="ed1 production static" />
55
</source>
6-
<html>
6+
<html favicon="simple">
77
<css theme="default-modern" palette="blues" />
88
<!-- Examples and exercises are knowlized by default -->
99
<!-- We disable this behavior -->

source/proteus/proteus-4-1.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<exercises component="proteus" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="proteus-4-1">
4+
<title>PROTEUS exercises</title>
5+
6+
<exercise component="proteus" label="proteus-multiply-units" xml:id="proteus-multiply-units" attachment="yes">
7+
<statement>
8+
<p>
9+
A rainfall rate of 0.30 inches or more per hour is considered heavy rain, according to the American Meteorological Society.
10+
<ol>
11+
<li>
12+
<p>
13+
What do you get if you multiply <m>0.30 \dfrac{0.30\text{ inches}}{\text{hour}} \cdot \dfrac16 \text{hour}</m>? Include units.
14+
</p>
15+
</li>
16+
<li>
17+
<p>
18+
What does your answer mean in the context of the thunderstorm?
19+
</p>
20+
</li>
21+
</ol>
22+
</p>
23+
</statement>
24+
</exercise>
25+
26+
27+
</exercises>

source/proteus/proteus-4-2.xml

Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<exercises component="proteus" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="proteus-4-2">
4+
<title>PROTEUS exercises</title>
5+
6+
<exercise component="proteus" label="proteus-saturn-rocket" xml:id="proteus-saturn-rocket" attachment="yes">
7+
<statement>
8+
<p>
9+
In <xref ref="PA-4-2"/>, we used a formula for a velocity function to choose the heights of rectangles. However, in real-world scenarios, it is often the case that a formula is not given, and all we have is discrete data. For instance, here is <url href="https://spacemath.gsfc.nasa.gov/weekly/8Page2.pdf">velocity data</url> from the first 12 seconds after ignition of the Saturn V rocket.
10+
<sidebyside widths="47% 47%" valign="middle">
11+
<table xml:id="saturn-data">
12+
<title>Data for the Saturn V rocket.</title>
13+
<tabular halign="center">
14+
<row bottom="minor">
15+
<cell>seconds, <m>t</m></cell>
16+
<cell>Velocity in m/s, <m>v(t)</m></cell>
17+
</row>
18+
<row >
19+
<cell>0</cell>
20+
<cell>0</cell>
21+
</row>
22+
<row >
23+
<cell>2</cell>
24+
<cell>4</cell>
25+
</row>
26+
<row >
27+
<cell>4</cell>
28+
<cell>10</cell>
29+
</row>
30+
<row >
31+
<cell>6</cell>
32+
<cell>15</cell>
33+
</row>
34+
<row >
35+
<cell>8</cell>
36+
<cell>20</cell>
37+
</row>
38+
<row >
39+
<cell>10</cell>
40+
<cell>25</cell>
41+
</row>
42+
<row >
43+
<cell>12</cell>
44+
<cell>31</cell>
45+
</row>
46+
</tabular>
47+
</table>
48+
49+
<figure xml:id="saturn-axes">
50+
<caption>Axes for plotting the data in <xref ref="saturn-data"/>.</caption>
51+
<image>
52+
<prefigure xmlns="https://prefigure.org"
53+
label="prefigure-saturn-axes">
54+
<diagram dimensions="(300,300)" margins="30">
55+
<coordinates bbox="(0,0,14, 32)">
56+
<grid-axes
57+
decorations="no"
58+
xlabel="t"
59+
ylabel="v"
60+
spacings="((0,2,14),(0,4,32))"
61+
hticks="(0,2,14)"
62+
hlabels="(0,4,12)"
63+
vticks="(0,4,32)"
64+
/>
65+
</coordinates>
66+
</diagram>
67+
</prefigure>
68+
</image>
69+
</figure>
70+
</sidebyside>
71+
Throughout this activity, we'll use four rectangles, each with a width of <m>\Delta t = 2</m> sec, to estimate the area under the velocity function <m>v(t)</m>.
72+
</p>
73+
<ol>
74+
<li>
75+
<p>
76+
Plot the given data on the set of axes provided in <xref ref="saturn-axes"/> with time on the horizontal axis and the velocity on the vertical axis.
77+
</p>
78+
</li>
79+
<li>
80+
<p>
81+
Create four rectangles in a consistent way, using the plotted data to provide the heights of each rectangle. Draw the four rectangles on your graph.
82+
</p>
83+
</li>
84+
<li>
85+
<p>
86+
Use the heights you determined for each rectangle to determine the area of each rectangle; include units in your answer. What does the area of each rectangle represent in the context of the rocket launch?
87+
</p>
88+
</li>
89+
<li>
90+
<p>
91+
Add up the areas of each of the four rectangles to produce an estimate for the <em>total</em> area under the velocity function <m>v(t)</m>. Give your answer as a number with units. What does this value represent in the context of the rocket launch?
92+
</p>
93+
</li>
94+
<li>
95+
<p>
96+
As illustrated in <xref ref="PA-4-2"/>, there are <em>multiple</em> consistent ways to use the plotted data points to determine the heights of rectangles. Try another one and produce a <em>different</em> estimate of the distance traveled by the rocket.
97+
</p>
98+
</li>
99+
</ol>
100+
</statement>
101+
<response />
102+
</exercise>
103+
104+
</exercises>
105+
106+
<!--
107+
<table>
108+
<title>Data for the Saturn V rocket.</title>
109+
<tabular top="minor" bottom="minor">
110+
<row >
111+
<cell>Time (Sec)</cell>
112+
<cell>Speed (m/s)</cell>
113+
</row>
114+
<row >
115+
<cell>0</cell>
116+
<cell>0</cell>
117+
</row>
118+
<row >
119+
<cell>1</cell>
120+
<cell>3</cell>
121+
</row>
122+
<row >
123+
<cell>2</cell>
124+
<cell>4</cell>
125+
</row>
126+
<row >
127+
<cell>3</cell>
128+
<cell>7</cell>
129+
</row>
130+
<row >
131+
<cell>4</cell>
132+
<cell>10</cell>
133+
</row>
134+
<row >
135+
<cell>5</cell>
136+
<cell>12</cell>
137+
</row>
138+
<row >
139+
<cell>6</cell>
140+
<cell>15</cell>
141+
</row>
142+
<row >
143+
<cell>7</cell>
144+
<cell>16</cell>
145+
</row>
146+
<row >
147+
<cell>8</cell>
148+
<cell>20</cell>
149+
</row>
150+
<row >
151+
<cell>9</cell>
152+
<cell>23</cell>
153+
</row>
154+
<row >
155+
<cell>10</cell>
156+
<cell>25</cell>
157+
</row>
158+
<row >
159+
<cell>11</cell>
160+
<cell>27</cell>
161+
</row>
162+
<row >
163+
<cell>12</cell>
164+
<cell>31</cell>
165+
</row>
166+
<row >
167+
<cell>13</cell>
168+
<cell>34</cell>
169+
</row>
170+
<row >
171+
<cell>14</cell>
172+
<cell>36</cell>
173+
</row>
174+
<row >
175+
<cell>15</cell>
176+
<cell>39</cell>
177+
</row>
178+
<row >
179+
<cell>16</cell>
180+
<cell>43</cell>
181+
</row>
182+
<row >
183+
<cell>17</cell>
184+
<cell>46</cell>
185+
</row>
186+
<row >
187+
<cell>18</cell>
188+
<cell>49</cell>
189+
</row>
190+
<row >
191+
<cell>19</cell>
192+
<cell>53</cell>
193+
</row>
194+
<row >
195+
<cell>20</cell>
196+
<cell>56</cell>
197+
</row>
198+
</tabular>
199+
</table>
200+
201+
-->

source/proteus/proteus-4-3.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<exercises component="proteus" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="proteus-4-3">
4+
<title>PROTEUS exercises</title>
5+
6+
<exercise component="proteus" label="proteus-area-reminders" xml:id="proteus-area-reminders" attachment="yes">
7+
<statement>
8+
Later in this section, we will learn several properties of the definite integral. In preparation for learning those properties, it will be useful to recall similar properties of simple areas.
9+
<ol>
10+
<li>
11+
<p>
12+
Suppose you have an original rectangle that is 5 units tall and 2 units wide. Draw a picture of such a rectangle, and find its area.
13+
</p>
14+
</li>
15+
<li>
16+
<p>
17+
Draw a new rectangle that is twice as tall as the original rectangle. What is the area of the new rectangle?
18+
</p>
19+
</li>
20+
<li>
21+
<p>
22+
Draw another rectangle that is 5 units tall but just 1 unit wide, and suppose it was glued to the side of the original rectangle. What is the area of the combined figure?
23+
</p>
24+
</li>
25+
<li>
26+
<p>
27+
Draw another rectangle that is 3 units tall and 2 units wide, and suppose it was glued to the top of the original rectangle. What is the area of the combined rectangle?
28+
</p>
29+
</li>
30+
</ol>
31+
</statement>
32+
<response />
33+
</exercise>
34+
35+
</exercises>

source/sec-4-2-Riemann.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@
9999
<xi:include href="./previews/PA-4-2.xml" />
100100
</introduction>
101101

102+
<xi:include href="./proteus/proteus-4-2.xml" />
103+
102104
<subsection xml:id="sigma-notation" permid="jCJ">
103105
<title>Sigma Notation</title>
104106
<p permid="Tos">

source/sec-4-3-definite-integral.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
<xi:include href="./previews/PA-4-3.xml" />
6060
</introduction>
6161

62+
<xi:include href="./proteus/proteus-4-3.xml" />
63+
6264
<subsection permid="uqj">
6365
<title>The definition of the definite integral</title>
6466
<idx><h>definite integral</h><h>definition</h></idx>

0 commit comments

Comments
 (0)