Product Tips & Techniques

Tips and Tricks on how to get the most about Maple and MapleSim
How do i find the coeff? It is not working! > restart: > alias(epsilon=ep); epsilon > eqn := ep*x^4 - 3*x^2 -2*x + 1; 4 2 eqn := epsilon x - 3 x - 2 x + 1 > eqn1 := simplify(subs(x=ep^(n)*y,eqn)/epsilon^(1+4*n)); 4 (-1 - 2 n) 2 (-1 - 3 n) (-1 - 4 n) eqn1 := y - 3 epsilon y - 2 epsilon y + epsilon > asym1 := sum(y[n]*ep^(n), n=0..3); 2 3
Hello everybody, does anyone know how to integrate the output of BsplineCurve in maple 8? I can plot it over a given interval, but if I try to perform the corresponding definite integral, I get the following error message: Error, (in int) wrong number (or type) of arguments as opposed to the output of the Spline routine, which can be integrated without problems. Thank you for your help.
Suppose the adjacency matrix M is given. How we can get the graph of it from Maple? Can we draw the graph now? Thanx.
is there any way to do quantum field theory on maple 11 even if it means to have an add on package? answer will be helpful
In a previous blog entry I described a novel method, proposed by Robert Israel, for sorting a list of lists of small positive integers, specifically those less than 256. It is significantly faster than the usual method. Roman Pearce responded with a method for rapidly sorting listlists of integers (a listlist is a list of sublists with identical number of elements), regardless of size. While not as fast as Robert's technique, it, too, is significantly faster than the usual method and has no restriction on integer size.
Hi, I was wondering, how the Boolean matrices can be operated (multiplied, added etc) in Maple? Can we find their eigenvalues etc? Your reply would do great help to me. Many Thanks. Athar Kharal
Hi All. To find all solutions to a trig eqn in Maple 11 you do the following (See attached file). My question is what commands do I use in Maple 10 to replicate the Maple 11 results. M11 is too slow on my machine. (in M10 all i get is error message "solutions lost"). rgds View 2735_Solutions with restrictions.mw on MapleNet or Download 2735_Solutions with restrictions.mw
I need to sketch a graph of a sail and indicate the location of the center of pressure. I'm semi new to maple, so if you could explain step by step, that would help me. Points (0,0),(2,1),(0,5) The lines would be y=-2x+5, y=0, & y=x/2 How do I get all three of them into one graph and only from ththe points? Also, how do I indicate the center of pressure which is (31/12,7/12) ? Thanks, Jerry
Hi All In M11 you do the following; _EnvAllSolutions := true: _EnvExplicit := true: solve([sin(x)*cos(x)=0,x>0,x
I can't seem to figure out how to plot the following in polar form. Can you help please. I'm semi new, so not to fast please. -9/(4*r^2+36)
A poster on the usenet group comp.soft-sys.math.maple asked how to do the following more simply:
A:={ { [1,2],[3,4] } , { [5,6],[7,8] } }:
map(x->map(y->map(f,y),x),A);

       {{[f(1), f(2)], [f(3), f(4)]}, {[f(5), f(6)], [f(7), f(8)]}}
As has been discussed here recently, this can be readily done using evalindets. For example,
evalindets(A, list, integer, f);
       {{[f(3), f(4)], [f(1), f(2)]}, {[f(5), f(6)], [f(7), f(8)]}}
John Fredsted asks whether there is a built-in method in Maple for lexically sorting a list of lists of small positive integers. There is not, however, Robert Israel provided two methods for accomplishing the task. The first uses the standard technique for extending Maple's sort procedure, that is, assigning a boolean-valued binary function and passing it to sort. The second method that Robert provided is ingenious. Here it is, in full,
Ls:= map(convert,L,bytes):
Ls:= sort(Ls, lexorder):
map(convert,Ls,bytes);

It converts each list into a string, sorts the strings, then converts the strings back to lists. This method is significantly faster than the previous. It does, however, have a limitation; it can only operate on lists with positive integers in the range 1..255. While that limitation was suitable for the original poster's application, that will not always be the case.

Dear Sir: In worksheet mode, I got an evaluation result which has a very long equation. The maple display it just on one line so that the result is displayed over window bound. I want to set it up to display the result on multiline. So, it is easy to look at my result without moving my mouse. Could you tell me how to set it up? Thanks in advance.
The student is supposed to use the logistic differential equation given to them (with carrying capacity .52e12), dsolve() the differential equation with a specific initial condition, and then calculate the population at 3 different times. Notice what happens:

[> restart;
[> my_deq := (diff(P(t), t))/P(t) = .789*(1-P(t)/(.52*10^12));

                   d
                   -- P(t)
                   dt                               -11
         my_deq := ------- = 0.789 - 0.1517307692 10    P(t)
                    P(t)

[> dsolve({my_deq,P(2290)=.83*10^10});
Hi, is the JavaViewLib package 3.22 running with Maple 11? After: libname := "/home_zam/plch/maple/JavaViewLib", libname: with(JavaViewLib): (this works fine in Maple 10) I received: Warning, system/ssystem calls have been disabled in the options dialog. Any suggestions? With best regards. Roman
First 46 47 48 49 50 51 52 Last Page 48 of 64