Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi guys, my Maple version is 15.01, when I want to do the following plots, the Maple pops up this failure "Kernal Connenction Lost":

Here're the corresponding input commands:

J := u -> evalf(Int(1/(sqrt(x^2+u^2)*(exp(sqrt(x^2+u^2))+1)), x = 0 .. infinity));

plot(exp(-2*J(Delta/(.4))), Delta = 0 .. 1);

Does anyone encouter the same problem if you try the commands? I wonder how to fix it, thank you.

 

F := [x1/(1+t^2)+x2, -(x1+x2)*(1+1/(1+t^2)), -x3];
rho1 := [diff(F[1],x1),diff(F[2],x1),diff(F[3],x1)];
rho2 := [diff(F[1],x2),diff(F[2],x2),diff(F[3],x2)];
rho3 := [diff(F[1],x3),diff(F[2],x3),diff(F[3],x3)];
theta := Matrix([[rho2, -rho1, 0],[rho3, 0, -rho1],[0, rho3, -rho2]]);
with(LinearAlgebra):
with(linalg):

evalm(theta&*Matrix([[M1],[M2],[M3]]));

Find M1 M2 M3

Answer is
M1 = [-1, -1, 0]
M2 = [1, 0, 0]
M3 = [0, 0, -1]

Let G be a connected undirected graph. How to find the minimal set of the edges of G, such that its annihilation transforms G to a planar graph, with Maple? The procedure should work with big graphs.

I want to integrate the following two function using Maple, but it returns nothing

When I use ImportMatrix to import a MATLAB mat file, I get a list of names and values. Should I write a "for" loop to assign them in Maple or there is an easier way to do it?

I have obtained the taylor series expansion of a function and got the coefficients as numbers.

I want to assign those coefficients to a variable.

I need your help.

Hello,

I'm quite new in Maple and stuck at one point. I think it is a trivial but I'm stuck anyways and hope somebody could help me here.

Following the DE system i'd like to be solved.

I am trying to determine if a particular system of 15 polynomial equations in 9 variables has a real solution using Maple's RegularChains library.  I am using the IsEmpty command which returns true if there are no solutions and false otherwise.  In Maple 16, this can be done using the command:

IsEmpty( sys, R ) ;

where "sys" is a list of equations and "R" is a polynomial ring, both of which I define in the worksheet.  But this syntax only works...

I need to keep parentheses surround some expression, e.g. (2x+1). However, Maple removes parentheses. Is there a way to keep them?

is there a maple function or does anyone have a proc that will return the number of significant figures given a number? For example, when given 0.38, the proc will return 2, or when given 2.897, the proc will return 4.

Hi all. I am trying to find the cube roots of -sqrt(6)-sqrt(18)*I in polar form. I have used the following commands but it does not convert the argument properly. Can anyone help? readlib(polar); sola:=solve(z^3=-sqrt(6)-sqrt(18)*I,z); polar(sola[1]); polar(sola[2]); polar(sola[3]); I have also used the following but it could not simplify the argument/angle. sola1 := simplify(convert(sola[1], polar)); Can anyone please suggest a fix to this? The argument...

I have got the following instructions of computing the required trajectories (orbits). They have been done with Maple V3. I cannot get them going with Maple 16. I have just started with Maple and cannot see the mistake in the instruction. Can anybody help me? Thanks!


> with(LinearAlgebra);
> "A, B = Payoff matrices for players";
> A := matrix(2, 2, [4, 2, 1, 3]); B := matrix(2, 2, [1, 4, 3, 2]);
> "T defines the time interval [0,T], s is the step length";

I want to calculate above integral in Maple15,  the parameters n_1, n_2 and n_3 are all positive integers.
I tried to input the following command: int(int((1-x)*(1-y)(x+y)*(x^n_1)*(y^n_2)*(1-x-y)^n_3, y=0..1-x),x=0..1);

After I pressed enter it then appeared an error message: "Error, unable to match delimiters"

Can someone help me on how to solve the following pde for G

Eq1 := ((z[1]-1)*lambda+(z[3]-1)*gamma)*G+(1-z[1])*delta*(diff(G, z[1]))+(N*z[3]-z[2])*kappa*(diff(G, z[2]))+(1-z[3])*mu*(diff(G, z[3]))+(z[2]-z[1]*z[3])*beta*(diff(diff(G, z[3]), z[1])) = diff(G, t)

Hi,

How to avoid the following warning with the command NLPSolve / modifiednewton:
Warning, convergence is not assured; examine Hessian values, or consider raising tolerance

 

Metodmodifiednewto.mw

First 1563 1564 1565 1566 1567 1568 1569 Last Page 1565 of 2224