Parent Directory
|
Revision Log
Added tags. --JH
1 ## DESCRIPTION 2 ## Calculus 3 ## ENDDESCRIPTION 4 5 ## KEYWORDS('limit') 6 ## Tagged by tda2d 7 8 ## DBsubject('Calculus') 9 ## DBchapter('Partial Derivatives') 10 ## DBsection('Limits and Continuity') 11 ## Date('') 12 ## Author('') 13 ## Institution('Dartmouth') 14 ## TitleText1('Calculus') 15 ## EditionText1('5') 16 ## AuthorText1('Stewart') 17 ## Section1('15.2') 18 ## Problem1('') 19 20 DOCUMENT(); 21 loadMacros("PG.pl", 22 "PGbasicmacros.pl", 23 "PGchoicemacros.pl", 24 "PGanswermacros.pl", 25 "PGauxiliaryFunctions.pl", 26 "PGgraphmacros.pl", 27 "Dartmouthmacros.pl"); 28 29 30 ## Do NOT show partial correct answers 31 $showPartialCorrectAnswers = 0; 32 33 $k = random(2,9)*non_zero_random(-1,1); 34 35 36 37 ## Ok, we are ready to begin the problem... 38 ## 39 TEXT(beginproblem()); 40 41 42 BEGIN_TEXT 43 $BR 44 45 Find the limit 46 \[ 47 \lim_{(x,y) \to (0, 0)}\frac{($k x + y)^2}{\{$k*$k\}x^2 + y^2} 48 \] 49 \{ans_rule()\} (Enter dne if the limit does not exist) 50 $PAR 51 END_TEXT 52 53 ANS(str_cmp("dne")); 54 55 ENDDOCUMENT(); 56 57 58 59
| aubreyja at gmail dot com | ViewVC Help |
| Powered by ViewVC 1.0.9 |