Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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