FormattingDecimals

From WeBWorK_wiki
Revision as of 14:59, 16 January 2010 by Pearson (talk | contribs) (New page: <h2>Formatting Decimals: PG Code Snippet</h2> <!-- Header for these sections -- no modification needed --> <p style="background-color:#eeeeee;border:black solid 1px;padding:3px;"> <em...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Formatting Decimals: PG Code Snippet


We show how to format decimals for display in PG problems. Note that these are insertions, not a complete PG file. This code will have to be incorporated into the problem file on which you are working.

Problem Techniques Index

PG problem file Explanation
loadMacros("PGstandard.pl","MathObjects.pl");

Initialization: Standard.

$b = random(3,7,1);
# log is natural log, and ln is also natural log
$a = sprintf("%0.3f", log($b)/log(10) );

Setup: Use perl's sprintf( format, number ); command to format the decimal. The "%0.3f" portion truncates after 3 decimal places and uses zeros (not spaces) to right-justify. For answers involving money, you should set "%0.2f" for two decimal places and zero filling. You can do a web search for more options to perl's sprintf, and also for WeBWorK's contextCurrency.pl. If you do further calculations with $a, be aware that numerical error may be an issue since you've reduced the number of decimal places.

BEGIN_TEXT

\( $a = \) \{ ans_rule(20) \}

END_TEXT

Main Text: Display the formatted number.

ANS( $a->cmp() );

Answer Evaluation: Standard.

Problem Techniques Index