################################################################################ # WeBWorK Online Homework Delivery System # Copyright © 2000-2003 The WeBWorK Project, http://openwebwork.sf.net/ # $CVSHeader$ # # This program is free software; you can redistribute it and/or modify it under # the terms of either: (a) the GNU General Public License as published by the # Free Software Foundation; either version 2, or (at your option) any later # version, or (b) the "Artistic License" which comes with this package. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the # Artistic License for more details. ################################################################################ DOCUMENT(); loadMacros( "PG.pl", "PGbasicmacros.pl", "PGchoicemacros.pl", "PGanswermacros.pl" ); TEXT($BEGIN_ONE_COLUMN); TEXT(MODES(TeX =>EV3(<<'EOT'),HTML=>"",Latex2HTML=>"")); \noindent {\large \bf $studentName} \hfill \noindent {\large \bf MTH 143 $sectionNumber Spring 2003} \par EOT BEGIN_TEXT $BBOLD WeBWorK assignment number $setNumber is due : $formattedDueDate. $EBOLD $PAR (This is early Friday morning, so it needs to be done THURSDAY night!) Remember to get this done early! $PAR The \{ htmlLink(qq!http://www.math.rochester.edu/courses/143/home/!,"home page") \} for the course contains the syllabus, grading policy, and other information. $PAR END_TEXT ################## # EDIT BELOW HERE ################## BEGIN_TEXT $PAR $PAR END_TEXT ################## # EDIT ABOVE HERE ################## BEGIN_TEXT The primary purpose of WeBWorK is to let you know that you are getting the correct answer or to alert you if you are making some kind of mistake. Usually you can attempt a problem as many times as you want before the due date. However, if you are having trouble figuring out your error, you should consult the book, or ask a fellow student, one of the TA's or your professor for help. Don't spend a lot of time guessing -- it's not very efficient or effective. $PAR Give 4 or 5 significant digits for (floating point) numerical answers. For most problems when entering numerical answers, you can if you wish enter elementary expressions such as \( 2\wedge3 \) instead of 8, \( sin(3*pi/2) \)instead of -1, \( e\wedge (ln(2)) \) instead of 2, \( (2+tan(3))*(4-sin(5))\wedge6-7/8 \) instead of 27620.3413, etc. Here's the \{ htmlLink(qq!http://webwork.math.rochester.edu/docs/docs/pglanguage/availableFunctions.html!,"list of the functions") \} which WeBWorK understands. $PAR You can use the Feedback button on each problem page to send e-mail to the professors. $END_ONE_COLUMN END_TEXT ENDDOCUMENT(); # This should be the last executable line in the problem.