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
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