Difference between revisions of "FactoringAndExpanding"

From WeBWorK_wiki
Jump to navigation Jump to search
Line 135: Line 135:
 
<pre>
 
<pre>
 
$showPartialCorrectAnswers = 1;
 
$showPartialCorrectAnswers = 1;
  +
  +
install_problem_grader(~~&std_problem_grader);
   
 
ANS( $multians->cmp() );
 
ANS( $multians->cmp() );
Line 143: Line 145:
 
<p>
 
<p>
 
<b>Answer Evaluation:</b>
 
<b>Answer Evaluation:</b>
Everything is as expected.
 
  +
Everything is as expected. We give students feedback on whether their answers are correct by using <code>$showPartialCorrectAnswers = 1;</code>, but withhold credit until both factors are correct by using the standard problem grader.
 
</p>
 
</p>
 
</td>
 
</td>

Revision as of 23:08, 10 April 2010

Factored Answers


This is the PG code to check answers that require students to factor an expression into two pieces that may have a constant factor that could be moved between the pieces.

This example uses adaptive parameters and a MultiAnswer answer evaluator. For more details on these, please see AdaptiveParameters and MultiAnswerProblems.

Problem Techniques Index

PG problem file Explanation
DOCUMENT();

loadMacros(
"PGstandard.pl",
"MathObjects.pl",
"parserMultiAnswer.pl",
);

TEXT(beginproblem());

Initialization: We need to include the parserMultiAnswer.pl answer checker so we can take student answers from multiple answer blanks and check them as a whole.

Context("Numeric");

$fac1 = Compute("(2 x + 3)");
$fac2 = Compute("(8 x + 12)");

$multians = MultiAnswer($fac1,$fac2)->with(
   singleResult => 0,
   allowBlankAnswers => 1,

#  singleResult => 1,  
#  separator => " * ",
#  tex_separator => " \cdot ",

  checker => sub {
    my $correct = shift; my $student = shift; my $self = shift;
    my ($F,$G) = @{$correct};
    my ($f,$g) = @{$student};

    Value::Error('Neither factor can be constant')
    unless $f->isFormula && $g->isFormula;

    Value::Error('Your product does not equal the original (it is incomplete)') 
    unless $F*$G == $f*$g;
#    return 0 unless $F*$G == $f*$g;

    #  use an adaptive parameter 'a'
    my $context = Context()->copy;
    $context->flags->set(no_parameters=>0);
    $context->variables->add('a'=>'Parameter');
    my $a = Formula($context,'a');
    $f = Formula($context,$f);
    my $result = ($a*$F == $f || $a*$G == $f);
    Value::Error('Factor as the product of two linear functions') 
    unless ($result == 1);
    return $result;

  }

);

Setup: This is a standard factoring problem for a non-monic polynomial (where the leading coefficient is not 1 or -1). The MultiAnswer answer checker allows us to collect student answers from several answer blanks and perform answer evaluation on several answer blanks simultaneously. Since it is possible to factor 16 x^2 + 48 x + 36 as (2x + 3) (8x + 12) or (4x + 6) (4x + 6), we need to use an adaptive parameter to allow both of these answers to be marked correct.

The MultiAnswer makes sure that neither factor is constant and that the product of the student's factors equals the product of the correct factors. Then, it creates a copy of the current context as a local context, and creates an adaptive parameter in this local context. The adaptive parameter will allow us to determine whether each factor in the student's answer is equal to a constant multiple of some factor of the correct answer.

Context()->texStrings;
BEGIN_TEXT
Factor the following expression.
$BR
$BR
\( 16 t^2 + 48 t + 36 = \big( \) 
\{$multians->ans_rule(10)\}
\( \big) \big( \) 
\{$multians->ans_rule(10)\}
\( \big) \)
END_TEXT
Context()->normalStrings;

Main Text: Each answer blank must be a method of the $multians object, which is why we use $multians->ans_rule(10). The big parentheses will help students understand what the format of the answer should be.

$showPartialCorrectAnswers = 1;

install_problem_grader(~~&std_problem_grader);

ANS( $multians->cmp() );

ENDDOCUMENT(); 

Answer Evaluation: Everything is as expected. We give students feedback on whether their answers are correct by using $showPartialCorrectAnswers = 1;, but withhold credit until both factors are correct by using the standard problem grader.

Problem Techniques Index