Science  People  Locations  Timeline
Index: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Home > Maple computer algebra system


 Contents
Maple is a general purpose commercial computer algebra system. It was first developed in 1981 by the Symbolic Computation Group at the University of Waterloo in Waterloo, Ontario, Canada.

Since 1988, it has been developed and sold commercially by Waterloo Maple Inc. (also known as Maplesoft), a Canadian company also based in Waterloo, Ontario. It is marketed as "the essential productivity tool for every technical professional." The current version is Maple 9.5.

1 Introduction

Maple is an interpreted, dynamically typed programming language. As is usual with computer algebra systems, symbolic expressions are stored in memory as directed acyclic graphs.

Since Maple 6 the language has permitted lexically-scoped variables.

2 Example Maple code

The following code computes an exact solution to the linear ordinary differential equation subject to initial conditions:

dsolve( {diff(y(x),x,x) - 3*y(x) = x, y(0)=1, D(y)(0)=2}, y(x) );

3 Past releases

4 Versions available

Maplesoft sells both student and professional editions of Maple, with a substantial difference in price (e.g., US$129 compared to US$1,995.00, respectively).

Recent student editions (from version 6 onwards) have not placed computational limitations but rather come with less printed documentation. This is similar to the difference between Mathematica's student and professional editions.

In releases prior to version 6, the student edition has had the following computational limitations:

5 See also

6 External link

Domain-specific programming languages Computer algebra systems

Read more »

Non User