Skip to content

Commit 6dc8c88

Browse files
committed
finish typo corrections
1 parent 32e4dea commit 6dc8c88

28 files changed

+143
-148
lines changed

source/exercises/counting-combine-outcomes.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<li>
3737
<p>
3838
For example, 63 is the number of choices you have if you will watch two movies,
39-
first a comedy and then a horror.
39+
first a comedy and then a horror movie.
4040
</p>
4141
</li>
4242
</ol>
@@ -55,7 +55,7 @@
5555
</statement>
5656
<hint>
5757
<p>
58-
For a simpler example, there are 4 divisors of <m>6 = 2\cdot 3</m>. They are <m>1 = 2^0\cdot 3^0</m>, <m>2 = 2^1\cdot 3^0</m>, <m>3 = 2^0\cdot 3^1</m> and <m>6 = 2^1\cdot 3^1</m>.
58+
For a simpler example, there are 4 divisors of <m>6 = 2\cdot 3</m>. They are <m>1 = 2^0\cdot 3^0</m>, <m>2 = 2^1\cdot 3^0</m>, <m>3 = 2^0\cdot 3^1</m>, and <m>6 = 2^1\cdot 3^1</m>.
5959
</p>
6060
</hint>
6161
</exercise>

source/exercises/counting-conc.ptx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<exercise>
99
<statement>
1010
<idx><h>bow ties</h></idx>
11-
<idx><h>combination</h><h>vs permutation</h></idx>
12-
<idx><h>permutation</h><h>vs combination</h></idx>
11+
<idx><h>combination</h><h>vs. permutation</h></idx>
12+
<idx><h>permutation</h><h>vs. combination</h></idx>
1313
<p>
1414
For each of the following counting problems,
1515
say whether the answer is <m>{10\choose 4}</m>,
@@ -380,7 +380,7 @@
380380
<idx><h>bow ties</h></idx>
381381
<p>
382382
You own 8 purple bow ties,
383-
3 red bow ties, 3 blue bow ties and 5 green bow ties.
383+
3 red bow ties, 3 blue bow ties, and 5 green bow ties.
384384
How many ways can you select one of each color bow tie to take with you on a trip? <m>8 \cdot 3 \cdot 3 \cdot 5</m> ways.
385385
How many choices do you have for a single bow tie to wear tomorrow? <m>8 + 3 + 3 + 5</m> choices.
386386
</p>
@@ -446,7 +446,7 @@
446446
<m>{n \choose 1}</m>, <m>{n \choose 2}</m>,
447447
<ellipsis/>, <m>{n \choose n}</m>
448448
(each time choosing which of the <m>n</m> steps to be to the right).
449-
These two methods count the same quantity and so are equal.
449+
These two methods count the same quantity, and so are equal.
450450
</p>
451451
</solution>
452452
</exercise>

source/exercises/counting-multisets.ptx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<ol>
5252
<li>
5353
<p>
54-
You take 3 strawberry, 1 lime, 0 licorice, 2 blueberry and 0 bubblegum.
54+
You take 3 strawberry, 1 lime, 0 licorice, 2 blueberry, and 0 bubblegum.
5555
</p>
5656
</li>
5757

source/exercises/counting-proofs.ptx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@
257257
We have answered the question
258258
(how many wedding parties can the bride choose from)
259259
in two ways.
260-
The first way gives the left-hand side of the identity and the second way gives the right-hand side of the identity.
260+
The first way gives the left-hand side of the identity, and the second way gives the right-hand side of the identity.
261261
Therefore the identity holds.
262262
</p>
263263
</li>
@@ -297,7 +297,7 @@
297297
</statement>
298298
<hint>
299299
<p>
300-
Try <xref ref="exc-bridesmaids"/>
300+
Try <xref ref="exc-bridesmaids"/>.
301301
</p>
302302
</hint>
303303
</exercise>
@@ -327,7 +327,7 @@
327327
<p>
328328
Answer 1: First select 2 of the <m>n</m> balls to put in the jar.
329329
Then select <m>k-2</m> of the remaining <m>n-2</m> balls to put in the box.
330-
The first task can be completed in <m>{n \choose 2}</m> different ways,
330+
The first task can be completed in <m>{n \choose 2}</m> different ways and
331331
the second task in <m>{n-2 \choose k-2}</m> ways.
332332
Thus there are <m>{n \choose 2}{n-2 \choose k-2}</m> ways to select the balls.
333333
</p>
@@ -336,14 +336,14 @@
336336
Answer 2: First select <m>k</m> balls from the <m>n</m> in the container.
337337
Then pick 2 of the <m>k</m> balls you picked to put in the jar,
338338
placing the remaining <m>k-2</m> in the box.
339-
The first task can be completed in <m>{n \choose k}</m> ways,
339+
The first task can be completed in <m>{n \choose k}</m> ways and
340340
the second task in <m>{k \choose 2}</m> ways.
341341
Thus there are <m>{n \choose k}{k \choose 2}</m> ways to select the balls.
342342
</p>
343343

344344
<p>
345345
Since both answers count the same thing,
346-
they must be equal and the identity is established.
346+
they must be equal, and the identity is established.
347347
</p>
348348
</proof>
349349

@@ -371,7 +371,7 @@
371371
</statement>
372372
<hint>
373373
<p>
374-
For the combinatorial proof: what if you don't yet know how many bridesmaids you will have?
374+
For the combinatorial proof: What if you don't yet know how many bridesmaids you will have?
375375
</p>
376376
</hint>
377377
</exercise>

source/exercises/gt-coloring.ptx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@
273273
</exercise>
274274

275275
<exercise>
276-
<idx><h>graph</h><h>coloring vertices vs edges</h></idx>
277-
<idx><h>coloring</h><h>vertices vs edges</h></idx>
276+
<idx><h>graph</h><h>coloring vertices vs. edges</h></idx>
277+
<idx><h>coloring</h><h>vertices vs. edges</h></idx>
278278
<statement>
279279
<p>
280280
The two problems below can be solved using graph coloring.
@@ -374,8 +374,8 @@
374374
<solution>
375375
<p>
376376
The wheel graph below has this property.
377-
The outside of the wheel forms an odd cycle, so requires 3 colors,
378-
the center of the wheel must be different than all the outside vertices.
377+
The outside of the wheel forms an odd cycle and so requires 3 colors;
378+
the center of the wheel must be a different color from all the outside vertices.
379379
</p>
380380

381381

@@ -422,7 +422,7 @@
422422
</p>
423423

424424
<p>
425-
Note that you cannot use the 4-color theorem, or Brooke's theorem, or the clique number here. In fact, this graph, called the <em>Grötzsch graph</em> is the smallest graph with chromatic number 4 that does not contain any triangles.
425+
Note that you cannot use the 4-color theorem, or Brooke's theorem, or the clique number here. In fact, this graph, called the <em>Grötzsch graph</em>, is the smallest graph with chromatic number 4 that does not contain any triangles.
426426
</p>
427427
</hint>
428428
</exercise>
@@ -450,13 +450,13 @@
450450
</statement>
451451
<solution>
452452
<p>
453-
If we drew a graph with each letter representing a vertex,
453+
If we drew a graph with each letter representing a vertex
454454
and each edge connecting two letters that were consecutive in the alphabet,
455455
we would have a graph containing two vertices of degree 1 (A and Z) and the remaining 24 vertices all of degree 2
456456
(for example,
457457
<m>D</m> would be adjacent to both <m>C</m> and <m>E</m>).
458458
By Brooks' theorem,
459-
this graph has chromatic number at most 2, as that is the maximal degree in the graph and the graph is not a complete graph or odd cycle.
459+
this graph has chromatic number at most 2, as that is the maximal degree in the graph, and the graph is not a complete graph or odd cycle.
460460
Thus only two boxes are needed.
461461
</p>
462462
</solution>
@@ -470,7 +470,7 @@
470470
</statement>
471471
<hint>
472472
<p>
473-
You can color <m>K_5</m> in such a way that every vertex is adjacent to exactly two blue edges and two red edges. However, there is a graph with only 5 edges that will result in a vertex incident to three edges of the same color no matter how they are colored. What is it, and how can you generalize?
473+
You can color <m>K_5</m> in such a way that every vertex is adjacent to exactly two blue edges and two red edges. However, there is a graph with only 5 edges that will result in a vertex incident to three edges of the same color, no matter how they are colored. What is it, and how can you generalize?
474474
</p>
475475
</hint>
476476
<solution>

source/exercises/gt-conc.ptx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
<li>
229229
<p>
230230
In general this should be possible:
231-
the degree sequence does not determine the graph's isomorphism class.
231+
The degree sequence does not determine the graph's isomorphism class.
232232
However, in this case, I was almost certain this was not possible.
233233
That is, until I stumbled up this:
234234
</p>
@@ -252,7 +252,7 @@
252252
<p>
253253
<m>G</m> is a tree
254254
(there are no cycles)
255-
and as such also bipartite.
255+
and as such is also bipartite.
256256
</p>
257257
</li>
258258

@@ -430,7 +430,7 @@
430430
<p>
431431
Yes, as long as <m>n</m> is even.
432432
If <m>n</m> were odd,
433-
then corresponding graph would have an odd number of odd degree vertices,
433+
then the corresponding graph would have an odd number of odd degree vertices,
434434
which is impossible.
435435
</p>
436436
</solution>
@@ -503,7 +503,7 @@
503503
but we know from Euler's formula that there must be 18 vertices.
504504
We can write <m>64 = 3x + 4y</m> and solve for <m>x</m> and <m>y</m>
505505
(as integers).
506-
We get that there must be 10 vertices with degree 4 and 8 with degree 3. (Note the number of faces joined at a vertex is equal to its degree in graph theoretic terms.)
506+
We get that there must be 10 vertices with degree 4 and 8 with degree 3. (Note that the number of faces joined at a vertex is equal to its degree in graph theoretic terms.)
507507
</p>
508508
</li>
509509
</ol>
@@ -610,10 +610,10 @@
610610
We have that <m>K_{3,4}</m> has 7 vertices and 12 edges
611611
(each vertex in the group of 3 has degree 4).
612612
Then by Euler's formula we have that
613-
<m>7 - 12 + f = 2</m> so if the graph were planar,
613+
<m>7 - 12 + f = 2</m>, so if the graph were planar,
614614
it would have <m>f = 7</m> faces.
615615
However, since the girth of the graph is 4
616-
(there are no cycles of length 3)
616+
(there are no cycles of length 3),
617617
we get that <m>4f \le 2e</m>.
618618
But this would mean that <m>28 \le 24</m>, a contradiction.
619619
</p>
@@ -651,18 +651,18 @@
651651
<p>
652652
For all these questions, we are really coloring the vertices of a graph.
653653
You get the graph by first drawing a planar representation of the polyhedron and then taking its planar dual:
654-
put a vertex in the center of each face
655-
(including the outside)
654+
Put a vertex in the center of each face
655+
(including the outside),
656656
and connect two vertices if their faces share an edge.
657657

658658
<ol>
659659
<li>
660660
<p>
661661
Since the planar dual of a dodecahedron contains a 5-wheel,
662-
it's chromatic number is at least 4.
662+
its chromatic number is at least 4.
663663
Alternatively,
664664
suppose you could color the faces using 3 colors without any two adjacent faces colored the same.
665-
Take any face and color it blue.
665+
Take any face, and color it blue.
666666
The 5 pentagons bordering this blue pentagon cannot be colored blue.
667667
Color the first one red.
668668
Its two neighbors
@@ -736,7 +736,7 @@
736736
To prove this,
737737
we can give an example of a pair of graphs with the same chromatic number that are not isomorphic.
738738
For example,
739-
<m>K_{3,3}</m> and <m>K_{3,4}</m> both have chromatic number 2, but are not isomorphic.
739+
<m>K_{3,3}</m> and <m>K_{3,4}</m> both have chromatic number 2 but are not isomorphic.
740740
</p>
741741
</li>
742742

@@ -848,7 +848,7 @@
848848
<li>
849849
<p>
850850
The graph is planar.
851-
Even though as it is drawn edges cross,
851+
Even though as it is drawn with edges crossing,
852852
it is easy to redraw it without edges crossing.
853853
</p>
854854
</li>
@@ -924,14 +924,14 @@
924924
<li>
925925
<p>
926926
True.
927-
The graph is bipartite so it is possible to divide the vertices into two groups with no edges between vertices in the same group.
927+
The graph is bipartite, so it is possible to divide the vertices into two groups with no edges between vertices in the same group.
928928
Thus we can color all the vertices of one group red and the other group blue.
929929
</p>
930930
</li>
931931

932932
<li>
933933
<p>
934-
False. <m>K_{3,3}</m> has 6 vertices with degree 3, so contains no Euler trail.
934+
False. <m>K_{3,3}</m> has 6 vertices with degree 3 and so contains no Euler trail.
935935
</p>
936936
</li>
937937

source/exercises/gt-intro.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<solution>
9595
<p>
9696
The graphs are not equal.
97-
For example, graph 1 has an edge <m>\{a,b\}</m> but graph 2 does not have that edge.
97+
For example, graph 1 has an edge <m>\{a,b\}</m>, but graph 2 does not have that edge.
9898
They are isomorphic.
9999
One possible isomorphism is <m>f:G_1 \to G_2</m> defined by <m>f(a) = d</m>, <m>f(b) = c</m>, <m>f(c) = e</m>, <m>f(d) = b</m>, <m>f(e) = a</m>.
100100
</p>
@@ -631,7 +631,7 @@
631631

632632
<hint>
633633
<p>
634-
Try a small example first: any graph with 8 vertices must have two vertices of the same degree.
634+
Try a small example first: Any graph with 8 vertices must have two vertices of the same degree.
635635
If not, what would the degree sequence be?
636636
</p>
637637
</hint>

source/exercises/gt-paths.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
This is a question about finding Euler trails.
3636
Draw a graph with a vertex in each state,
3737
and connect vertices if their states share a border.
38-
Exactly two vertices will have odd degree:
38+
Exactly two vertices will have odd degree,
3939
the vertices for Nevada and Utah.
4040
Thus you must start your road trip at in one of those states and end it in the other.
4141
</p>
@@ -188,7 +188,7 @@
188188
</statement>
189189
<hint>
190190
<p>
191-
This is harder than the previous three questions. Think about which <q>side</q> of the graph the Hamilton path would need to be on every other step.
191+
This is harder than the previous three questions. Think about which <q>side</q> of the graph the Hamilton path would need to be on at every other step.
192192
</p>
193193
</hint>
194194

source/exercises/gt-planar.ptx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
<!-- I should check that this is actually possible as a polyhedron -->
9292
<solution>
9393
<p>
94-
Say the last polyhedron has <m>n</m> edges,
94+
Say the last polyhedron has <m>n</m> edges
9595
and also <m>n</m> vertices.
9696
The total number of edges the polyhedron has then is <m>(7 \cdot 3 + 4 \cdot 4 + n)/2 = (37 + n)/2</m>.
9797
In particular,
@@ -310,13 +310,13 @@
310310
\end{tikzpicture}
311311
</latex-image>
312312
<description>
313-
A graph with 11 vertices. A single vertex in the center, then five vertices equally spaced around a ring around it, and five more equally spaced around a ring around those. Edges form the sides of a pentagon for the outer ring of vertices and also the inner ring of vertices. Each outer vertex is also adjacent to two inner vertices: the two on either side of the vertex closest to it. Finally, every inner vertex is also adjacent to the center vertex.
313+
A graph with 11 vertices. A single vertex in the center, then five vertices equally spaced around a ring around it, and five more equally spaced around a ring around those. Edges form the sides of a pentagon for the outer ring of vertices and also the inner ring of vertices. Each outer vertex is also adjacent to two inner vertices: the two on either side of the vertex closest to it. Finally, every inner vertex is also adjacent to the center vertex.
314314
</description>
315315
</image>
316316
</statement>
317317
<hint>
318318
<p>
319-
What has happened to the girth? Careful: we have a different number of edges as well. Better check Euler's formula.
319+
What has happened to the girth? Careful: We have a different number of edges as well. Better check Euler's formula.
320320
</p>
321321
</hint>
322322
</exercise>

source/exercises/gt-trees.ptx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
This cannot be a tree.
119119
Each degree 3 vertex is adjacent to all but one of the vertices in the graph.
120120
Thus each must be adjacent to one of the degree 1 vertices (and not the other).
121-
That means both degree 3 vertices are adjacent to the degree 2 vertex, and to each other, so that means there is a cycle.
121+
That means both degree 3 vertices are adjacent to the degree 2 vertex and to each other, so that means there is a cycle.
122122
</p>
123123

124124
<p>
@@ -129,7 +129,7 @@
129129
<li>
130130
<p>
131131
This might or might not be a tree.
132-
The length 4 path has this degree sequence (this is a tree), but so does the union of a 3-cycle and a length 1 path (which is not connected, so not a tree).
132+
The length 4 path has this degree sequence (this is a tree), but so does the union of a 3-cycle and a length 1 path (which is not connected, so this is not a tree).
133133
</p>
134134
</li>
135135

@@ -209,7 +209,7 @@
209209

210210
<hint>
211211
<p>
212-
Try a proof by contradiction and consider a spanning tree of the graph.
212+
Try a proof by contradiction, and consider a spanning tree of the graph.
213213
</p>
214214
</hint>
215215
</exercise>
@@ -226,7 +226,7 @@
226226
Yes.
227227
We will prove the contrapositive.
228228
Assume <m>G</m> does not contain a cycle.
229-
Then <m>G</m> is a tree, so would have <m>v = e+1</m>, contrary to stipulation.
229+
Then <m>G</m> is a tree, so this would have <m>v = e+1</m>, contrary to stipulation.
230230
</p>
231231
</solution>
232232
</exercise>
@@ -292,7 +292,7 @@
292292
<hint>
293293
<p>
294294
Minimality here should be in terms of the number of vertices.
295-
If you had a minimum counterexample, and removed a leaf vertex, the resulting graph will be a smaller tree, so...
295+
If you had a minimum counterexample and removed a leaf vertex, the resulting graph will be a smaller tree, so...
296296
</p>
297297
</hint>
298298
</exercise>
@@ -370,7 +370,7 @@
370370

371371
<hint>
372372
<p>
373-
If <m>e</m> is the root, then <m>b</m> will have three children (<m>a</m>, <m>c</m>, and <m>d</m>), all of which will be siblings, and have <m>b</m> as their parent.
373+
If <m>e</m> is the root, then <m>b</m> will have three children (<m>a</m>, <m>c</m>, and <m>d</m>), all of which will be siblings and have <m>b</m> as their parent.
374374
<m>a</m> will not have any children.
375375
</p>
376376

@@ -441,9 +441,9 @@
441441

442442
<li>
443443
<p>
444-
No, although there are graph for which this is true (note that if all spanning trees are isomorphic, then all spanning trees will have the same number of leaves).
444+
No, although there are graphs for which this is true (note that if all spanning trees are isomorphic, then all spanning trees will have the same number of leaves).
445445
Again, <m>K_4</m> is a counterexample.
446-
One spanning tree is a path, with only two leaves, another spanning tree is a star with 3 leaves.
446+
One spanning tree is a path, with only two leaves, and another spanning tree is a star with 3 leaves.
447447
</p>
448448
</li>
449449
</ol>

0 commit comments

Comments
 (0)