Overview of the Grading Package
Calling Sequence
Description
List of Grading Package Commands
Additional Resources
Examples
Compatibility
Grading:-command(arguments)
command(arguments)
The Grading package provides tools for grading.
This package contains commands that generate a practice problem in the form of an interactive application where you can enter the step-by-step solution and then click a button to check your work. The SolvePractice command is the most general of the practice commands, with Feedback providing the backend to checking each step.
The Quiz command and the related QuizBuilder generate quiz questions that accept a response and grade that response. These can be viewed in Maple or deployed to Maple Learn.
One of the other features of this package is a set of commands for grading plots of simple functions. The GradePlot command offers this functionality and allows error tolerances based on the plot's ranges.
Representations of elements to be graded are created through constructor commands such as QuadraticFunction. The generated objects can be constructed from mathematical expressions or data points, such as those obtained through embedded plot components.
Additional utility commands are available in this package for examining or drawing an object created by one of the constructors.
The following is a list of available commands.
Practice and Feedback
DiffPractice
FactorFeedback
FactorPractice
Feedback
IntPractice
IsQuadraticFormula
LimitFeedback
LimitPractice
SimplfyFeedback
SimplifyPractice
SolveFeedback
SolvePractice
Creating Quizzes
Quiz
QuizBuilder
Grading Plots
AbsoluteValueFunction
Draw
ExponentialFunction
Get
GetData
GetDomain
GetExpression
GradePlot
GridPoint
Inequalities
LinearFunction
LogarithmicFunction
QuadraticFunction
Segment
Set
The Quiz Example Worksheet provides a number of examples of quiz creation.
The Student:-Basics:-PracticeSheet command and the related Practice Sheets Assistant provide a way to create practice problems for basic math drills.
The Sample Math App: Drawing a Line grades a plot that is drawn interactively.
with⁡Grading:
L1≔LinearFunction⁡3⁢x−4
L1≔<< LinearFunction: 3*x-4>>
L2≔LinearFunction⁡0,−4,4,7.97
L2≔<< LinearFunction: 2.992500000*v-4>>
GetExpression⁡L1
3⁢x−4,x
GetData⁡L2
<< GridPoint: [0, -4]>>,<< GridPoint: [4, 7.97]>>
plotview≔−10..10,−10..10
Draw⁡L1,plotview
GradePlot⁡L1,L2,plotview
1.
The Grading package was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
Grading:-GradePlot
Grading:-Quiz
Grading:-QuizBuilder
Sample Math App: Drawing a Line
Download Help Document