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

Wierd expression in Maple ; $min(0, signum(x^2+y^2)*\infty)$

Im getting this as return in Maple; $min(0, signum(x^2+y^2)*\infty)$ What is it suppose to mean? Its in the answer of the follwoing; minimize(P(x, y, z, w); 2 min(0, signum(x^2+y^2)infinity + min(-6 x, 6 x) + min(-6 y, 6 y) + min(-6 z, 6 z) +…
user123124
  • 1,835
-1
votes
1 answer

Selecting specific return value from polar

If I do this conversion to polar form input: num = polar(3+I*3) returns: num = polar(3sqrt(2),1/4*pi) How can I select the 1/4*pi part of the return value? I believe it should be possible to select num[1] or similar, but I am unsure.
-2
votes
1 answer

Convert one equation into another form using Maple and see the steps

I want to convert this equation exp(x - y)/(1 + exp(1)^(x - y))^2 into exp(1)^(x + y)/(exp(1)^x + exp(1)^y)^2 equation. And I want to see the steps to do that in maple. So far, I checked if both statements are equal using and it gave me a TRUE: eq1…
-2
votes
1 answer

How to plot a rolling window of five points from a matrix using animate in Maple

This question is about animating a plot of 3d points in Maple. Consider the parametric function $$f(t)=(0,\cos{t},\sin{t})$$ Let's create a matrix of twenty points of this function, each row being a point. pd := Matrix([seq(f(t), t = 0 .. 20)]); We…
xoux
  • 4,913
-2
votes
1 answer

3Dplot in maple

Hello all, I am considering the function $f(t,u)=e^{(t^{2}+10u-1)}$. I am also considering the tangent plane $g(t,u)=-121+22t+10u$ at point (11,-12). I would like to draw a 3Dplot in maple that shows the tangentplane touching the graph of $f(t,u)$…
saleem
  • 155
-2
votes
1 answer

Generating all tuples in $Zp^n$ using Maple

What are some suggestions on how I could most efficiently generate a list of all tuples in $\mathbb{Z}_p^n$? (For example, for $p=n=2$, $\{[0,0],[0,1],[1,0],[1,1]\}$). I can get this to work for a fixed $n$ value by using the $seq$ function, but I…
Ethan
  • 152
-2
votes
3 answers

Maple says integral is zero for all integers, but it isn't for 1.

> assume(n::'integer'): > int(exp(n * x * I) * cos(x), x = 0 .. 2 * Pi); 0 But if we substitute n=1 by hand: > int(exp(x * I) * cos(x), x = 0 .. 2 * Pi); Pi How do I get Maple to tell…
-2
votes
1 answer

divide the distance between two points

I have two points(in two dimension) and I want to divide the distance between them to n part with same length, I was thinking about doing this manually by using for, but because it is numerical it wont be precise, so is there any way to do this? any…
negar
  • 45
1 2 3
14
15