Difference between revisions of "Maple"

From PrattWiki
Jump to navigation Jump to search
m
m
Line 137: Line 137:
 
[[Category:Software]]
 
[[Category:Software]]
 
[[Category:BME 153]]
 
[[Category:BME 153]]
[[Category:ECE 54]]
+
[[Category:ECE 280]]
 
[[Category:ECE 382]]
 
[[Category:ECE 382]]
 
[[Category:EGR 224]]
 
[[Category:EGR 224]]
 
[[Category:ME 344]]
 
[[Category:ME 344]]

Revision as of 19:32, 1 June 2013

Maple
"Harnessing the Power of Mathematics"
200 px
Version 16
15 on Unix
Download OIT
Cost Free on Unix
$5 for CD (faculty)
$35 student license
Manufacturer Maplesoft
Web Page maplesoft.com
Pundit Updated 8/30/2012


Starting Maple

To start the graphical version of Maple from the Duke Linux stations, type

xmaple15 &

or

xmaple15 &

where the "x" in front indicates the graphical version of Maple.

Introduction

Maple is a symbolic math package produced by Waterloo. It is available for free on the UNIX systems. Maple is available to faculty and staff for free; a student license costs $35.

Maple Modes

There are two different ways Maple creates documents - worksheet mode and document mode. The information and screenshots below are presented assuming worksheet mode.

Duke CCP Tutorials

The Math Department at Duke has provided several tutorials on the fundamentals of Maple (in addition to many other tutorials on using Maple for specific purposes). They are a part of the Connected Curriculum Project (CCP) and are linked below. Please note the Copyright Information provided with respect to documents in the Connected Curriculum Project.

  1. Maple Tutor for Precalculus, David Smith and Lawrence Moore
  2. Maple Tutor for Differential Calculus, David Smith and Lawrence Moore
  3. Maple Tutor for Integral Calculus, Lang Moore, Dick Schori, David Smith, and Jim Tomberg
  4. Maple Tutor for Multivariable Calculus, Lang Moore, David Smith, and Jim Tomberg
  5. Maple Tutor for Differential Equations, Lang Moore, David Smith, and Jim Tomberg
  6. Maple Tutor for Linear Algebra, Lang Moore, David Smith, and Jim Tomberg
  7. Maple Tutor for Engineering Mathematics, Lang Moore, David Smith, and Jim Tomberg


There are also two tutorials that assume document mode. These are:

  1. Maple Tutor (Maple 10 and higher) for Differential Calculus, Joshua Holden, David Smith, and Lawrence Moore
  2. Maple Tutor (Maple 10 and higher) for Multivariable Calculus, Joshua Holden, Lang Moore, David Smith, and Jim Tomberg

Other Pundit Pages

Additional Information

Below are some more example of specific tasks that may be done in Maple.

Symbolic Derivatives

There are at least three ways to take a symbolic derivative in Maple:

  1. Using the diff command
  2. Using the D operator
  3. Using the "prime" operator

Handy Functions

Parallel Impedances (PAR)

If you need to calculate an equivalent impedance involving parallel constructions, you may want to define a function to simplify those parallel parts:

PAR := (Za, Zb) -> simplify(Za*Zb/(Za+Zb))

Simplifying Fractions of Polynomials (SCS)

If you end up making calculations that involve fractions of polynomials, it can be useful to simplify the expression, collect the variable of interest, and then sort the results. For example, with Laplace transforms, s is the variable of interest so:

SCS := X -> sort(collect(simplify(X), s), s)

Example using PAR and SCS

PAR := (Za, Zb) -> simplify(Za*Zb/(Za+Zb))

\( PAR := (Za, Zb) \rightarrow {\it simplify}\left(\frac{Za~Zb}{Za+Zb}\right) \)

SCS := X -> sort(collect(simplify(X), s), s)

\( SCS := X \rightarrow {\it sort(collect(simplify(X), s), s)}\,\! \)

H:=PAR(1/s/C, R1+PAR(s*L, R2))

\( H:={\frac {{\it R1}\,sL+{\it R1}\,{\it R2}+s\,L\,{\it R2}}{s\,L+{\it R2}+{\it R1}\,{s}^{2}\,C\,L+{\it R1}\,s\,C\,{\it R2}+{s}^{2}\,L{\it R2}\,C}}\,\! \)

SCS(H)

\( {\frac { \left( {\it R1}\,L+L\,{\it R2} \right) s+{\it R1}\,{\it R2}}{ \left( {\it R1}\,CL+L\,{\it R2}\,C \right) {s}^{2}+ \left( L+{\it R1}\, C\,{\it R2} \right) s+{\it R2}}} \,\! \)

Laplace Transforms

For handy functions with Laplace and Inverse Laplace Transforms, see the Maple/Laplace Transforms page

Troubleshooting

Infinite startup time with X-Win 32

If you are trying to run Maple over X-Win 32 and the splash screen progress bar halts for a significant period of time, the following steps seem to work to correct the problem:

  1. Hit CTRL-alt-delete
  2. Choose the Task Manager
  3. In the Processes tab, click Image Name to get the images in reverse alphabetical order - usually this means clicking it twice
  4. Right-click the xwin32 image and select End Process Tree - do this for all instances of xwin32 that are running
  5. Close the task manager
  6. At the bottom right of your screen, point at the X-Win logos in the applications tray - they should disappear
  7. Restart XWin on your computer
  8. Type xterm in your PuTTY terminal to see if XWin is working - if it is, close the new xterm window
  9. Try starting Maple again

Occasionally, this process has to be repeated - so far, the most recorded times for repeating it is three, but Maple did load on the fourth try!

Alternate Method

The problem seems to be that Maple cannot always get the graphical user interface to launch. The following seems to fix it. Go through the steps above, but replace the last step with typing

xeyes &; xmaple &; xeyes &

all on one line... If Maple comes all the way up, you can delete the two instances of xeyes. For whatever reason, having something graphical before and after xmaple helps things along. Plus, xeyes is funny...

Questions

Post your questions by editing the discussion page of this article. Edit the page, then scroll to the bottom and add a question by putting in the characters *{{Q}}, followed by your question and finally your signature (with four tildes, i.e. ~~~~). Using the {{Q}} will automatically put the page in the category of pages with questions - other editors hoping to help out can then go to that category page to see where the questions are. See the page for Template:Q for details and examples.

External Links

  • Maple Tutor - Maple Tutor by Joshua Holden at Rose-Hulman Institute of Technology and Lang Moore, David Smith, and Jim Tomberg at Duke University. The stated purpose of this module is, "To learn the basics of Maple document mode (Maple 10 or higher) for use in a multivariable calculus course"

References