Skip to content

Commit 52142b4

Browse files
authored
Merge pull request #1324 from jeis4wpi/main
Propose fix some typos
2 parents 2d1bb55 + 239b805 commit 52142b4

File tree

33 files changed

+233
-243
lines changed

33 files changed

+233
-243
lines changed

Contrib/Mizzou/Finite_Math/Syllabus_Quesions/1300prereqsQuestion.pg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $tf->rf_print_q(~~&pop_up_list_print_q);
1919

2020
# What should the pop-up list contain, and what string should it
2121
# submit for an answer when selected?
22-
# These are specified in the statment below.
22+
# These are specified in the statement below.
2323
# To enter T as an answer choose the list element "True"
2424
# To enter F as an answer choose the list element "False"
2525
# The first choice is a blank to make the students do SOMETHING!!!

Contrib/Mizzou/Finite_Math/Syllabus_Questions/1300prereqsQuestion.pg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $tf->rf_print_q(~~&pop_up_list_print_q);
1919

2020
# What should the pop-up list contain, and what string should it
2121
# submit for an answer when selected?
22-
# These are specified in the statment below.
22+
# These are specified in the statement below.
2323
# To enter T as an answer choose the list element "True"
2424
# To enter F as an answer choose the list element "False"
2525
# The first choice is a blank to make the students do SOMETHING!!!

OpenProblemLibrary/ASU-topics/setRateChange/s1_1_5.pg

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ BEGIN_TEXT
3434
If a ball is thrown straight up into the air with an initial
3535
velocity of \( $v0 \) ft/s, its height in feet after \( t \)
3636
second is given by \( y = {$v0}t - 16t^2 \). Find the average
37-
velocity (include units, \{ AnswerFormatHelp("units") \}) for the time period begining when \( t = $t0 \) seconds and lasting
38-
$PAR
37+
velocity (include units, \{ AnswerFormatHelp("units") \}) for the time period beginning when \( t = $t0 \) seconds and lasting
38+
$PAR
3939
(i) \( 0.5 \) seconds $BR
40-
Average velocity:\{ans_rule(35) \}
40+
Average velocity:\{ans_rule(35) \}
4141
$PAR
4242
(ii) \( 0.1 \) seconds $BR
43-
Average velocity:\{ans_rule(35) \}
43+
Average velocity:\{ans_rule(35) \}
4444
$PAR
4545
(iii) \( 0.01 \) seconds $BR
46-
Average velocity: \{ans_rule(35) \}
46+
Average velocity: \{ans_rule(35) \}
4747
$BR $BR
4848
Finally based on the above results, guess what the instantaneous
4949
velocity of the ball is when \( t =$t0 \). $BR
@@ -63,4 +63,3 @@ $ans4 = NumberWithUnits("$v0-32*$t0 ft/s");
6363
ANS($ans4->cmp);
6464

6565
ENDDOCUMENT(); # This should be the last executable line in the problem.
66-

OpenProblemLibrary/ASU-topics/setStat/kolossa54.pg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ $mc -> extra($ans[1-$tag]);
5252

5353
BEGIN_TEXT
5454
According to a recent marketing campaign, \($n\) drinkers of either Diet Coke or Diet Pepsi participated in a
55-
blind taste test to see which of the drinks was their favorite. In one Pepsi television commercial, an
56-
anouncer states that "in recent blind taste tests, more than one half
55+
blind taste test to see which of the drinks was their favorite. In one Pepsi television commercial, an
56+
announcer states that "in recent blind taste tests, more than one half
5757
of the surveyed preferred Diet Pepsi over Diet Coke." Suppose that out of those \($n\), \($n1\)
5858
preferred Diet Pepsi. Test the hypothesis, using \(\alpha = $a\) that more than half of all participants will select Diet Pepsi
5959
in a blind taste test by giving the following: $BR

OpenProblemLibrary/AlfredUniv/diffeq/separablePDE/separate3.pg

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $multiansEqual = MultiAnswer($Xequal,$Tequal,$uequal)->with(
7575
my $T1 = $Tstu->substitute(C=>1,D=>0);
7676
my $T2 = $Tstu->substitute(C=>0,D=>1);
7777
my $Tscore = 1;
78-
# check diff. eq.
78+
# check diff. eq.
7979
if (!($T1->D('t','t')==Formula(0))){ $Tscore = 0; }
8080
if (!($T2->D('t','t')==Formula(0))){ $Tscore = 0; }
8181
# check wronskiian
@@ -107,8 +107,8 @@ $multiansLess = MultiAnswer($Xless,$Tless,$uless)->with(
107107
my $X2 = $Xstu->substitute(A=>0,B=>1);
108108
my $Xscore = 1; #optimistic!
109109
# check diff. eq. for X
110-
my $dX1 = $X1->D('x');
111-
my $dX2 = $X2->D('x');
110+
my $dX1 = $X1->D('x');
111+
my $dX2 = $X2->D('x');
112112
my $ddX1 = $dX1->D('x');
113113
my $ddX2 = $dX2->D('x');
114114
if ( !($ddX1 == $w**2*$X1)){ $Xscore = 0; }
@@ -123,9 +123,9 @@ $multiansLess = MultiAnswer($Xless,$Tless,$uless)->with(
123123
my $T1 = $Tstu->substitute(C=>1,D=>0);
124124
my $T2 = $Tstu->substitute(C=>0,D=>1);
125125
my $Tscore = 1;
126-
# check diff. eq.
127-
my $dT1 = $T1->D('t');
128-
my $dT2 = $T2->D('t');
126+
# check diff. eq.
127+
my $dT1 = $T1->D('t');
128+
my $dT2 = $T2->D('t');
129129
my $ddT1 = $dT1->D('t');
130130
my $ddT2 = $dT2->D('t');
131131
if ( !($ddT1 == $k**2*$w**2*$T1)){ $Tscore = 0; }
@@ -157,8 +157,8 @@ $multiansGreater = MultiAnswer($Xgreater,$Tgreater,$ugreater)->with(
157157
my $X2 = $Xstu->substitute(A=>0,B=>1);
158158
my $Xscore = 1; #optimistic!
159159
# check diff. eq. for X
160-
my $dX1 = $X1->D('x');
161-
my $dX2 = $X2->D('x');
160+
my $dX1 = $X1->D('x');
161+
my $dX2 = $X2->D('x');
162162
my $ddX1 = $dX1->D('x');
163163
my $ddX2 = $dX2->D('x');
164164
if ( !($ddX1 == -$w**2*$X1)){ $Xscore = 0; }
@@ -173,9 +173,9 @@ $multiansGreater = MultiAnswer($Xgreater,$Tgreater,$ugreater)->with(
173173
my $T1 = $Tstu->substitute(C=>1,D=>0);
174174
my $T2 = $Tstu->substitute(C=>0,D=>1);
175175
my $Tscore = 1;
176-
# check diff. eq.
177-
my $dT1 = $T1->D('t');
178-
my $dT2 = $T2->D('t');
176+
# check diff. eq.
177+
my $dT1 = $T1->D('t');
178+
my $dT2 = $T2->D('t');
179179
my $ddT1 = $dT1->D('t');
180180
my $ddT2 = $dT2->D('t');
181181
if ( !($ddT1 == -$k**2*$w**2*$T1)){ $Tscore = 0; }
@@ -198,27 +198,27 @@ Context()->texStrings;
198198
BEGIN_TEXT
199199
$PAR
200200
The PDE \[k^2\frac{\partial^2 u}{\partial x^2}=\frac{\partial^2 u}{\partial t^2}\]
201-
is separable, so we'll look for solutions of the form
202-
\[u(x,t) = X(x)T(t).\]
201+
is separable, so we'll look for solutions of the form
202+
\[u(x,t) = X(x)T(t).\]
203203
This leads us to a Sturm-Liouville problem.
204-
$PAR Plug the formula for \(u\) into the PDE, then separate the variables.
204+
$PAR Plug the formula for \(u\) into the PDE, then separate the variables.
205205
$BR $BBOLD Note: $EBOLD In your answer, put all the \(X\)'s on the left answer blank. Put all the \(T\)'s and the constant \(k\) in the right answer blank. Use the prime notation for derivatives, so the derivative of \(X\) is written as \(X^\prime\). Do NOT use \(X^\prime(x)\)
206-
$BR The result is
206+
$BR The result is
207207
$BR
208208
\{ans_rule\} = \{ans_rule\} = \(-L\)
209209
$BR
210210
where \(L\) is a constant.
211211
$BR
212212
$PAR
213-
This separates into two independent ordinary differential equations, which can be solved separately
213+
This separates into two independent ordinary differential equations, which can be solved separately
214214
$BR
215215
DE in X: \{ans_rule\} \( = 0\)
216216
$BR
217217
DE in T: \{ans_rule\} \( = 0\)
218218
$PAR
219-
219+
220220
$PAR Find the general solutions for the these these ODEs, and use them to find the solution \(u(x,t)\). $BR Use \(A\) and \(B\) for arbitrary constants in the general solution for \(X\).
221-
$BR Use \(C\) and \(D\) for arbitary constants in the general solution for \(T\).
221+
$BR Use \(C\) and \(D\) for arbitrary constants in the general solution for \(T\).
222222
$BR There are three cases:
223223
$BR
224224
$BBOLD Case 1: $EBOLD \(L = 0\)
@@ -229,7 +229,7 @@ $BR
229229
$BR
230230
\(u = \) \{$multiansEqual->ans_rule(60)\}
231231
$BR
232-
$BBOLD Case 2: $EBOLD \(L = -w^2\) where \(w\) is some positive number.
232+
$BBOLD Case 2: $EBOLD \(L = -w^2\) where \(w\) is some positive number.
233233
$BR
234234
\(X(x) = \) \{$multiansLess->ans_rule(40)\} (A,B are constants.)
235235
$BR

OpenProblemLibrary/LoyolaChicago/Precalc/Chap1Sec3/Q24.pg

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,24 +64,24 @@ $extra = 1000;
6464
$more_units = $extra*$m;
6565

6666
$checkbox_mc = new_checkbox_multiple_choice();
67-
$checkbox_mc -> qa('Which of the following statements CORRECTLY explains the
68-
meaning of the slope? (select all as there may be more
69-
than one correct statment)',
70-
'If the company spends an additional ${DOLLAR}$extra on advertising, it
71-
will increases the number of units it sells by $more_units .',
72-
'In order to sell one more unit, the company would need to increase the
67+
$checkbox_mc -> qa('Which of the following statements CORRECTLY explains the
68+
meaning of the slope? (select all as there may be more
69+
than one correct statement)',
70+
'If the company spends an additional ${DOLLAR}$extra on advertising, it
71+
will increases the number of units it sells by $more_units .',
72+
'In order to sell one more unit, the company would need to increase the
7373
amount it spends on advertising by ${DOLLAR}$n .');
7474

75-
$checkbox_mc -> extra('If the company spends an additional ${DOLLAR}$m on
75+
$checkbox_mc -> extra('If the company spends an additional ${DOLLAR}$m on
7676
advertising, it will sell one more additional unit.',
77-
'If the company increases the amount of money it spends on advertising
77+
'If the company increases the amount of money it spends on advertising
7878
by ${DOLLAR}$b, it will double the number of units it sells.');
7979

8080
$checkbox_mc -> makeLast('None of the above');
8181

8282
BEGIN_TEXT
8383

84-
A company finds that there is a linear relationship between the amount of money that it spends on advertising and the number of units it sells. If it spends no money on advertising it sells $b units. For each additional ${DOLLAR}$dx spent, an additional $dy units are sold.
84+
A company finds that there is a linear relationship between the amount of money that it spends on advertising and the number of units it sells. If it spends no money on advertising it sells $b units. For each additional ${DOLLAR}$dx spent, an additional $dy units are sold.
8585
$PAR
8686
a) If \(x\) is the amount of money that the company spends on advertising, find a formula for \(y\), the number of units sold as a function of \(x\). (Do not use commas in your formula.)
8787
$BR

OpenProblemLibrary/LoyolaChicago/Precalc/Chap1Sec4/Q42.pg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ a) Find a formula for the velocity of the bottle as a function of the time since
8787
$BR
8888
\( v = \) \{ ans_rule(30) \}
8989
$PAR
90-
b) For each feature of the graph listed below, match one of the statments A-G which best explains its practical meaning.
90+
b) For each feature of the graph listed below, match one of the statements A-G which best explains its practical meaning.
9191
\{ $ml -> print_q \}
9292
\{$ml -> print_a \}
9393

OpenProblemLibrary/MC/PreAlgebra/setPreAlgebraC02S01/ArithmeticProperties01.pg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
########################################################################
2424

25-
DOCUMENT();
25+
DOCUMENT();
2626

2727
loadMacros(
2828
"PGstandard.pl",
@@ -92,7 +92,7 @@ $popup[$r[0]] = PopUp(["Choose Property?", "$IPA", "$IPM", "$CPA", "$CPM", "$APA
9292
Context()->texStrings;
9393

9494
BEGIN_TEXT
95-
Identify the appropriate property demonstrated in the following statments:
95+
Identify the appropriate property demonstrated in the following statements:
9696
$PAR
9797
$BCENTER
9898

@@ -126,4 +126,4 @@ ANS( $popup[3]->cmp() );
126126
ANS( $popup[4]->cmp() );
127127
ANS( $popup[5]->cmp() );
128128

129-
ENDDOCUMENT();
129+
ENDDOCUMENT();

OpenProblemLibrary/MC/PreAlgebra/setPreAlgebraC02S01/ArithmeticProperties02.pg

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
########################################################################
2424

25-
DOCUMENT();
25+
DOCUMENT();
2626

2727
loadMacros(
2828
"PGstandard.pl",
@@ -108,32 +108,32 @@ $popup2[$r[0]] = PopUp(["?", "$op1", "$op2", "$op3"], $op2);
108108
Context()->texStrings;
109109

110110
BEGIN_TEXT
111-
Identify the appropriate property demonstrated in the following statments:
111+
Identify the appropriate property demonstrated in the following statements:
112112
$PAR
113113

114114
1. $exp1[0] \{ $popup2[0]->menu() \} $exp2[0]
115115
$BR
116-
\{ $popup1[0]->menu() \}
116+
\{ $popup1[0]->menu() \}
117117
$PAR
118118
2. $exp1[1] \{ $popup2[1]->menu() \} $exp2[1]
119119
$BR
120-
\{ $popup1[1]->menu() \}
120+
\{ $popup1[1]->menu() \}
121121
$PAR
122122
3. $exp1[2] \{ $popup2[2]->menu() \} $exp2[2]
123123
$BR
124-
\{ $popup1[2]->menu() \}
124+
\{ $popup1[2]->menu() \}
125125
$PAR
126126
4. $exp1[3] \{ $popup2[3]->menu() \} $exp2[3]
127127
$BR
128-
\{ $popup1[3]->menu() \}
128+
\{ $popup1[3]->menu() \}
129129
$PAR
130130
5. $exp1[4] \{ $popup2[4]->menu() \} $exp2[4]
131131
$BR
132-
\{ $popup1[4]->menu() \}
132+
\{ $popup1[4]->menu() \}
133133
$PAR
134134
6. $exp1[5] \{ $popup2[5]->menu() \} $exp2[5]
135135
$BR
136-
\{ $popup1[5]->menu() \}
136+
\{ $popup1[5]->menu() \}
137137

138138
END_TEXT
139139
Context()->normalStrings;
@@ -157,4 +157,4 @@ ANS( $popup1[4]->cmp() );
157157
ANS( $popup2[5]->cmp() );
158158
ANS( $popup1[5]->cmp() );
159159

160-
ENDDOCUMENT();
160+
ENDDOCUMENT();

OpenProblemLibrary/NAU/setExponentialModeling/exponentialgrowth1.pg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Location: Northern Arizona University
1717
# Course:Quantitative Reasoning
1818

19-
DOCUMENT();
19+
DOCUMENT();
2020
loadMacros(
2121
"PGstandard.pl",
2222
"PGcourse.pl"
@@ -25,7 +25,7 @@ loadMacros(
2525
TEXT( beginproblem ( ) );
2626
$showPartialCorrectAnswers = 1;
2727

28-
$total1 = random( 1000, 10000, 1 );
28+
$total1 = random( 1000, 10000, 1 );
2929

3030
$rate = random( 3, 10, .1 );
3131

@@ -40,7 +40,7 @@ $ans1 = $total1 * ( 1 + $rate/100 ) ** $n1;
4040
do{ $total2 = random( 1000000, 25000000, 1 );
4141
} until( $total2 > $ans1 );
4242

43-
$n2 = ln( $total2 / $total1 ) / ln( 1 + $rate / 100 );
43+
$n2 = ln( $total2 / $total1 ) / ln( 1 + $rate / 100 );
4444
$ans2 = $year1 + int( $n2 );
4545

4646
if( $total1 < 10 ** 6 ){ $th1 = int( $total1 / 1000 );
@@ -64,7 +64,7 @@ if( $total2 < 10 ** 9 ){ $m = int( $total2 / 10 ** 6 );
6464

6565
BEGIN_TEXT
6666

67-
A city had a population of $pop1 at the begining of $year1 and has been growing at
67+
A city had a population of $pop1 at the beginning of $year1 and has been growing at
6868
$rate$PERCENT per year since then.$PAR
6969
(a) Find the size of the city at the beginning of $year2.
7070
$BR

0 commit comments

Comments
 (0)