MaplePrimes Questions

I updated my blog entry - for those who might be interested: me, blogging

Suppose I've plotted 3 functions:

plot(f(x),x=0..1);
plot(g(z),z=0..1);
plot(h(w),w=0..1);

Now I'd like to have these 3 plots following one after another (in a successive manner) in 1 plot like diagram. How can I perform such a task?

 

Another question:

How can I have a plot in reverse range? For example instead of plot(x^2,x=0..1), I'd like to have sth as plot(x^2,x=1..0), i.e. the horizontal range begins from 1 and ends to zero (also the vertical range is from (1)^2=1 to (0)^2=0).

Why does Maple take (much) more time on calculating than Mathematica? For example, some time ago, I calculate this integration: int((sin(x)/x)^100,x=-infinity..infinity); although Maple is able to give the correct answer, but it takes about 5 minutes to achieve this answer. However, when I did the same thing in Mathematica, the time spent on calculating is less than one minute. Why is there such a notable distinction between the two computer algebra systems? PS: Versions of the two softwares that I use are Maple 11 and Mathematica 6.
Hi everyone. Does anyone know how to derivate such function: piecewise(t and avoid in result: Float(undefined) in points where function is not continuous. You can see what I'm writing about in file trajectory I appended. The problem is that I have a big simulation of constrained robot and I need to derivate my equations which are not continuous and I cannot change it. Thanks for any help. Piotr P.S. I forgot to write I use MAPLE version 8
Hello everyone, I have a problem with Maple 11, and I was wondering if anyone can provide insight. When I create a function, say: r := t-> [t^2, 2t, 3t^3]; And then somewhere further down my document I do... r(2); or perhaps.. plot3d(r(t), t=0..1); Etc... there are times where it appears that maple 'forgets' what my functions are and I'm forced to click on my initial function definition and press Enter again to 'remind' maple what 'r' is. I don't understand why this happens... if I say x=2 in a programming language, it stays =2 until I redefine it otherwise, but with maple my functions don't remain what I define them to be and I don't understand why my functions simply don't 'stick'???
Hey folks. I was wondering if there is anyone fairly well versed in the modular linear algebra package who can help me figure out how to solve a problem. I am doing some research about some coding theory, and I find myself needing to row reduce a matrix with entries from the integers modulo 2. I am using Maple 11 on a Mac, and have read the help file on the RowReduce command in the LinearAlgebra[Modular] package, which explains all of the parameters I need to include. I thought I understood the parameters, but I get an error each time I try to do use the command. The error I get states that the matrix is singular, which shouldn't be a problem since I am not trying to invert anything.
How do I get the ln's in ln(2*x-2*a)/a-ln(2*x)/a to combine? How do I get maple to convert exponentials into hyperbolics and back? In general, is there a good reference for collect, combine, convert, simplify, expand, factor and all similar functions? How to massage an expression into the form you want seems to be an enormous and/or hit or miss affair. Thanks.
How Do I Do Conditional Probability with Maple? I use Maple 10 Retail Student. My word problem is "Should You Switch". What I want to know is how Do I use Maple to a) compute it and verify my work b) Use Maple for this. You are a contestant on a game show where a million dollars is hidden between on of three closed doors. You geuss door 1 BUT before opening that door the game show host opens door 2 and shows you that nothing is hidden there. He offers you the chance to switch your geuss to door 3. Should you switch? How do I use Maple to verify my work?
Dear all! In the attached document X is a function in p and F. Solving X for F returns three possible solutions in p. When I put p=6 all three solutions contain complex numbers. However, when I put p=6 at the very top of the file, transforming X into a function of only F, Maple finds two possible solutions for F both without complex numbers (11.1 and 3371.9, whereas 11.1 is the "right one"). How come that Maple doesn't yield the same results when I define p=6 later in the file? I'd be very greatful for any suggestions and help! Best regards, Florian
Hello, I ran into some problems with the y-axis labeling and tickmarks, and would appreciate any help you could offer. Thanks! The y-axis plotted below has two 10^(-6) labels, and the tickmarks on the y-axis do not look correct either (more than 10 subtickmarks per order of magnitude!). -Dan > restart; >with(plots); > dBv[1] := 37.43; dBv[2] := 31.29; dBv[3] := 25.75; dBv[4] := 20.86; dBv[5] := 16.54; dBv[6] := 12.58; dBv[7] := 9.28; dBv[8] := 6.02; dBv[9] := 3.32; dBv[10] := 1.25; dBv[11] := -1.54; dBv[12] := -3.38; dBv[13] := -5.45; dBv[14] := -7.2; dBv[15] := -8.04; dBv[16] := -8.29; dBv[17] := -10.06; dBv[18] := -9.32; dBv[19] := -10.53; dBv[20] := -9.71;
How do I get Maple 11 to show the symbol instead of the text when using textplot and labels=[ ] in plot? For example, I want my labels to have the symbol lambda, but when I try labels=[\lambda,x] I just get the text "lambda." Likewise, I'd like to be able to plot text with subscripts, i.e. text1:=textplot(0.6,0.8,"p_gt^*") gives me that exact text on the graph when what I really want to show up is the label p* with the subscript "gt." Thanks!
I am trying to export a worksheet from Maple11 to LaTeX using the "export as" function. It produces a .tex-file that uses the "maplestd2e"-package. When I compile the document I see the output of the computations and all figures, but I don't see the maple-commands that I have entered to obtain the output. It works fine if I use Classic Worksheet mode, which uses the "maple2e"-package. Any suggestions on how I can export the Maple input commands to LaTeX using the standard Maple11? Thank you. mami
How do I force maple to simplify an expression containing exp(ix) and exp(-ix) to an expression contating sin(x) and cos(x) (if possible). Example: I want maple to recognize a*exp(I*x)+a*exp(-I*x) as 2*a*cos(x) or (slightly more complicated) to recognize -I*(1-exp(-2*I*x))/(1+exp(-2*I*x)) as sin(x)/cos(x) or tan(x)
Dear all! I don't use Maple very regularly and have come across the following error message: "Error, (in content/polynom) general case of floats not handled" This error message occurs when I try to differentiate a fairly simple function of one variable and various constants. The curious thing is the following (and that's probably crucial to the problem): when the constant d equals 1 (see attached file), Maple does the derivation without any problems. As soon as it is a decimal number (e.g. 0.9) the error message occurs (note: d is always smaller or equal to 1). Plus, when d is a decimal number all functions in my worksheet increase considerably in size. Maple doesn't seem to fully simplify them. I guess, this is the source of the problem.
Hi,

I had an issue where I wanted the quotient of two integers a and b; the quotient q from the division algorithm for a/b which finds a = b*q + r, 0 <= r < b

I was not sure how to obtain it. Since,

a := 7;
b := 3;
q := a / b; # returns fraction 7/3

Received some help from G. A. Edgar from Ohio State and Joe Riel from Maple; who clued me into the use of 'iquo' to obtain this.

a := 7;
b := 3;
q := iquo(a,b,'r'); # q = 2, r = 1

I was experimenting with floor(a/b), but I am sure this is more efficient (no conversion between fraction and integer);

There is 'irem' which just determines the remainder from integer division. The 3rd argument in iquo is optional ... and returns the remainder from the division.
First 2258 2259 2260 2261 2262 2263 2264 Last Page 2260 of 2387