Difference between revisions of "SequentialProblems"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
==Resources and New Features== |
==Resources and New Features== |
||
− | * Currently available macros for creating '''compound problems''' |
||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==== creating multi-answer problems ==== |
||
+ | * This feature is pretty stable: the macro file <code>parserMultiAnswer.pl</code> is now part of the WeBWorK distribution. |
||
+ | ** Here are some http://hosted2.webwork.rochester.edu/webwork2/byerly_course/MultAnswer/?login_practice_user=true">sample problems</a> from Bob. |
||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ==== creating compound problems ==== |
||
** http://hosted2.webwork.rochester.edu/webwork2_course_files/cervone_course/compoundProblem.tgz Archive of Davide's problems and macros ''(to use, upload into the templates directory of your course; see the comments in the compoundProblems.pl file for information on use.)'' |
** http://hosted2.webwork.rochester.edu/webwork2_course_files/cervone_course/compoundProblem.tgz Archive of Davide's problems and macros ''(to use, upload into the templates directory of your course; see the comments in the compoundProblems.pl file for information on use.)'' |
||
Line 23: | Line 34: | ||
** http://hosted2.webwork.rochester.edu/webwork2/grainger_course/ sample (Chain Rule) problem from Art Grainger Log on with<br />username: <font color="#ff0000">Test</font> <br />password: <font color="#ff0000">Test</font><br />Open problem set Post Chain Rule and do problem 4.<br /> |
** http://hosted2.webwork.rochester.edu/webwork2/grainger_course/ sample (Chain Rule) problem from Art Grainger Log on with<br />username: <font color="#ff0000">Test</font> <br />password: <font color="#ff0000">Test</font><br />Open problem set Post Chain Rule and do problem 4.<br /> |
||
− | |||
− | * Currently available macros for creating '''multi-answer problems''': the macro file is now part of the WeBWorK distribution. |
||
− | ** Here are some http://hosted2.webwork.rochester.edu/webwork2/byerly_course/MultAnswer/?login_practice_user=true">sample problems</a> from Bob. |
||
*Desired but currently unimplemented features for '''compound problems''': |
*Desired but currently unimplemented features for '''compound problems''': |
Revision as of 14:35, 4 June 2014
Contents
Documentation and Goals
Note that we use two terms for multi-part and/or compound problems:
- Compound Problems (also called MultiPart, or sequential problem or (most recently) Scaffolded Problems)
- have multiple parts that are displayed in sequence, and for which subsequent parts are not shown until conditions are satisfied about previous parts (e.g., until the earlier parts are correct).
- For example, in a problem that asks for the derivative of a problem that requires the chain rule, the problem may ask for the inner and outer functions in the function that is being differentiated. After the student has correctly identified those, the second part of the problem would be shown, which asks for the actual derivative of the inner and outer functions. Finally, once that is done correctly, the problem would ask for the actual derivative.
- Multi-Answer Problems
- (previously, Multi-part) are problems with multiple answer blanks (shown at once), for which several answer blanks are treated together, so that the provided answers may be used to evaluate the correctness of other answers.
- For example, the problem may have two answer blanks, the first of which may ask for a function modeling some situation and the second of which asks for the derivative of the function. Then the second problem part could be marked correct as long as it was the correct derivative of the first part, even if the first part was not the correct function.
Resources and New Features
creating multi-answer problems
- This feature is pretty stable: the macro file
parserMultiAnswer.pl
is now part of the WeBWorK distribution.- Here are some http://hosted2.webwork.rochester.edu/webwork2/byerly_course/MultAnswer/?login_practice_user=true">sample problems</a> from Bob.
creating compound problems
- http://hosted2.webwork.rochester.edu/webwork2_course_files/cervone_course/compoundProblem.tgz Archive of Davide's problems and macros (to use, upload into the templates directory of your course; see the comments in the compoundProblems.pl file for information on use.)
- newer versions of compound problems are being developed. currently the macros are in
macros/compoundProblem5.pl
. Stay tuned. Examples can be found in the course at https://hosted2.webwork.rochester.edu/webwork2/2014JMM_linear_optimization/. - http://hosted2.webwork.rochester.edu/webwork2/clark_course/karen-labs/2/?login_practice_user=true a sample problem from Karen.
- http://hosted2.webwork.rochester.edu/webwork2/clark_course/ThursdayAM/3/?login_practice_user=true sample calculus problem from Karen's talk but with all unnecessary and just plain wrong stuff removed by Davide.
- http://hosted2.webwork.rochester.edu/webwork2/grainger_course/ sample (Chain Rule) problem from Art Grainger Log on with
username: Test
password: Test
Open problem set Post Chain Rule and do problem 4.
- http://hosted2.webwork.rochester.edu/webwork2/grainger_course/ sample (Chain Rule) problem from Art Grainger Log on with
- Desired but currently unimplemented features for compound problems:
- Having different parts of a compound problem have different number of attempts.
- Scrambling the order in which the different parts of a problem show up.
- Allowing some parts of the problem to have no answer blanks, being only informational. (done in compoundProblem5)
- Adding an "I give up" option that allows someone to advance to the next part of the problem while forfeiting credit on that part. This would need a criterion for when to display that option (e.g., after three wrong attempts?).
- Having a problem that looks normal, but then if someone misses it (enough times), they have a way to do it as a compound problem to step through the problem incrementally, possibly for reduced credit.
- Adding a way for the instructor to see the entire problem (all parts) at once (e.g., in the Library Browser).
- Having a way for someone to get multiple versions of a problem, e.g., drawn from a testbank.
- Having students see when they open the problem that it is a sequential problem, and how many parts it includes. At each part of the problem students should see this information. (done in compoundProblem5)
- Allowing an option to be set so that students can go back and see the parts of the problem that they've already completed. (done in compoundProblem5)
Uses for Compound Problems
- A tutorial system: force students to work through the multiple steps of a problem.
- Multi-step problems that use the information about the previous part to figure out what is displayed in subsequent parts. This may also force students to do more than solve a problem on their calculator.