Maple 16 Questions and Posts

These are Posts and Questions associated with the product, Maple 16

I'm start making an homepage about mathematic and wondt to link a workpage writen in Maple 16 into WP, thanks to whose ho have any idea :)

 

Helo, guys, i am a beginner here I want solve a system of first order differential equation using RK4. Please I need help please.

I am getting this error for pretty much everything now, i am using maple 16, and there literally is no way i will be able to buy a newer version considering

restart

latex(alpha, beta)

Error, (in latex) permission denied: no write access (C:\Users\the_r\Desktop\MAPLE_DOCS\NUMBER_THEORY\IDENTITY_INVESTIGATION_ARCHIVE_SYSTEM\beta)

 

``


 

Download mapleHELP.mw

PDE := diff(u(x, y), x, x)+diff(u(x, y), y, y)-6*x*y*(1-y)-2*x^3 = 0; BCsx := u(xL, y) = 0, u(xU, y) = y*(1-y); BCsy := u(x, yL) = 0, u(x, yU) = 0; solPDE := pdsolve({BCsx, BCsy, PDE}, u(x, y)); exactSol := unapply(rhs(%), x, y)

I am getting this error for almost everything that i write in maple today, and i simply have no idea what causes it or what it means

 


 

"?SetOfCommonDivisors:=(X,Y)->{[[1,X intersect (map(numtheory:-divisors, Y))<>{???}],[0,otherwise]]??"

Error, unable to parse 'mverbatim'

"?SetOfCommonDivisors:=(X,Y)->{[[1,X intersect (map(numtheory:-divisors, Y))<>{???}],[0,otherwise]]??"

 

``


 

Download WTF_ERROR.mw

Hi, i will post the executed code so you can see what i am saying, essentially i want to know what i am doing wrong here to have simplify not work as a command line function but  it does when i right click the output and select it and the equation label of that output is inserted as the oprand.

I feel like maple is not wanting to be entirely forthcoming with me today or something, but in a more deeper contemplation, i see that refering to the maple interface as if it is a sentient entity is a true indication that i need a social life.

 

But as you will see, the same failure occurs for the ListTools partial sums feature when implemented in commandline code, but works perfectly well when it is selected by right clicking on the output intended 

Download MAPLE_PLEASE_HELP_aGAIN.mw

 

Download MAPLE_PLEASE_HELP_aGAIN.mw

Hi

I am trying to solve an inequality for the real parts of the solution to be less than 0. How do I do that? When trying to use solve, and specifying Re() Maple warns about lost solutions. I can see there are complex solutions to the equation, but i cannot make Maple calculate them. Maple gives me a range for the real solutions (6.1.11) and (6.1.12), but if I use a number out of the range the inequality is still met, the solutions is just complex, which does not matter. The variable a seems to be able to be between -8 and 3 for the real part of the solution to be less than 0.

Kind regards

Simon

The problem and the error in the attached worksheet. 

https://www.maplesoft.com/support/help/errors/view.aspx?path=Error,%20(in%20DocumentTools:-GetProperty)%20input%20is%20ambiguous

 


 

with(DocumentTools):

Do(convert(%CONTAINER1, string))

Error, (in DocumentTools:-GetProperty) input is ambiguous

 

``


 

Download MAPLE_PLEASE_HELP.mw

hey guys does anybody know if i can define a vector from its degree and lenght. instead of having to use coordinates?

the only way i know of defining a vector so far is

Vector1:=<x,y>

sorry my english is'nt the best

 

- Morten Lund

I'm just unable to see how this could be correct, if someone can take a look it would be much appreciated.

 


 

sum((piecewise(6 = k, 1, 6 <> k, 0)-3*frac((1/3)*N)*piecewise(6 = k+1, 1, 6 <> k+1, 0))*floor((1/3)*N*3^(k-floor(ln((1/3)*N)/ln(3))-1)), k = 1 .. floor(ln((1/3)*N)/ln(3))+1)

sum((piecewise(6 = k, 1, 6 <> k, 0)-3*frac((1/3)*N)*piecewise(6 = k+1, 1, 6 <> k+1, 0))*floor((1/3)*N*3^(k-floor(ln((1/3)*N)/ln(3))-1)), k = 1 .. floor(ln((1/3)*N)/ln(3))+1)

(1)

simplify(sum((piecewise(6 = k, 1, 6 <> k, 0)-3*frac((1/3)*N)*piecewise(6 = k+1, 1, 6 <> k+1, 0))*floor((1/3)*N*3^(k-floor(ln((1/3)*N)/ln(3))-1)), k = 1 .. floor(ln((1/3)*N)/ln(3))+1))

piecewise(k = 5, -3*(floor((-ln(3)+ln(N))/ln(3))+1)*floor(27*3^(-floor((-ln(3)+ln(N))/ln(3)))*N)*frac((1/3)*N), k = 6, (floor((-ln(3)+ln(N))/ln(3))+1)*floor(81*3^(-floor((-ln(3)+ln(N))/ln(3)))*N), 0)

(2)

``


 

Download mapleHELP.mw

So I've got a function and try to find an extrema (and there is one on the plot), but Maple gives me empty brackets.

First, earlier it gave me 2 x-coordinates with extrema (both empty), but now (after reloading) it gives one and empty.

Second, how do I set an interval, if I want to look for extrema from x=0 to x=1, for example? I tried extrema (V, {0,1}, x) and (V, {x=0, x=1}, x), but nothing seems to work.

2.mw

 I am trying to solve 2 equations in maple:

 1/  solve({1<x or x<3 or x>5});

 {x=x}    solution is correct

 2/  solve({1<x or x<3 or x<5});

 {x<5}    solution is wrong

 How do I have solution correct is {x=x} in Maple?

 Please teach me about this.

 Thank you very much!

I think that I am probably making this more complicated than it needs to be, but I'm fairly certain that the way that I am doing this is possible within Maple. 

 

Currently I have this line of code

>implicitplot3d({2*sqrt(2)*x-2*z+sqrt(2) = 0, 2*sqrt(2)*x+2*z-sqrt(2) = 0, 2*sqrt(2)*y-2*z-sqrt(2) = 0, 2*sqrt(2)*y+2*z+sqrt(2) = 0}, x = -2 .. 2, y = -2 .. 2, z = -2 .. 2)

 

So these equations create planes that intersect creating a tetrahedron. The problem I'm running into is that I need to "trim" the extra bits of the planes outside of the tetrahedron. The idea I have right now is constraining each plane by 3 equations which would turn the planes into triangles. I think this will work but I'm not sure how to constrain each individual plane with different equations AND plot them on the same graph. Any direction here would be greatly appreciated. I would prefer to stick with using implicitplot3d and avoid any special plotting tools. 

 

Thanks for any help!

hello everyone!!

I need to plot the function x^3-x^2-x-1, and in the plot I need to calculate de point X that make the function equals to cero (the cutting point with the x axis).

Thanks you!!

I just found that Maple 17 and Maple 16 do not have the option "output=string" in the latex command.

And I need a way to convert the Latex generated to the screen to a string and save it to a variable like I can do with Maple 2017

Here is an example. In current Maple 2017 this works

result_of_int:=int((-5+3*x)^2/(2*x-1)^(7/2),x):
my_latex:= latex(result_of_int,output=string);

But in Maple 16, it gives an error

If I remove the output, then the result is not string.

How to capture the above output which is on the screen and save it as string in a variable?

I do not want to send the output to a file as is. I need to first convert it to a string, and save
it to variable first.

 

 

1 2 3 4 5 6 7 Last Page 3 of 40