Student[Calculus1]
GetProblem
retrieve a problem from the Calculus1 internal problems table
Calling Sequence
Parameters
Description
Examples
GetProblem(expr, format)
expr
-
(optional) algebraic or algebraic equation; select the problem to retrieve
format
(optional) BooleanOpt⁡internal; specify the result format
The Calculus1 package maintains a table of problems stepped through in the current session. One of these problems is designated the current problem. The GetProblem command sets the current problem and focuses package commands and other Maple commands on the problem and its subproblems.
The normal output from a call to the package routine Rule is an equation that is displayed on your screen using standard calculus notation. However, the left-hand side of this equation is only displayed this way; its actual value is different. If you use the lprint command, Maple displays its structure, which is similar to:
CALCULUS1OBJECT( [1, [], []], {x} ) = ...
This representation serves several purposes. Most importantly, it is opaque to main commands, such as normal, simplify, expand, and value. This allows you to apply any of these commands to such an equation, and then continue to work with the result in the Calculus1 environment.
However, to work with such an equation outside the Calculus1 environment, first convert this CALCULUS1OBJECT to its corresponding standard form. You accomplish this by passing this equation to GetProblem without the format option or with internal = false option.
Note: The standard Maple commands diff, int, limit, and series accept the CALCULUS1OBJECT representation. Therefore, you do not need to transform the output from a Rule invocation by GetProblem to apply these commands.
If provided, the parameter expr must be a(n):
Problem number (positive integer); see WhatProblem and GetNumProblems
Output from a previous invocation of Rule
Subproblem label, as displayed by a call to ShowIncomplete (Note: Treat subproblem labels as temporary objects because the application of a rule to a problem can change the underlying problem representation, and hence the subproblem labels. It is recommended that you call ShowIncomplete to verify the value of a label before passing it to Rule.)
If the expr parameter is omitted, GetProblem returns the current problem.
with⁡StudentCalculus1:
infolevelStudentCalculus1≔1:
Rule`+`⁡Diff⁡x2+sin⁡x,x
Creating problem #1
ⅆⅆxx2+sin⁡x=ⅆⅆxx2+ⅆⅆxsin⁡x
Rule`+`⁡Int⁡x+cos⁡x,x
Creating problem #2
∫x+cos⁡xⅆx=∫xⅆx+∫cos⁡xⅆx
Hint⁡GetProblem⁡1,internal
power
simplify⁡GetProblem⁡2,internal
value⁡GetProblem⁡2,internal
∫x+cos⁡xⅆx=x22+sin⁡x
If you do not specify the internal option, the Maple command evaluates both sides of the equation.
value⁡GetProblem⁡2
x22+sin⁡x=x22+sin⁡x
See Also
Student
Student[Calculus1][SingleStepOverview]
Download Help Document