File:
[LON-CAPA] /
loncom /
homework /
templates /
SimpleMathResponse.problem
Revision
1.2:
download - view:
text,
annotated -
select for diffs
Thu Sep 25 01:50:47 2008 UTC (16 years, 7 months ago) by
raeburn
Branches:
MAIN
CVS tags:
version_2_9_X,
version_2_9_1,
version_2_9_0,
version_2_8_X,
version_2_8_99_1,
version_2_8_99_0,
version_2_8_2,
version_2_8_1,
version_2_8_0,
version_2_7_X,
version_2_7_99_1,
version_2_7_99_0,
version_2_7_1,
bz5969,
HEAD,
GCI_2,
GCI_1,
BZ5971-printing-apage,
BZ5434-fox
typo
<problem>
<script type="loncapa/perl">
$x = &random(-1,1,2) * &random(1,5,1);
$y = &random(-1,1,2) * &random(1,3,1);
@args = ($x, $y);
$yaa = $y-3*$x;
if ($yaa > 0) {
$yaa = "+" . $yaa;
} elsif ($yaa == 0) {
$yaa = "";
}
$example = "3x$yaa is an example for a function having constant slope which passes through the point ($x | $y). The slope is not given explicitly, so there are different possibilities for this function.";
</script>
<startouttext />
State a function y(x) with constant slope which passes through the point ($x | $y).<br />
<br />
y(x) =
<endouttext />
<mathresponse answerdisplay="$example" cas="maxima" args="@args">
<answer>
y(x):=RESPONSE[1];
hitspoint:is(abs(y(LONCAPALIST[1]) - LONCAPALIST[2]) <= 0.000000001);
islinear:is(diff(y(x),x,2) = 0);
hitspoint and islinear;
</answer>
<textline readonly="no" size="50" />
</mathresponse>
</problem>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>