Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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