Overview - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Overview of the Grading Package

 

Calling Sequence

Description

List of Grading Package Commands

Additional Resources

Examples

Compatibility

Calling Sequence

Grading:-command(arguments)

command(arguments)

Description

• 

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.

List of Grading Package Commands

• 

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

 

Additional Resources

• 

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.

Examples

withGrading:

L1LinearFunction3x4

L1<< LinearFunction: 3*x-4>>

(1)

L2LinearFunction0&comma;4&comma;4&comma;7.97

L2<< LinearFunction: 2.992500000*v-4>>

(2)

GetExpressionL1

3x4,x

(3)

GetDataL2

<< GridPoint: [0, -4]>>&comma;<< GridPoint: [4, 7.97]>>

(4)

plotview10..10&comma;10..10

plotview−10..10&comma;−10..10

(5)

DrawL1&comma;plotview

GradePlotL1&comma;L2&comma;plotview

1.

(6)

Compatibility

• 

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