Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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):
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.
Examples
Creating problem #1
Creating problem #2
If you do not specify the internal option, the Maple command evaluates both sides of the equation.
See Also
Student, Student[Calculus1], Student[Calculus1][SingleStepOverview]
Download Help Document