Recent Articles



































Maple computer algebra system



         


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.

[Top]

Introduction

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

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

[Top]

Example Maple code

The following code computes an exact solution to the linear ordinary differential equation <math>\frac{d^2y}{dx^2}(x) - 3 y(x) = x<math> subject to initial conditions:

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

Past releases

[Top]

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:

[Top]

See also

[Top]




  View Live Article   This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License