Skip to content

Commit 1e8b9d4

Browse files
committed
Fix bug 4682
1 parent aa5d6d0 commit 1e8b9d4

File tree

1 file changed

+2
-2
lines changed
  • OpenProblemLibrary/Michigan/gateways/derivative/topic_symbolic

1 file changed

+2
-2
lines changed

OpenProblemLibrary/Michigan/gateways/derivative/topic_symbolic/prob31.pg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ $showPartialCorrectAnswers = 1;
1717
Context('Numeric');
1818
Context()->variables->are( a=>'Real', b=>'Real', c=>'Real', p=>'Real');
1919

20-
$ans = "(a*b)*cos(b*p + c)";
20+
$ans = "(c*b)*cos(b*p + a)";
2121

2222
# for information about tutorial cgi, contact the UMich repository owner
2323
# $tut = htmlLink("http://[local location of tutorial cgi]" .
2424
# "gwderivtut?pnum=737","rule for constant multiples,"");
2525

2626
Context()->texStrings;
2727
BEGIN_TEXT
28-
Differentiate \(B(p) = a \sin(b p + c)\), where \(a,b\) and \(c\) are constants
28+
Differentiate \(B(p) = c \sin(b p + a)\), where \(a,b\) and \(c\) are constants
2929
$BR
3030
Answer: \( B'(p) = \) \{ans_rule(55)\}
3131
END_TEXT

0 commit comments

Comments
 (0)