Skip to content

Commit a562925

Browse files
committed
New problems.
1 parent 1788a40 commit a562925

File tree

6 files changed

+187
-7
lines changed

6 files changed

+187
-7
lines changed

Contrib/NAU/setCalcIII/DrAcula.pg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ c. The gradient of \( S \) is \( \nabla S(r,h) = \) ( \{ $ans3->ans_rule(15)\}
6060
$PAR
6161
d. The gradient of \( V \) is \( \nabla V(r,h) = \) ( \{ $ans5->ans_rule(15)\} , \{ $ans6->ans_rule(15)\} ).
6262
$PAR
63-
In the last century it became fashionable to serve plasma in cans that have a volume of \( $v \) cubic huvelyk. Dr. Acula likes to follow current trends.
63+
In the last century it became fashionable to serve plasma in cans that have a volume of \( $v \) cubic inches. Dr. Acula likes to follow current trends.
6464
$PAR
65-
e. The best choice for the radius of the can is \( r_{\text{opt}} = \) \{ $ans7->ans_rule(15)\} huvelyk.
65+
e. The best choice for the radius of the can is \( r_{\text{opt}} = \) \{ $ans7->ans_rule(15)\} inches.
6666
$PAR
67-
f. The best choice for the height of the can is \( h_{\text{opt}} = \) \{ $ans8->ans_rule(15)\} huvelyk.
67+
f. The best choice for the height of the can is \( h_{\text{opt}} = \) \{ $ans8->ans_rule(15)\} inches.
6868
$PAR
69-
g. The surface area of the can cannot be smaller than \( S(r_{\text{opt}},h_{\text{opt}}) = \) \{ $ans9->ans_rule(35)\} square huvelyk.
69+
g. The surface area of the can cannot be smaller than \( S(r_{\text{opt}},h_{\text{opt}}) = \) \{ $ans9->ans_rule(35)\} square inches.
7070

7171

7272
END_TEXT
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
##DESCRIPTION
2+
## DBsubject(Geometry)
3+
## DBchapter(Vector geometry)
4+
## DBsection(Cross product)
5+
## Institution(NAU)
6+
## Author(Nandor Sieben)
7+
## Level(3)
8+
## MO(1)
9+
##ENDDESCRIPTION
10+
# File Created: 1/16/22
11+
12+
13+
DOCUMENT();
14+
15+
loadMacros(
16+
"PGstandard.pl",
17+
"MathObjects.pl",
18+
"AnswerFormatHelp.pl",
19+
"unorderedAnswer.pl",
20+
);
21+
22+
TEXT(beginproblem());
23+
24+
Context("Numeric");
25+
26+
$p = random(0,9,1);
27+
28+
$answer1 = Compute("-sqrt(1+$p)");
29+
$answer2 = Compute("sqrt(1+$p)");
30+
31+
Context()->texStrings;
32+
BEGIN_TEXT
33+
Let \( x=(a,2,$p) \) and \( y=(1,2,a)\). Find \( a \) if the second component of \( x\times y \) is \( -1 \).
34+
$BR
35+
\( a = \)
36+
\{ ans_rule(5) \}
37+
or
38+
\( a = \)
39+
\{ ans_rule(5) \}
40+
END_TEXT
41+
Context()->normalStrings;
42+
43+
$showPartialCorrectAnswers = 1;
44+
45+
UNORDERED_ANS(
46+
$answer1->cmp(),
47+
$answer2->cmp(),
48+
);
49+
50+
ENDDOCUMENT();

Contrib/NAU/setCalcIII/divergence2D.pg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
##DESCRIPTION
22
## DBsubject(Calculus - multivariable)
33
## DBchapter(Fundamental theorems)
4-
## DBsection(Divergence theorem)
4+
## DBsection(Green's theorem)
55
## Institution(NAU)
66
## Author(Nandor Sieben)
7-
## Level(2)
7+
## Level(3)
88
## MO(1)
99
##ENDDESCRIPTION
1010
# File Created: 4/2/17
@@ -28,7 +28,7 @@ TEXT(beginproblem());
2828

2929
Context()->texStrings;
3030
BEGIN_TEXT
31-
Let \(F(x,y)=($a x , $b y ) \). Find the area of the region \( R\subseteq \mathbb{R}^2 \) if the flux of \( F \) through the boundary \(\partial R \) of \( R \) is \(\int_{\partial R}F\cdot N = $c \).
31+
Let \(F(x,y)=($a x , $b y ) \). Find the area of the closed, bounded region \( R\subseteq \mathbb{R}^2 \) if the flux of \( F \) through the boundary \(\partial R \) of \( R \) is \(\int_{\partial R}F\cdot N = $c \).
3232
$BR
3333
area\( (R)= \) \{ ans_rule(35) \}
3434

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
##DESCRIPTION
2+
## DBsubject(Geometry)
3+
## DBchapter(Vector geometry)
4+
## DBsection(Dot product, length, and unit vectors)
5+
## Institution(NAU)
6+
## Author(Nandor Sieben)
7+
## Level(3)
8+
## MO(1)
9+
##ENDDESCRIPTION
10+
# File Created: 1/16/22
11+
12+
13+
DOCUMENT();
14+
15+
loadMacros(
16+
"PGstandard.pl",
17+
"MathObjects.pl",
18+
"AnswerFormatHelp.pl",
19+
"unorderedAnswer.pl",
20+
);
21+
22+
TEXT(beginproblem());
23+
24+
Context("Numeric");
25+
26+
$answer1 = Compute("-1/2");
27+
$answer2 = Compute("1");
28+
29+
Context()->texStrings;
30+
BEGIN_TEXT
31+
Find \( x \) if the vectors \( (x-3,x+3,1) \) and \( (x,x-1,2)\) are orthogonal.
32+
$BR
33+
\( x = \)
34+
\{ ans_rule(5) \}
35+
or
36+
\( x = \)
37+
\{ ans_rule(5) \}
38+
END_TEXT
39+
Context()->normalStrings;
40+
41+
$showPartialCorrectAnswers = 1;
42+
43+
UNORDERED_ANS(
44+
$answer1->cmp(),
45+
$answer2->cmp(),
46+
);
47+
48+
ENDDOCUMENT();
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
##DESCRIPTION
2+
## DBsubject(Calculus - multivariable)
3+
## DBchapter(Calculus of vector valued functions)
4+
## DBsection(Integrals)
5+
## Institution(NAU)
6+
## Author(Nandor Sieben)
7+
## Level(3)
8+
## MO(1)
9+
##ENDDESCRIPTION
10+
# File Created: 1/16/22
11+
12+
13+
DOCUMENT();
14+
15+
loadMacros(
16+
"PGstandard.pl",
17+
"MathObjects.pl",
18+
"AnswerFormatHelp.pl",
19+
);
20+
21+
TEXT(beginproblem());
22+
23+
Context("Numeric");
24+
25+
$p = non_zero_random(-9,9,1);
26+
27+
$answer = Compute("sqrt(1+($p)^2)");
28+
29+
BEGIN_TEXT
30+
Find \( \|r(0)\| \) if \( r'(t)=(\cos(2t),2t,e^t) \) and \( r(0)=($p,1,0) \).
31+
$BR
32+
\( \|r(0)\| = \)
33+
\{ ans_rule(5) \}
34+
END_TEXT
35+
36+
$showPartialCorrectAnswers = 1;
37+
38+
ANS( $answer->cmp() );
39+
40+
ENDDOCUMENT();
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
##DESCRIPTION
2+
## DBsubject(Geometry)
3+
## DBchapter(Vector geometry)
4+
## DBsection(Vectors and vector arithmetic)
5+
## Institution(NAU)
6+
## Author(Nandor Sieben)
7+
## Level(3)
8+
## MO(1)
9+
##ENDDESCRIPTION
10+
# File Created: 1/16/22
11+
12+
13+
DOCUMENT();
14+
15+
loadMacros(
16+
"PGstandard.pl",
17+
"MathObjects.pl",
18+
"AnswerFormatHelp.pl",
19+
);
20+
21+
TEXT(beginproblem());
22+
23+
Context("Numeric");
24+
25+
$p = random(-9,9,1);
26+
27+
$answer = Compute("(1+2*$p)/3");
28+
29+
# Context()->texStrings;
30+
BEGIN_TEXT
31+
Let \( A=(4,0,$p) \), \( B=(1,a,b)\), and \( X=(a,b,c)\). Find \( c \) if \( \overrightarrow{AB} = 3 \overrightarrow{AX} \).
32+
$BR
33+
\( c = \)
34+
\{ ans_rule(5) \}
35+
END_TEXT
36+
# Context()->normalStrings;
37+
38+
$showPartialCorrectAnswers = 1;
39+
40+
ANS( $answer->cmp() );
41+
42+
ENDDOCUMENT();

0 commit comments

Comments
 (0)