Maple 12 Questions and Posts

These are Posts and Questions associated with the product, Maple 12

The attached document shows you how to solve an initial value problem. Moreover, it shows you how to use Maple's ODE analyzer which makes it really fast and easy to solve and plot the solutions of differential equations.

Maple's powerful notation allows you to enter math expressions that look natural.

The following steps will show you how easy it is to write expressions.

Example 1:  Write   2*x/5

  1. If you're on the Student Center forums, click on the red maple leaf to insert maple ma

In Maple, suppose we would like to enter the function f(x)=3*x+7 and we want to know what the function is at x=3.

Below are a few simple steps that will show you how to achieve this.
 

  1. Make sure you're in math mode. Type f, followed by a colon [:] and an equal sign [=]. The colon-equals notation assigns the content on the right-hand side to a variable name on the left-hand side. I

Maple is amazing at making secret codes.

First, let's learn two quick words. To "encrypt" a message means that you have transformed your message such that it is unreadable by others.

And to "decrypt" means to transform it back to your original message, also known as code breaking.

We will encrypt and decrypt our original message "Hello new Maple users !".

message :="Hello new Maple users !"

 Le

Suppose you want to solve a large dense linear system AX=B over the rationals - what should you do? Well, one thing you should probably not do is directly apply Gaussian elimination. It does O(n^3) arithmetic operations, but the size of the numbers blow up, leading to an exponential bit complexity. Don't believe me? Try it:

with(LinearAlgebra):
for N from 5 to 9 do
  A := RandomMatrix(2^N, 2^N+1,generator=-10^5..10^5):
  TIMER := time(GaussianElimination(A...
First 30 31 32 Page 32 of 32