Skip to content

Commit 2198185

Browse files
committed
fix typos in ch3
1 parent 06d2452 commit 2198185

17 files changed

+178
-166
lines changed

source/exercises/counting-combperm.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<statement>
1010
<p>
1111
How many triangles are there with vertices from the points shown below?
12-
Note that we are not allowing degenerate triangles - ones with all three vertices on the same
13-
line,
12+
Note that we are not allowing degenerate triangles <ndash/> ones with all three vertices on the same
13+
line <ndash/>
1414
but we do allow non-right triangles.
1515
Explain why your answer is correct.
1616
</p>

source/exercises/counting-conc.ptx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
For each of the following counting problems,
1515
say whether the answer is <m>{10\choose 4}</m>,
1616
<m>P(10,4)</m>, or neither.
17-
If you answer is <q>neither,</q>
17+
If your answer is <q>neither,</q>
1818
say what the answer should be instead.
1919

2020
<ol>
@@ -42,7 +42,7 @@
4242
<li>
4343
<p>
4444
If you want to wear 4 of your 10 bow ties next week (Monday through Sunday),
45-
how many ways can this be accomplished?
45+
in how many ways can this be accomplished?
4646
</p>
4747
</li>
4848

@@ -56,7 +56,7 @@
5656
<li>
5757
<p>
5858
If 10 students come to their professor's office but only 4 can fit at a time,
59-
how different combinations of 4 students can see the prof first?
59+
how many different combinations of 4 students can see the prof first?
6060
</p>
6161
</li>
6262

@@ -68,7 +68,7 @@
6868

6969
<li>
7070
<p>
71-
How many ways can you make the word <q>cake</q>
71+
In how many ways can you make the word <q>cake</q>
7272
from the first 10 letters of the alphabet?
7373
</p>
7474
</li>
@@ -83,13 +83,13 @@
8383
<p>
8484
If you have 10 kids
8585
(and live in a shoe)
86-
and 4 types of cereal, how many ways can your kids eat breakfast?
86+
and 4 types of cereal, in how many ways can your kids eat breakfast?
8787
</p>
8888
</li>
8989

9090
<li>
9191
<p>
92-
How many ways can you arrange exactly 4 ones in a string of 10 binary digits?
92+
In how many ways can you arrange exactly 4 ones in a string of 10 binary digits?
9393
</p>
9494
</li>
9595

@@ -124,15 +124,15 @@
124124

125125
<li>
126126
<p>
127-
Each of your 10 bow ties match 4 pairs of suspenders.
127+
Each of your 10 bow ties matches 4 pairs of suspenders.
128128
How many outfits can you make?
129129
</p>
130130
</li>
131131

132132
<li>
133133
<p>
134134
After the party, the 10 kids each choose one of 4 party-favors.
135-
How many outcomes?
135+
How many outcomes are there?
136136
</p>
137137
</li>
138138

@@ -144,7 +144,7 @@
144144

145145
<li>
146146
<p>
147-
How many ways can you split up 11 kids into 5 named teams?
147+
In how many ways can you split up 11 kids into 5 named teams?
148148
</p>
149149
</li>
150150

@@ -173,7 +173,7 @@
173173
<li>
174174
<p>
175175
Out of the 10 breakfast cereals available, you want to have 4 bowls.
176-
How many ways can you do this?
176+
In how many ways can you do this?
177177
</p>
178178
</li>
179179

@@ -240,7 +240,7 @@
240240
Actually, <q>k</q> is the 11th letter of the alphabet,
241241
so the answer is 0.
242242
If <q>k</q> was among the first 10 letters,
243-
there would only be 1 way - write it down.
243+
there would only be 1 way <ndash/> write it down.
244244
</p>
245245
</li>
246246

@@ -258,13 +258,13 @@
258258
<p>
259259
Neither.
260260
Note that this could not be
261-
<m>{10 \choose 4}</m> since the 10 things and 4 things are from different groups. <m>4^{10}</m>, assuming each kid eats one type of cerial.
261+
<m>{10 \choose 4}</m> since the 10 things and 4 things are from different groups. <m>4^{10}</m>, assuming each kid eats one type of cereal.
262262
</p>
263263
</li>
264264

265265
<li>
266-
<m>{10 \choose 4}</m> - don't be fooled by the <q>arrange</q>
267-
in there - you are picking 4 out of 10
266+
<m>{10 \choose 4}</m>. Don't be fooled by the <q>arrange</q>
267+
in there. You are picking 4 out of 10
268268
<em>spots</em> to put the 1's.
269269
</li>
270270

source/exercises/counting-pascal.ptx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<exercise>
1414
<introduction>
1515
<p>
16-
Suppose you are counting lattice paths from <m>(0,0)</m> to <m>(4,3)</m>. We know that the number of such paths is <m>\binom{4+3}{4} = \binom{7}{6} = 35</m>. Here is another way to count these paths: consider the cases for where your first step in the <m>y</m>-direction is. There are five different options here; compute the number of paths for each case.
16+
Suppose you are counting lattice paths from <m>(0,0)</m> to <m>(4,3)</m>. We know that the number of such paths is <m>\binom{4+3}{4} = \binom{7}{6} = 35</m>. Here is another way to count these paths: Consider the cases for where your first step in the <m>y</m>-direction is. There are five different options here; compute the number of paths for each case.
1717
</p>
1818
</introduction>
1919
<task>
@@ -52,7 +52,7 @@
5252
<exercise>
5353
<statement>
5454
<p>
55-
Explain why the coefficient of <m>x^5y^3</m> the same as the coefficient of <m>x^3y^5</m> in the
55+
Explain why the coefficient of <m>x^5y^3</m> is the same as the coefficient of <m>x^3y^5</m> in the
5656
expansion of <m>(x+y)^8</m>? </p>
5757
</statement>
5858
</exercise>
@@ -67,7 +67,7 @@
6767
<task>
6868
<statement>
6969
<p>
70-
Use the Binomial Theorem to write out the expansion of <m>(x+y)^5</m>.
70+
Use the binomial theorem to write out the expansion of <m>(x+y)^5</m>.
7171
</p>
7272
</statement>
7373
</task>
@@ -81,7 +81,7 @@
8181
<task>
8282
<statement>
8383
<p>
84-
How does your previous answer relate to what you get when you apply the Binomial Theorem to <m>(x+y)^6</m>?
84+
How does your previous answer relate to what you get when you apply the binomial theorem to <m>(x+y)^6</m>?
8585
</p>
8686
</statement>
8787
</task>

source/exercises/counting-probability.ptx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<exercise>
6464
<statement>
6565
<p>
66-
A group of 10 friends each has a deck of cards that they shuffle thoroughly. Each friend draws a card from their deck. What is the probability that at least one pair of friends draw a matching card?
66+
Each of 10 friends has a deck of cards that they shuffle thoroughly. Each friend draws a card from their deck. What is the probability that at least one pair of friends draw a matching card?
6767
</p>
6868
</statement>
6969
<hint>
@@ -76,15 +76,15 @@
7676
<exercise>
7777
<statement>
7878
<p>
79-
How many people do you need to have in a room to have a 50% chance that at least two people share the same birthday (day of the year)? Assume that all birthdays are equally likely, and that nobody is born on leap day (February 29th).
79+
How many people do you need to have in a room to have a 50% chance that at least two people share the same birthday (day of the year)? Assume that all birthdays are equally likely, and that nobody is born on Leap Day (February 29th).
8080
</p>
8181
</statement>
8282
</exercise>
8383

8484
<exercise>
8585
<statement>
8686
<p>
87-
At your 20th high school reunion, you meet an old friend you hadn't heard from in years. You talk about pets, specifically cats and dogs. She tells you that she has two pets, and that at least one of them is a cat. What is the probability that she has two cats? (Assume that having a cat or a dog are equally likely.)
87+
At your 20th high school reunion, you meet an old friend you hadn't heard from in years. You talk about pets, specifically cats and dogs. She tells you that she has two pets, and that at least one of them is a cat. What is the probability that she has two cats? (Assume that having a cat or a dog is equally likely.)
8888
</p>
8989
</statement>
9090
</exercise>
@@ -101,7 +101,7 @@
101101
<exercise>
102102
<statement>
103103
<p>
104-
You are playing a shell game with three cups. Under one cup are two green balls, under another cup are two red balls, and under the third cup are one green and one red ball. You close your eyes and your friend rearranges the cups. You then open your eyes and pick a cup at random. You see that it contains a green ball. What is the probability that the other ball under that cup is also green? Explain your answer in terms of conditional probability.
104+
You are playing a shell game with three cups. Under one cup are two green balls, under another cup are two red balls, and under the third cup are one green and one red ball. You close your eyes, and your friend rearranges the cups. You then open your eyes and pick a cup at random. You see that it contains a green ball. What is the probability that the other ball under that cup is also green? Explain your answer in terms of conditional probability.
105105
</p>
106106
</statement>
107107
</exercise>

source/exercises/counting-proofs.ptx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
<p>
6363
Use your answers to parts (a) and (b) to give a combinatorial proof of the identity
6464
<me>
65-
{x+y \choose 2} - {x \choose 2} - {y \choose 2} = xy.
65+
{x+y \choose 2} - {x \choose 2} - {y \choose 2} = xy
6666
</me>.
6767

6868
</p>
@@ -141,7 +141,7 @@
141141
<p>
142142
Consider all the triangles you can create using the points shown below as vertices.
143143
Note that we are not allowing degenerate triangles
144-
(ones with all three vertices on the same line)
144+
(ones with all three vertices on the same line),
145145
but we do allow non-right triangles.
146146
</p>
147147

@@ -185,7 +185,7 @@
185185
<li>
186186
<p>
187187
State a binomial identity that your two answers above establish
188-
(that is, give the binomial identity that your two answers a proof for).
188+
(that is, give the binomial identity that your two answers are a proof for).
189189
Then generalize this using <m>m</m>'s and <m>n</m>'s.
190190
</p>
191191
</li>
@@ -469,15 +469,15 @@
469469
<li>
470470
<p>
471471
How many ternary digit strings contain exactly <m>n</m> digits and <m>n-1</m> 2's. (Hint:
472-
where can you put the non-2 digit,
472+
Where can you put the non-2 digit,
473473
and then what could it be?)
474474
</p>
475475
</li>
476476

477477
<li>
478478
<p>
479479
How many ternary digit strings contain exactly <m>n</m> digits and <m>n-2</m> 2's. (Hint:
480-
see previous hint)
480+
See previous hint.)
481481
</p>
482482
</li>
483483

@@ -490,7 +490,7 @@
490490
<li>
491491
<p>
492492
How many ternary digit strings contain exactly <m>n</m> digits and no 2's. (Hint:
493-
what kind of a string is this?)
493+
What kind of a string is this?)
494494
</p>
495495
</li>
496496

@@ -601,7 +601,7 @@
601601
</li>
602602

603603
<li>
604-
<p> Generalize. What if the rules changed and you played a best of <m>9</m> tournament (5 wins required)? What if you played an <m>n</m> game tournament with <m>k</m> wins required to be named champion? </p>
604+
<p> Generalize. What if the rules changed, and you played a best of <m>9</m> tournament (5 wins required)? What if you played an <m>n</m> game tournament with <m>k</m> wins required to be named champion? </p>
605605
</li>
606606
</ol>
607607
</p>

source/practice/counting-probability.ptx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
<task>
321321
<statement>
322322
<p>
323-
Compare the probability of getting two tails when flipping a coin twice to the probability of drawing a two red cards (without replacement).
323+
Compare the probability of getting two tails when flipping a coin twice to the probability of drawing two red cards (without replacement).
324324
</p>
325325
<p>
326326
<m>P(\text{2 tails}) =</m><var name="Compute(1/4)" width="10" />; <m>P(\text{2 reds}) = </m> <var name="Compute((4*3)/(8*7))" width="10" />. Difference: <var name="Compute(1/28)" width="10" />
@@ -330,7 +330,7 @@
330330
<task>
331331
<statement>
332332
<p>
333-
Compare the probability of getting three tails when flipping a coin thrice to the probability of drawing a three red cards (without replacement).
333+
Compare the probability of getting three tails when flipping a coin thrice to the probability of drawing three red cards (without replacement).
334334
</p>
335335
<p>
336336
<m>P(\text{3 tails}) =</m><var name="Compute(1/8)" width="10" />; <m>P(\text{3 reds}) = </m> <var name="Compute((4*3*2)/(8*7*6))" width="10" />. Difference: <var name="Compute(3/56)" width="10" />
@@ -340,7 +340,7 @@
340340
<task>
341341
<statement>
342342
<p>
343-
Compare the probability of getting four tails when flipping a coin four times to the probability of drawing a four red cards (without replacement).
343+
Compare the probability of getting four tails when flipping a coin four times to the probability of drawing four red cards (without replacement).
344344
</p>
345345
<p>
346346
<m>P(\text{4 tails}) =</m><var name="Compute(1/16)" width="10" />; <m>P(\text{4 reds}) = </m> <var name="Compute((4*3*2*1)/(8*7*6*5))" width="10" />. Difference: <var name="Compute(27/560)" width="10" />
@@ -440,7 +440,7 @@
440440
<var name="'6/(6^3)'" width="5" />
441441
</p>
442442
<p>
443-
Is it possible for the dice to not all three show different numbers and not all three show the same number? If not, the probability of this happening would be 0. What is the probability?
443+
Is it possible for the dice to show neither all the same nor all different numbers? If so, the probability of this happening would be 0. What is the probability?
444444
</p>
445445
<p>
446446
<var name="'1-((6*5*4)/(6^3)+6/(6^3))'" width="5" />

source/practice/counting-proofs.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</statement>
1212
<blocks>
1313
<block order="1">
14-
<choice correct="yes"><p>Consider the question <q>How many two-digit numbers start with a 3 or 4?</q></p></choice>
15-
<choice><p>Consider the question <q>How many 2-topping pizzas can you make choosing from 10 toppings?</q></p></choice>
14+
<choice correct="yes"><p>Consider the question, <q>How many two-digit numbers start with a 3 or 4?</q></p></choice>
15+
<choice><p>Consider the question, <q>How many 2-topping pizzas can you make choosing from 10 toppings?</q></p></choice>
1616
</block>
1717
<block order="2">
1818
<p>The first way to answer this is <m>10+10</m>.</p>

0 commit comments

Comments
 (0)