MaplePrimes Questions

Hi, i have a rather basic question. Both code pieces do the same:

restart:
 for i from 1 to 5 do  a[i]:=i;  end do;

a[3];

3

restart:
 for i from 1 to 5 do  a(i):=i;  end do;

a(3);

3

 

In which case should  i use round brackets and when square brackets for indexing ?

Does it matter ?

 

Thomas

Hello

I have this problem:

I have two non linear equations with twos solutions (Ea and F in the picture)

I need the alpha that gives me the max Ea

How can I enter this in maple.

Thanks a lot!

I attach an image of the equations to be more specifyc

HI,

Does anybody know about this function, that is no more in Maple as a spécial function?  I search the web and I can't find the series that represent this function.  Is there somewhere a Maple's user who have program it so I can use it in Maple 12?

Mario Lemelin

If I do   5466!   I get a number with a bracket saying 17859 digits.  Okay so now I want to explore that number ....

When I right click and explore.  A little explore window pops up an that's it.  No exploration of the number what-so-ever.  How do I explore that number?

Hi all,

when using solve to solve a simultaneous equation e.g. " solve({6*c+d=24,6*c^2+d^2=96}; " I will obtain two solutions, or with different values maybe even more, I want to put the solutions into an equation e.g." c^6*d" and obtain the maximum value from all the sets of solutions I have.

Any help I will be very grateful, at the moment I am working out by copying and pasting but it will get much harder as the number of solutions increases.

Thanks,

Alex

hi everybody

Download 4125_Testdata.txt
View file details
I am trying to create a point plot from a data file, with the first two columns, x,y, and the third column as the error in y.

I can make the pointplot with the first two columns, but trying to add in the third colum for the Errorplot in statistics program is not working.  Is there a way I can use this third column of my data file to be the yerrors= part of Errorplot command?

Hi everybody,

I'm using Maple 9.5 on a mandriva station to do some analysis for my PhD. In the end, I get a plot with 2 curves : one is continuous, and the other isn't (it's a kind of Heaviside).

I didn't find a way to do a proper plot, including greek symbols, and formulas in the legends with maple... For this reason, I decided to export the results from my plot to a file containing on each line couples (x, y) and then plot it properly with another tool (gnuplot...).

Given two functions (y=x^2+8 and y=x-6) how can I find the shortest distance between the two? And how do I find the points on these functions that are the least distance to the other? My teacher hinted that parameterizing the curves would help, but I still have no idea what to do...

How can I get random drawings from a list with data in the range of mean + - 1 standard deviation?

I know how to do it for a theoretical normal distribution

with(Statistics);
S := Sample(RandomVariable(Normal(0, 1)), 1000)

but not for an empirical distribution....

Hi, I need to construct a heap using a list. Have found this in Maple help. > h := (heap[new])(lexorder, greg, tony, bruno, michael); (heap[insert])(stefan, h); stefan > (heap[size])(h); 5 > (heap[max])(h); tony > while `not`((heap[empty])(h)) do (heap[extract])(h) end do; tony stefan michael greg bruno

I encounter a situation demonstrated in the following piece of codes:

I'm playing around with the embedded components, mostly buttons, sliders, labels, and plots.

Is it possible to include special characters such as omega or pi or beta on the label, or as the text on a button, or in the legend name of a plot? If so, how?

 

 

I want to generate a set of numbers of fixed size with maple, when I use the rand procedure within a fixed integer range let us say rand(1..2^4) and ask maple to pick 8 integers, maple will pick 8 different integers in the required range.

I would be grateful for any help.

Alex

Hi,

I have defined my group in maple as

G:=grelgroup({u,v,w},{[u,v,u,1/w],[v,u,v,1/w],[u,u],[v,v],[w,w]})

I now want to define a function on GxGxG. Previously I have used array, i.e. f:=array(0..2,0..3,0..4), but how do I do it for elements in G?

Many thanks,

Jenny

First 2187 2188 2189 2190 2191 2192 2193 Last Page 2189 of 2433