Student[Calculus1][GetProblem] - retrieve a problem from the Calculus1 internal problems table
|
Calling Sequence
|
|
GetProblem(expr, format)
|
|
Parameters
|
|
expr
|
-
|
(optional) algebraic or algebraic equation; select the problem to retrieve
|
format
|
-
|
(optional) ; specify the result format
|
|
|
|
|
Description
|
|
•
|
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):
|
2.
|
Output from a previous invocation of Rule
|
3.
|
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.
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
If you do not specify the internal option, the Maple command evaluates both sides of the equation.
>
|
|
| (6) |
|
|
Download Help Document
Was this information helpful?