Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

I couldn't find a command for this. Is it possible that does not exist for this every day problem?

We conduct regular reviews of our platform support to ensure that we are focusing on the platforms that are most valued by our customers. Based on our most recent review, we will offer the next release of Maple on the platforms listed below. As additional versions of operating systems on these platforms are announced, we will take those into account as well.

Supported Platforms and Operating Systems
Windows
Windows XP
Windows Vista
Windows 7
Windows Server 2008 R2
Windows Server 2012
Windows 8

Linux
Red Hat Enterprise Linux 6
SUSE Linux Enterprise Desktop 11
Ubuntu 12.04 LTS
Ubuntu 13.10 (Planned)

Mac
OS X 10.7
OS X 10.8

Discontinued
Mac OS X 10.6
Red Hat Enterprise Linux 5 update 5
Ubuntu 12.10
Oracle Solaris 10 (the next release of Maple will not be available on Solaris)

If you have any questions or concerns, please don’t hesitate to reply to this topic, or contact us directly at: maplepm (at) maplesoft.com

What's wrong with my loop? It works fine if no_legs is set to 3, but when it is set to 2 or 4 it doesn't work (as in the picture). The code is to list combinations, as in http://www.mapleprimes.com/questions/149475-How-Do-I-Create-Combinations-According. I'm really stuck. Thank you for any help!

Hi everybody,

 

I already discussed my tasks with @Preben Alsholm. Therefore, I decided to share it with you and try to finalize solution.

Actually, I want to calculate heat dynamics transfer between one, two or more rooms. Hence, I used heat balance approach to set the system of differential equations:

Hi, 

     I was wondering why numeric integrals that approach zero converge slowly? Is there a way to arrive at the answer (0) faster? Besides proving it symbolically

In a webinar on July 10, 2013, I solved the related rate problem:

Helium is pumped into a spherical balloon at the constant rate of 25 cu ft per min.
At what rate is the surface area of the balloon increasing at the moment when its radius is 8 ft?

A question in the Q&A at the end of the Webinar asked if it were possible to have an animation illustrate the expanding sphere and the rate of change in the surface area thereof. 

Hi,

Help please! Maple beginner here. I'm trying to relabel a list of lists and sets so that the third occurrence of each number becomes that number+1,

 

eg. [[1],[{1,2}],[{1,2}]] ----->  [[1],[{1,2}],[{2,3}]]

or [[1],[{1,2,3}],[{1,2}]] -----> [[1],[{1,2,3}],[{2,3}]]

 

I think because there are sublists and subsets, I can't use things like member(x, s, 'p') or SearchAll (ListTools), so not sure what to do. Any suggestions?

Hi everyone,

I am new to Maple, and require the use of grtensorii in my research. The package is installed correctly and will open fine, but it has troubles in finding the metric files to use. When I try to qload the metric I want I get the error message:

Error, (in qload) Could not find metric perturbed.

I have spoken to some colleagues who ran into similar issues making grtensor compatible with Maple 15, and they ran the commands

unprotect(sqrt);

I'm very new to Maple and can't figure out how to do this:

I have these possibilities:

for 1 - [1],[2],[3]

for 2 - [1,2],[2,1],[1,3],[3,1],[2,3],[3,2]

for 3 - [1,2,3],[2,3,1],[3,1,2],[3,2,1],[2,1,3],[1,3,2]

and I want to find all the possible combinations when they are in, say, the order of [3,2,1]

eg.

[[1,2,3],[1,2],[1]],

[[1,2,3],[1,2],[2]],

[[1,2,3],[1,2],[3]], 

[[1,2,3],[2,1],[1]]

I ran into an interesting situation with numeric integration.

For a simulation task I need to evaluate an overlap integral of a pair of 3-d ellipsoids which have a certain aspect ratio and the axes of which are tilted against each other. The distribution in each plane is Gaussian, but with largely differing sizes. While I have an analytic expression for the result; the integration (along a certain direction) cannot be done analytically and so I integrate numerically....

hello guys , i have an autonomous system , maple give me this warning when i want to compute its fixed points !

 

thank you for your time

 

mm.mw

Hello every one,

I am facing problem with for loop. Please have a look.

My code is

restart;with(PDEtools):

Eq1:=diff(u(eta,t),t)=C*diff(u(eta,t),eta$2):

BCs := {u(0,t)=sin(t), u(L,t)=0}:

ICs := {u(eta,0)=0}:

L:=600:

sol:= pdsolve(Eq1,ICs union BCs,numeric,time=t,range=0..L);

for i from 0 to 600 do 

for t from 0 to 3 by 1 do

for C from 0 to 1 by 0.1 do

p0[C,t]:=sol:-value (C,t):

sol[2] := [[2, 1], [3, 4]];

for i from 1 to nops(sol[2]) do

sol[2][i] := [seq(op(k,sol[2][i]), k=nops(sol[2][i])..1, -1)];

T := T + table([seq(op(k,sol[2][i])=op(k-1,sol[2][i]), k=2..nops(sol[2][i])),op(1,sol[2][i])=op(nops(sol[2][i]),sol[2][i])]);

od;

final result should be

1 2 3 4

2 1 4 3

I'm fairly sure I discovered a bug with the Maple 17 Calculus Integration tutor.

I was working on int((x^2+2*x)*cos(x), x);.

The first step that the tutor wants you to do is to rewrite the integral by factoring out an x from the first term, and changing cos(x) to -sin(x).

The next step is to rewrite it again, this time changing sin to cos, making the intergal  -x(x+2)cos(x)

Next, the tutor distributes the X again, making the integral -(x^2+2*x...

Hello, Is there a way to assign mutiple variables at once using the 'if-then' statement?For example: if A:=3, then B:=434 and C:=52 and H:=2039So that I fill in these variables B, C and H one time and then when A is chosen to be a value, all other values are assigned automatically. Like filling in a table actually.In a simple 'if-then' statement I assign one variable, which works well.a:=10if a:=10 then b:=4elif a:=20 then b:=3end if:b ends up being 4I don't know how to add variable C and H, without getting an error.It should be very simple in my opinion, but I just don't see it.Greetings,Frank
First 1447 1448 1449 1450 1451 1452 1453 Last Page 1449 of 2224