MaplePrimes Questions

I have conmpleted a maplet application. It takes 45 seconds to initiate the application. I understand to speed up my application is to convert it into a module. Can someone show me how to convert my applicatioh into module. Consider the application: with(Maplets[Elements]):Hello:=Maplet(["Hello World!", Button("OK", Shutdown())]): Maplets[Display](Hello): thanks in advance. Pat
How would I plot the points of f[i,j,k] versus t[i,j,k] where i, j, and k are from -n to n? Please let me know if you need clarification or further details as to what I'm trying to do.
Hello, I have an equation to solve over the integers. I already know that there are an infinite number of solutions, but I would like to know how I can get Maple to reproduce my results. I used isolve, but it returned nothing. Is there a trick or way of phrasing the question to get Maple to solve the problem? Thanks isolve((x+y+z)^3 = x*y*z) I also tried (with the same results): isolve((x+y+z)^3-x*y*z = 0) The solution is obviously: {0, n,-n} or some permutation of this set. Note I would like to be able to solve this as if I had no guess! Thank you.
This is from Introduction To Maple by Andre Heck page 63, exercise 4(b): "with(numtheory); ... Find the prime number that is closest to 9876543210123456789." Here is a solution that does not use numtheory: View 4937_IntroductionToMaplePage63Exercise4b.mw on MapleNet or Download 4937_IntroductionToMaplePage63Exercise4b.mw
View file details
Hello all, I have been trying to include maple output graphs into latex, I converted the output to eps and to gif, with eps I can not compile my tex to pdf, it says file not found but the same tex file can be compiled to dvi without any problem. the problem with eps is that they are gray images while I want to include the colourful maple graph. I used epstopdf package to let latex convert the eps to pdf format then include the pdf image but compiling the tex file to pdf gives the error : epstopdf..disabled image.pdf not found, of course it can not find image.pdf because the epstopdf package is for some reasons disabled and compiling it to dvi gives a colourful image but the image takes almost a whole page so not nice, not in the size and place I want to show it.
This is from Introduction To Maple by Andre Heck page 63, exercise 3(c): Use Maple to "fator the polynomial x^8+x^6+10*x^4+10*x^3+8*x^2+2*x+8 modulo 13". I think that my problem is that I don't know what it means to factor a polynomial modulo and integer.
I need to unpack this function f(x)=2*x in Fourier on segment [0,1]...help me,I don't know how...
Hi guys, i wrote this fairly simply routine, to basically generate n equations, generate relations between those equations, then attempt to solve them by comparing coeffients, upon which i group together the information about the coefficients, for example i could have the equation ax+by=4x, so from that x=4,b=0 The equations in question are Dx=[x,Dy]+[Dx,y], when D is a map which maps x and y to A, where x and y span A's basis. so Dx and Dy would be a linear combination of x and y. This would be for the 2 dimensional case, for the n dimensional case x and y would extend to n variables.
Hi, I am trying to create a multi-linear procedure with a memory (remember). I would like the function to implement (x,y)-> int(int(x*y),t=0..tf),tf=0..T) where x and y would normally be functions of t. I don't seem to be able to figure out how make this happen. The above function is effectively an inner product. I would like to calculate the inner product for the basis functions and remember their values. This will speed up my future computations drastically. If I just define the function without the multilinear property, the function does recognize the linear combinations with the remember. That is if I compute f(a,c) and f(b,c), the lookup table does not know how to process f(a+b,c). It should just equal f(a,c)+f(b,c).
I am looking for some lecture notes covering 'the' 'elementary' properties of the Laplace transform, preferable (but not already written) using Maple for the proofs. What I would like to see is L(f, s) = Int(f(t)*exp(-t*s),t = 0 .. infinity) where s may be _complex_ and is not assumed to be real.
Hi guys, I've forgotten how to count down in a for loop, so something like for i from 4 to 1 do i; end for: Any advice??
Hello Maple experts, during my studies, I have developed a number of Maple procedures that deal with quantum information/quantum computation. This means I use excessively the Matrix data structure and the LinearAlgebra package. Given the fact that I'm not the most talented programmer in general and also that I had no experience with Maple before, I have now a Maple package that is sometimes really slow. Especially when working numerically, I'm often jealous about the performance I could have achieved with Matlab. This is although I already try to use Digits=14 (which should, in principle, enable hardware floating point operations). However, procedures involving Matrix objects are mostly not supported by evalhf (and cannot be compiled, right?). In order to improve that I want to do a profiling. One way of doing that is using
Hi, I am trying to solve a time dependent partial differential equation using pdsolve in maple 11, but when I try to plot the solution I get the following error message: Error, (in pdsolve/numeric/plot) unable to compute solution for t>.200000000000000011: unable to store Float(undefined)+Float(undefined)*I when datatype=float[8] I am new to Maple and I don't know what that error message really means. Can someone please help me? Thanks
how to forcely or better say conditionally stop a "for" loop at a specific reached value without completing the rest of the loop, in other words I have such loop : for i from 0 to 100 do x[i+1]=f(x[i]) end do , I want this loop to stop at i where x[i+1]=x[i] (the fixed point) this can be at i=40 (for example) then I dont need to complete the iteration until i=100, which means how to let maple determine the number of iterations needed. and I need : if x[i+1]=x[i] k:= i: g:=x[i] to use these valuse later on in the program. if I somehow can stop the loop at i where x[i+1]=x[i] then I will absolutely not need the if statement. Can you please tell me how to perform this task?
can anyone solve me this problem in maple? i have a homework for tuesday i have to make a graph for a laplace function: 1/sqrt(2*Pi)*Int( e^(-x^2/2),x=0..x; can anyone help me??? please!
First 2267 2268 2269 2270 2271 2272 2273 Last Page 2269 of 2415