Questions tagged [maple]

For questions involving the application of the program Maple to mathematics.

NOTE: questions which focus primarily on the program Maple and not on its applications to mathematics are not appropriate for this site.

Maple is an interactive engineering and scientific programming environment, as well as a high level programming language, from Maplesoft.

The following links can be useful:

755 questions
0
votes
2 answers

Compare two equations in Maple

Do any of you know how to compare alternative forms of equations in maple? No matter of what maple says false when I try to compare my two equations but I know they are the same. \begin{align*} f(x) &= \frac{\sqrt{3}}{4} - \frac{3}{2}x^{2} +…
0
votes
2 answers

Piecewise function representation of each piece

I've asked this question in MaplePrime, but wonder if any folks here can answer it as well. I would like to find a way to represent each piece of a piecewise function in Maple. For example, for a piecewise function:…
dellair
  • 99
0
votes
2 answers

Efficient way to multilinearize in Maple

I wish to use Maple to multilinearize polynomials. For example, given $xy^2z^4+x^3$ as input, I want $xyz+x$ as output. Is there a specific command for this?
TorsionSquid
  • 3,530
0
votes
1 answer

Why does Maple gives limit as $-1/2-1/2I .. 1/2+1/2I$?

It inputted this(below) limit and it gives above output. $limit(\frac{-\frac{1}{4}(-1)^{N+1}-\frac{1}{2}(-1)^{N+1}(N+1)+\frac{1}{4}}{N+1}, N = \infty)$ Is it right answer, or does output $-1/2-1/2I .. 1/2+1/2I$ mean that sequence is alternating…
user2723
0
votes
2 answers

Radians in Maple

We know that $$\cos(45^{\circ})=\sin(45^{\circ})=\frac{\sqrt{2}}{2}$$ But when I type this in Maple and use it in my calculations, I get a different result compared to when I use $\frac{\sqrt{2}}{2}$. For…
Steve
  • 179
0
votes
1 answer

How to display values of a sequence in Maple 12

I want your help to arrange the values of a sequence or function in a tabular form automatically by giving the "seq" command in maple 12. e.g. $f(n)=n^2$ $$ \begin{array}{|l|l|} \hline n&f(n)\\ \hline0 & 0\\ \hline 1 & 1\\ \hline 2&4\\…
Litun
  • 670
0
votes
2 answers

How to plot the the following function in Maple 12?

How to plot $\quad f(t) = \begin{cases} a, & \text{if $t=0$ } \\ e^{-b.t}, & \text{if $t>0$} \\ 0, & \text{if $t<0$} \end{cases} $ using maple 12 ?
Litun
  • 670
0
votes
1 answer

The power of matrix in Maple over Galois Field

How to compute the power of matrix in Galois Field in Maple. The Using Packages is not applicable for calculation power of matrix in Galois Field. For example, suppose that the $A$ is a matrix which entries come from GF($2^8$). Now I want to…
Amin235
  • 1,867
0
votes
1 answer

Maple: How to parse such CSV (Comma Separated Values) document?

So I have a large txt file with such contents (like 20mbs long) 20 30 40 550 60 70 80 91 20 30 40 50 60 70 80 92 20 30 40 50 60 70 80 93 20 30 40 50 64 70 80 90 20 30 40 50 60 70 80 90 20 30 40 50 60 70 80 90 20 30 40 40 60 70 80 90 40 30 40 50 60…
Kabumbus
  • 438
0
votes
1 answer

Hhow can I dynamically define an $n$ by $n$ tridiagonal matrix in maple

My colleages and I, for the past three days have being trying to define an $n$ by $n$ tridiagonal matrix in maple. we try to use the toolbox provided in maple but we ran into a problem as the size of the matrix was too large.
0
votes
0 answers

Graphing syntax from Maple translating into Wolfram Alpha?

The above image was generated using Maple software in both spherical and cartesian coordinates: Spherical Coordinates: plot3d([ sin(2*phi)*cos(2*theta), theta, Phi], theta=0..2*Pi, phi=0..Pi, axes=BOXED, coords=spherical,…
User3910
  • 2,390
0
votes
2 answers

Simultaneous eqns in maple

I am trying to solve the following system of equations in maple but it doesn't work for some reason: solve({ a*(1-x)-x*f-x*e = 0, b*(1-x)-x*c-x*d = 0, c*(1-z)-z*b-z*a = 0, d*(1-z)-z*e-z*f = 0, e*(1-y)-y*d-y*c = 0, f*(1-y)-y*a-y*b = 0,…
Johnny Byr
  • 35
  • 5
0
votes
1 answer

Using Bessele in Maple returns zero

I am so new in maple . I want to execute this this function on my formula as you can see in the below image : As you can see every operations return zero .why ? I am so new in maple
0
votes
1 answer

abtract taylor series Maple

I would like to solve the folowing equation at some finite order: $$\langle f_x,f_y\rangle=0, \vert f_x\vert^2=\vert f_y\vert^2$$ where $f: \mathbb{R}^2 \rightarrow\mathbb{R}^3$. In order to do so, I write a formal taylor…
Paul
  • 369
0
votes
1 answer

Some frames are missing part of a surface in Maple $\texttt{implicitplot3d}$ animation

I want to create an animation of a surface when some parameter is changing, using for loop in maple to create a sequence of frames and they display them as sequence of plots. I was able to obtain an animation, however some of the frames are missing…