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
Enter Expressions in Maple Worksheets
The following assumes that the Input display option is set to Maple Notation (that is, 1-D math) in the Display tab of the Options dialog. For details, see Options>Display.
For information on using the default 2-D math mode in worksheets, see 2-D Math.
For information on using palettes to enter expressions and symbols, see Overview of Palettes.
Entering Expressions as Maple Input
Enter Maple commands at the Maple prompt. Maple recognizes your entry as Maple input and executes the command.
Enter the Maple input, followed by either a semicolon or a colon. If the input ends with a semicolon, the result is usually displayed, as seen below.
factor(x^2 + 2*x + 1);
However, if the input ends with a colon, the result is computed but not displayed.
factor(x^2 +2*x +1):
Press the Enter key. Maple evaluates the input and displays the output, provided that the input ends with a semicolon.
Assigning Expressions to Names
Assign a Maple expression to a name so that you can use the expression again in subsequent calculations.
expn := 3 * sin(x) + 2 * cos(x);
sin(x) * expn;
You can also assign equations to names.
eqn := y = 5*x - 3;
Define your own functions.
f := x -> x * 2;
f(3);
f(y + 1);
Making Maple Commands Inert
As you develop your worksheet, you can use inert Maple commands to help identify each step of the problem-solving process or to delay evaluation.
Active and Inert Functions
Examples of Maple Functions
Maple functions include most standard mathematical functions such as sin, sinh, arcsin, exp, ln, sqrt, and binomial.
Index of Maple Functions
More advanced Maple functions include the differential operator, the sequence function, and the composition function.
Examples of Advanced Maple Functions
Examples of Maple Objects
Maple objects include expression sequences, lists, and sets.
See Also
2-D Math, Command Completion, Document Mode, Options>Display, Overview of Palettes
Download Help Document