[ww-bugs] Bug 3453: New: Typo
bugzilla-daemon at webwork.maa.org
bugzilla-daemon at webwork.maa.org
Fri Sep 18 17:02:58 EDT 2015
http://bugs.webwork.maa.org/show_bug.cgi?id=3453
Summary: Typo
Product: Problem libraries
Version: unspecified
Platform: PC
URL: /opt/webwork/courses/math309fall2015/templates/Library
/TCNJ/TCNJ_MatrixLinearTransformation/problem1.pg_with
_problemSeed=4273
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: tcnj
AssignedTo: hagedorn at Tcnj.edu
ReportedBy: blake at math.wustl.edu
Web browser ---
version:
These two should agree:
$string1= Formula("$c[0]*$d[0] * x + $c[1]*$d[1] * y")->reduce;
$string2= Formula("$c[2]*$d[2] * x + $c[3]*$d[3] * y")->reduce;
$string3= Formula("$c[4]*$d[4] * x + $c[5]*$d[5] * y")->reduce;
$string4= Formula("$c[6]*$d[5] * x + $c[7]*$d[7] * y")->reduce;
$A = Matrix([
[ $c[0] * $d[0], $c[1] * $d[1] ],
[ $c[2] * $d[2], $c[3] * $d[3] ],
[ $c[4] * $d[4], $c[5] * $d[5] ],
[ $c[6] * $d[5], $c[7] * $d[6] ],
]);
$A should probably be changed to:
$A = Matrix([
[ $c[0] * $d[0], $c[1] * $d[1] ],
[ $c[2] * $d[2], $c[3] * $d[3] ],
[ $c[4] * $d[4], $c[5] * $d[5] ],
[ $c[6] * $d[5], $c[7] * $d[7] ],
]);
--
Configure bugmail: http://bugs.webwork.maa.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
More information about the webwork-bugs
mailing list