Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

There is a utilde on the Latin pallette, among others. How do I get xtilde as a variable?

 

Consider a simple polymer , which consist of long chains of simple molecules attached to each other, e.g:

....-CH2-CH2-CH2-...

If the interaction energy between consecutive sections ca be ignored or is low enough, the chain can be bend around at varios places to form varios configurations. One can start by  fixing the first section to a particular co-ordinate and then add additional components by use of random walk with...

Dear everyone,

 

  I have a question about the memory requirement of generalized eigenvalue solver in Maple 10 and further versions.

 

Suppose I have a code like

***

with(LinearAlgebra):
Digits:=34;
n:=30;
A:=Matrix(n,n);
B:=Matrix(n,n);

for i from 1 to n do
  for j from 1 to n do
     if i=j then
       A[i,j]:=i*j;
       B[i,j]:=1;...

I want to create a simple executable bat fil.

1) When I click on it maple should launch in the background (I dont want to see maple open)
2) Then Maple should open a txt file located on the desktop (containing a 1), read the file
and save  a new txt file on the desktop containing the number in the previous fil +1.

How can this be done?

i study a simple differential equations as follow and get the solution,but i faced two warning which puzzle me:

> restart;
> eq2 := diff(x(t), t) = x(t), diff(y(t), t) = x(t)^2+y(t)^2-1;
   ans1 := dsolve({eq2, x(0) = 1, y(0) = -1}, numeric, [x(t), y(t)], range = -10 .. 10)       ;

Warning, cannot evaluate the solution further left of -1.1646698, probably a singularity


Just a small digression.  It would be nice if the numbers on the x-axis could be rotated or angled so it does not look like they collide with each other.  When the numbers reach the 100's or 1000's there will be congestion. 

This is perhaps a suggestion for a future Maple version as the current versions do not support number rotations on the axis.

Hi everyone,

 

I have this differential equations:

gamma1:=1;gamma2:=1;

l:=t->sqrt((x1(t)-x2(t))**2+(y1(t)-y2(t))**2);
2 2
l := t -> sqrt((x1(t) - x2(t)) + (y1(t) - y2(t)) )

DE:=[diff(x1(t),t)=(-1/(2*Pi))*gamma2*(y1(t)-y2(t))/l(t),diff(y1(t),t)=(-1/(2*Pi))*gamma1*(x1(t)-x2(t))/l(t),diff(x2(t),t)=(-1/(2*Pi))*gamma2*(y2(t)-y1(t))/l(t),diff(y2(t),t)=(-1/(2*Pi))*gamma1*(x2(t)-x1(t))/l(t)]:

I want to draw the phase portraits (x1(t...

Dear everyone,

 

  Hi,

 

  I have a simple problem of writting data into a file:

 

  For something like

***********

for i from 1 to 3 do
  L[i]:=i;
end do;
writedata(`d:\test.txt`,L);

***********

 

I got
                       ...

Hello,

Just a small question: what's the difference between writing

product( (2*i-1) mod 3 + 1, i=1..10 )

which incorrectly gives 105411381075, and writing

mul( (2*i-1) mod 3 + 1, i=1..10 )

which correctly gives 432...

And what's the reasoning behind this?

-- Regards,

Franky

Hi everyone,
While I am getting more and more comfortable with the document mode, I have some questions regarding the document block feature:
- What is a document block good for anyway?
- Why not have the whole document in one block?
- Can one join two document blocks?
- when do I "remove the document block"
- How can I make sure that say an informational 2-D math expression inside a document block never gets executed?
-- Can I still...

 

 

The Locator object is a nice piece of Mathematica's Manipulate command's functionality. Perhaps Maple's Explore command could do something as good.

Here below is a roughly laid out example, as a Worksheet. Of course, this is not...

I write this code:

> e1 := a-3;
a - 3
> e2 := sqrt(6)*b+6;
(1/2)
6 b + 6
> trac := e1+e2;
(1/2)
a + 3 + 6 b
> dter := e1*e2;
/ (1/2) \
(a - 3) \6 b + 6/
> dell := trac^2-4*dter;
2
First 1585 1586 1587 1588 1589 1590 1591 Last Page 1587 of 2224