Programming questions related to the computer algebra system Maple.
0
votes
1answer
42 views
Calling Maple in Unix-shell without shell time overwriting
I have a question: I want to time some calculations using the UNIX-time command and I figured out that Maple (I use version 16) on Ubuntu 12.04 LTS (and some other machines I tested, including Macs) ...
0
votes
0answers
20 views
Force Maple to return the result of a matrix calculation without expanding the matrices into their elements?
I am trying to calculate a rather complicated integral symbolically in Maple. The integral I want to calculate is of the form
...
0
votes
1answer
28 views
List of Maple kernel functions
There's a set of functions which don't show their code with print when one uses interface(verboseproc=2). These are implemented in Maple kernel.
Is there a list of such functions?
1
vote
1answer
33 views
How can I programatically truncate order “O” terms in Maple?
In Maple, taylor(exp(x),x,2); returns 1+x+O(x2). How can I automatically convert this result to the same expression with the O(x2) terms removed? I.e. something like removeBigO(taylor(exp(x),x,2)); ...
1
vote
0answers
28 views
OpenMaple Java Interface
I am trying to use OpenMaple with Java interface to simply turn a matrix into reduced row echelon form. Ultimately I want to find the inverse of a matrix. I am not sure how to take a 2-d array in my ...
1
vote
1answer
59 views
Linked rotation of 3D plots
I'm plotting three 3D vector fields in one row in Maple 14:
> with(plots);
> A := Array(1 .. 3):
> A[1] := fieldplot3d(...):
> A[2] := fieldplot3d(...):
> A[3] := fieldplot3d(...):
...
0
votes
0answers
91 views
RSA decryption knowing n,p,q and cipher only
I would like to decrypt a cipher in RSA. I have n,p, q and the cipher.
I do not have e or d. I know that i should calculate k = (p-1)*(q-1).
d = 1/e mod k and gcd(e,k) has to be 1.
So, my question ...
0
votes
1answer
67 views
1d heat equation in maple
I am solving 1d heat equation with neumman boundary conditions by finite difference method on maple but my code is not working please can anyone of you suggest me some better code for this equation on ...
1
vote
1answer
59 views
How to plot and solve this differential equation with maple 12?
Consider the differential equation $y^{\prime}=y-2$ with initial condition $y\left(0\right)=1$.
a) Use Euler's method with 4 steps of size 0.2 to estimate $y\left(0.8\right)$
I know how to do this ...
0
votes
2answers
32 views
Maple - Sequence element affectation
I am encountering a problem when manipulating sequence element in Maple. First of all, here is the code.
b[0] := t -> (1-t)^3;
b[1] := t -> 3*t*(1-t)^2;
b[2] := t -> 3*t^2*(1-t);
b[3] := t ...
0
votes
1answer
49 views
Global vs local variable valuation issue in Maple
For some reason, the Maple code
testproc := proc()
LOCAL abc;
abc[1] := 123;
print(eval(parse(cat("abc[", 1, "]"))))
end proc
testproc();
produces
abc_1
whereas (same, but with abc now a ...
0
votes
2answers
57 views
How to launch and recover results of Maple with C++
I am using a C++ code which is preparing maple calculations commands sheets. OS used Ubuntu 12.04.
I would like to launch these maple files with my C++ program and recover the results in a text file.
...
0
votes
1answer
48 views
How to check if a list of matrix contains a given matrix in Maple
I have some problems in Maple.
If I have a matrix:
Matrix1 := Matrix(2, 2, {(1, 1) = 31, (1, 2) = -80, (2, 1) = -50, (2, 2) = 43});
I want to decide if it is in the below list:
MatrixList := ...
1
vote
1answer
45 views
Is there a Kronecker symbol in Maple?
The kronecker-symbol for two integers n,m is defined as 1 if n=m and 0 otherwise.
Is there an inbuilt kronecker-symbol in maple or an easy way to implement it?
Sorry, if I should have overlooked ...
0
votes
0answers
21 views
Tabulation in Maple Classic
I'm using Maple 11 Classic and I don't understand how to make my code good looking. When I'm making some program where at least 20 lines it looks awful! So how to code properly to make it easy to ...
0
votes
1answer
42 views
Maple cannot calculate the series expansion of “x^a*(1+x^b+exp(x))” at x=0
Suppose we want to obtain the series expansion of x^a*(1+x^b+exp(x)) at x=0. (This is just a simple example of many series expansion issues in Maple.) This can be done in Mathematica by
Series[x^a (1 ...
1
vote
1answer
79 views
Maple fails for definite integral with integer parameters
In maple I compute the (very simple) definite integral of the product of two cosine functions:
restart;
f := n -> (x -> cos(n*x)):
assume(n1::integer);
assume(n2::integer);
...
0
votes
1answer
81 views
Complex integration in Maple
The following code takes forever to compute in Maple. Basically, I'm trying to find the mean-square-modulus of a complex-valued function on a circle centered at the origin. How should the code be ...
1
vote
1answer
38 views
Printing during a loop in Maple
I'm new to Maple, so excuse the question if it's obvious. I'm running some routines that take a long time, and I want to get updates as is goes. Basically I have a big for loop and I want to see the ...
6
votes
2answers
365 views
Efficient way to take determinant of an n! x n! matrix in Maple
I have a large matrix, n! x n!, for which I need to take the determinant. For each permutation of n, I associate
a vector of length 2n (this is easy computationally)
a polynomial of in 2n variables ...
0
votes
1answer
29 views
using stats[importdata]( ) to import file
I want to import a file using statsimportdata and do an histogram but when i do:
with(stats);
newdata:=importdata("data1.dat"):
histogram(newdata)
it gives me an :Error, (in ...
0
votes
0answers
29 views
Maple 16 won't resolve an integral
The integral is: 1/((x+a)*((lnx)^2+pi^2)) , with x from 0 to infinity.
I simply tried with int(f,x=0..infinity); but that doesn't work.
I tried also on wolframalpha: ...
0
votes
1answer
36 views
How can I force maple to perform chain differentiation?
When differentiating functions, it is often not clear to me, in which cases maple performs a chain differentiation and when it does not so.
Let's look at an example:
f := (x, y) -> r(x)*M(y);
g ...
0
votes
1answer
32 views
What is wrong in this command “series(diff(f(z), z), z = 1, 2)” in Maple?
Assume f(z) is an arbitrary function of z. In Maple, if we want to get the series expansion of diff(f(z),z) at z=0, we can use
series(diff(f(z), z), z = 0, 2)
The output is "(D(f))(0)+...". ...
0
votes
1answer
92 views
How can I simplify this expression with trigonometric in Maple?
cot(5*Pi*(1/22))+4*sin(2*Pi*(1/11))
can be simplify to sqrt(11),I tried to use simplify and combine, but I haven't been able to get that result with maple, why?
0
votes
1answer
50 views
integrating and solving for a variable
I want to solve this probability density function f(v)=Av^2e^(-v^2(m/2KT)) integrate it and make it equal to 1 and solve it for A.
In Maple:
what i have tried is:
> restart;
> pdf := v-> ...
0
votes
2answers
65 views
Maple: Accessing the solutions of solve when solving for multiple functions
When I want to solve a set of linear equations for two functions, e.g.
solutions := solve({f(x)=x,g(x)=x},{f(x),g(x)});
what exactly can I do to work with the solutions as functions themselves in ...
0
votes
1answer
70 views
Maple Division by Zero
here is my work. i cannot figure out why when i make n=3 in the Fourier series, maple spits out a division by zero error.. i need some suggestions to get by this. The fourier series for n=1 and n=2 ...
0
votes
2answers
65 views
Positive value for a symbol in Maple
I need to describe variable as positive.
It used as a parameter in a piece-wise function, and it is positive by definition, but I don't know how to set it as unknown positive. I need something like ...
2
votes
1answer
290 views
Modelica for python/matlab/simulink/maple users? [closed]
I am trying to learn Modelica coming from a Python/MATLAB/Simulink/Maple background. Are there any resources for learning Modelica for people with experience in other languages/environments?
When ...
0
votes
1answer
240 views
Translating from Maple to Mathematica
Sorry if this question doesn't fit the site well... I have been trying translate a bit of Maple-code into Mathematica. I don't know Maple at all but I do know some Mathematica. I really don't know ...
0
votes
1answer
140 views
Why won't Maple evaluate this integral?
restart;
assume(alph>0);
assume(alph,real);
f_exp:=exp(-alph*r^2);
ff_deriv:=simplify(r^2*f_exp^2);
ff:=simplify(int(ff_deriv,r=0..infinity));
It seems to understand what I'm trying to integrate ...
4
votes
2answers
181 views
How to convert a Maple expression x*y to Matlab for the result x.*y?
A Maple expression (for example, x^3+x*y) can be converted to Matlab by
with(CodeGeneration):
Matlab(x^3+x*y);
However, in Matlab, there are two kinds of product: A*B and A.*B. The above way will ...
0
votes
1answer
51 views
How to substitute a function f(x) in an expression involving D(f)(x) in Maple?
In Maple, if we want to replace the function f(x) with f(x)+a*f1(x) in the following expression, we can do
expr:=f(x)+diff(f(x),x);
subs(f(x)=f(x)+a*f1(x),expr);
However, if we want to make the ...
0
votes
1answer
75 views
Maple plot of algebraic expression
If I write in Maple
AC := Amp*sin(2*Pi/T*t);
then I am able to see the expression in algebraic way. But I can't plot it because T is unset (plotting against t, of course).
If I write
T := ...
0
votes
1answer
73 views
Maple 16 : missing operator or ';'
First of all, sorry if I have a bad english : i'm french.
Here's my problem : I have the following code :
#Méthode de l'interpolation de Hermite
hermite:=proc(x,a,b,n,f)
local ...
0
votes
1answer
37 views
How to create map (std::map) like structure in maple?
I need a container with API like:
addKeyValuePair(containerRef, [key, value])
searchByKey(containerRef, key) #that would return NULL or `value`
How to create such thing in Maple (15)?
0
votes
1answer
32 views
In maple how to select one solution manually?
After some complicated integration maple gives a list of solutions defined on different domains of variables. I need to select just one of them. Domains are so complicated that assuming is not ...
0
votes
2answers
95 views
Why this program can't work?
I am asked to verify if this function is decreasing or increasing:
f(x)=sqrt(2+5x)
I am using Maple 15 right now in my class and writing the following commands can't solve the problem.
f := ...
0
votes
1answer
79 views
I'm looking for some assistance with a Maple procedure
I'm trying to write a procedure in maple to that will approximate a function f as a Chebyshev polynomial of degree n on the interval[-1..1] without using any built-in Maple functions relating to ...
-1
votes
1answer
64 views
Maple - Integration returns undefined for very simple and possible integrations
This is a question about maple producing undefined errors.
The code below should give the result 0 but instead maple chooses to label it "undefined".
(nj*(nj-1))*(int(N^(ni+nj-2),N=-1..1));
ni:=0; ...
0
votes
1answer
52 views
Integral by parts in Maple
I know that under "with(student)" package, I can solve some integral by parts. I applied this to $int(x*sin(x),x)$ for example and got my answer but, couldn't use for $int(exp(x)*sin(x),x)$ . I ask if ...
1
vote
1answer
113 views
Which language to compute a Frechet/Gateaux derivative of an abstract function?
I am willing to compute a Frechet/Gateaux derivative of a function which is not entirely explicit and my question is : What would be the most efficient way to do it ? Which language would you ...
0
votes
1answer
48 views
Need a Maple program,
I am New in Maple and have heard that, this maths software is powerful in symbolic calculation. S assume that we have a set of elements like
A:={a, aab, b, aba, abbb, abab...}
such that #A=20 and ...
0
votes
1answer
181 views
Maple - converting 1D lists into 2D arrays
This is a question in Maple.
I understand in terms of java that I want a count and an increment but my logic doesn't convert as simply to maple code.
I have an very long list of numbers LIST (196) ...
3
votes
1answer
131 views
Maple - How to make a loop of 4 variables suitable for an array
Say I have two lists:
M=(0,1,2,3) and N=(0,2,4,6)
And I wish to put into a list all the combinations of Mi,Mj,Ns,Nt (where i,j,s,t are subscripts so for i=1 M=0, i=2 M=1 etc.) such that:
C ...
0
votes
1answer
28 views
Error attempting to use initial conditions
I'm doing a quick problem in Maple with a differential equation and a few initial conditions, but I'm getting an error message that I can't seem to understand given the context. Can anyone quickly ...
1
vote
1answer
192 views
Maple or Matlab's Mupad symbolic equation substitution and symplification
I am not experienced in using Maple or Matlab's mupad and I want to do the next:
parametric:={x=a3*t^3+a2*t^2+a1*t+a0, y=b3*t^3+b2*t^2+b1*t+b0}
inplicit:= ...
0
votes
2answers
67 views
Why won't Maple 15 graph modulo?
I am trying to graph the function f(x) = x mod 7
The graph should look like a bunch of spiked lines. Instead it is graphing a straight line f(x) = x
What am I doing wrong? This seems so basic. Is ...
0
votes
1answer
46 views
How to find a second number by having first number and distance between these 2 numbers
I am so new to maple and I dont know what to do exactly! I have 10 numbers, for finding k nearest number to any of this number I need to keep distances between all numbers and sort them, based on ...

