Parent Directory
|
Revision Log
Revision 459 - (view) (download)
| 1 : | jj | 61 | ## DESCRIPTION |
| 2 : | jjholt | 459 | ## Instantaneous Rate of Change |
| 3 : | jj | 61 | ## ENDDESCRIPTION |
| 4 : | |||
| 5 : | jjholt | 459 | ## KEYWORDS('instantaneous', 'rate of change', 'application', 'derivative') |
| 6 : | jj | 61 | ## Tagged by YL |
| 7 : | |||
| 8 : | ## DBsubject('Calculus') | ||
| 9 : | jjholt | 459 | ## DBchapter('Differentiation') |
| 10 : | ## DBsection('Rates of Change in the Natural and Social Sciences') | ||
| 11 : | jj | 61 | ## Date('') |
| 12 : | ## Author('') | ||
| 13 : | ## Institution('ASU') | ||
| 14 : | ## TitleText1('Calculus') | ||
| 15 : | ## EditionText1('5e') | ||
| 16 : | ## AuthorText1('Stewart') | ||
| 17 : | jjholt | 459 | ## Section1('3.3') |
| 18 : | jj | 61 | ## Problem1('') |
| 19 : | |||
| 20 : | DOCUMENT(); | ||
| 21 : | |||
| 22 : | loadMacros( | ||
| 23 : | "PG.pl", | ||
| 24 : | "PGbasicmacros.pl", | ||
| 25 : | "PGchoicemacros.pl", | ||
| 26 : | "PGanswermacros.pl", | ||
| 27 : | "PGauxiliaryFunctions.pl" | ||
| 28 : | ); | ||
| 29 : | |||
| 30 : | gage | 268 | TEXT(beginproblem()); |
| 31 : | jj | 61 | $showpartialcorrectanswers = 1; |
| 32 : | |||
| 33 : | $a = random(15,25, 1); | ||
| 34 : | $b = random(1,4,1); | ||
| 35 : | $c = random(6,8,1); | ||
| 36 : | |||
| 37 : | TEXT(EV2(<<EOT)); | ||
| 38 : | If a person learns \(y\) items in \(x\) hours, as given by | ||
| 39 : | \[ y = $a \sqrt[3]{x^2}, \] | ||
| 40 : | find the rate of learning for a person at the end of: | ||
| 41 : | $BR | ||
| 42 : | (A) $b hours: \{ans_rule(30) \} | ||
| 43 : | $BR | ||
| 44 : | EOT | ||
| 45 : | |||
| 46 : | $ans = ((2*$a)/3)*($b**(-1/3)); | ||
| 47 : | gage | 268 | ANS(num_cmp($ans)); |
| 48 : | jj | 61 | |
| 49 : | TEXT(EV2(<<EOT)); | ||
| 50 : | (B) $c hours: \{ans_rule(30) \} | ||
| 51 : | $BR | ||
| 52 : | EOT | ||
| 53 : | |||
| 54 : | $ans = ((2*$a)/3)*($c**(-1/3)); | ||
| 55 : | gage | 268 | ANS(num_cmp($ans)); |
| 56 : | jj | 61 | |
| 57 : | |||
| 58 : | ENDDOCUMENT(); |
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |