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
5
votes
1 answer

Inserting Maple worksheet commands

In Maple, it's very easy to delete a line or command in a worksheet (cmd-backspace), but how would I insert a line in the middle of a worksheet?
5
votes
3 answers

How to draw heart shape using Maple

I'm drawing a heart shape using Maple, but the heart-shaped curve is broken. Please hint to me how to draw it correctly.
Software
  • 737
4
votes
0 answers

Maple code to Latex file

I am writing a project in Latex and have been using Maple to help calculate various things. I want to copy the code in maple and put it into the Latex file so it will still maintain the maple style and layout. This is the code I am aiming to show…
James
  • 59
4
votes
2 answers

Maple: how to solving composite function

Here is just an simple example that I want to use Maple to solve: $$h(x)=f(g(x))$$ $$g(x)=2x+1$$ $$h(x)=4x^2+4x+7$$ Find polynomial of $f(x)$ Thanks :)
hqt
  • 759
  • 4
  • 9
  • 19
3
votes
2 answers

Why maple computes $\prod_{k=3}^{\infty} \cos \left(\frac{\pi}{k}\right)$ as $0$?

I have computed the infinite multiplication using Maple, $\Pi_{k=3}^{\infty} ( \cos (\frac{\pi}{k} ))$, as follows, but it resulted in 0! I wonder why this happened, although maple was using exact arithmetic. P := Product(cos(Pi/k), k = 3 ..…
Ali Shakiba
  • 583
  • 7
  • 18
3
votes
1 answer

removing items from a list in maple based on another list

So I am new to maple and need to write a procedure that given one list removes the entries of that list from another. [> thingy := proc (a1, a2) [> local i, j, a3; [> for i to nops(a1) do for j to nops(a2) do if evalb(a2[j] =…
Nick S
  • 475
  • 3
  • 10
3
votes
4 answers

How can I change background color of plot in maple?

Please help me, I have two functions: a := x^3+x^2-x; b := 20*sin(x^2)-5; and I would like to change a background color and fill the areas between two curves. I filled areas but I dont know how can I change the background, any…
Lukas
  • 79
3
votes
3 answers

Find intersections of two functions in Maple

I have two functions $f$ and $g$ defined as: $c:=x^3+x^2+x$ $d:=20\sin x^2-5$ I am trying to find the intersections of these using Maple $16$. How would I do this?
Lukas
  • 79
3
votes
3 answers

Why does Maple plot a different result for a 3D parametric circle for parameter t from -100 to 100 vs 0 to 2$\pi$?

I have the following parametric equation in three dimensions: $$\vec{r}(t) = (\cos t) \vec{i} + (\sin t) \vec{j}$$ I believe this is the equation for a circle on the xy-plane, centered at 0, with radius 1. In Maple, if I plot this equation for…
xoux
  • 4,913
3
votes
1 answer

How to draw heart shape (3D) using Maple

I'm drawing a heart shape (3D) using Maple, but I think it is not correct. Please hint to me how to draw it correctly. with(plots); implicitplot3d((2*x^2+y^2+z^2-1)^3-(1/10)*x^2*z^2-y^2*z^3, x = -1.2 .. 1.2, y = -1.2 .. 1.2, z = -1.2 .. 1.3,…
Software
  • 737
3
votes
3 answers

Writing inverse in maple

How can I write the functional inverse of a function in maple to be used in calculations? e.g., diff(f^(-1)(x),x) = 1/f'(f^(-1)(x)) when I use f^-1(x) or f^(-1)(x) I get the multiplicative inverse rather than the compositional inverse. I would like…
3
votes
1 answer

Alternative to Maplesoft

I want to use MapleSoft for small project (few days) and want don't to buy it. Since, it doesn't provide any free trial period, I am looking for some alternative. I am planning to use Maple to solve some sequence and series that it seems solves…
learner
  • 418
3
votes
1 answer

Finding EigenVectors for a Specific EigenValue in Maple

My matrix $M$ is huge, but I know that $1$ is an eigenvalue. I need to extract the corresponding eigenvector, which corresponds to this eigenvalue $\lambda=1$. There could be $1000$ other eigenvalues, but I need only to know what happens for…
GRS
  • 2,495
3
votes
1 answer

Maple double sums: summation order

Suppose we want to compute $$\sum_{k=0}^1 \sum_{j=0}^{2k}{ 2 \choose 2k-j}{2 \choose j}=7$$ with Maple (I picked this trivial example only as an illustration).I always thought that the order of double summation in Maple is the natural one, where…
Jeffrey
  • 314
3
votes
1 answer

Plotting Intersecting 3D Regions in Maple

I am brand spanking new to Maple (just downloaded tonight) and I'm also taking a course in multivariable Calculus. One of the reasons I downloaded Maple was because I'm having an extremely difficult time visualizing some of my problems in three…
Frank
  • 131
1
2 3
14 15