Overview of the Grading Package
Calling Sequence
Description
List of Grading Commands
Examples
Compatibility
Grading:-command(arguments)
command(arguments)
The Grading package provides tools for grading.
It is primarily used 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 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.
The commands in the Grading package are:
AbsoluteValueFunction
DiffPractice
Draw
ExponentialFunction
Get
GetData
GetDomain
GetExpression
GradePlot
GridPoint
Inequalities
IntPractice
IsQuadraticFormula
LinearFunction
LogarithmicFunction
QuadraticFunction
Quiz
QuizBuilder
Segment
Set
SolveFeedback
SolvePractice
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
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