Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
I wonder if someone could help explain to me how to use Matrix equations. Suppose A is a 3x3 matrix of constants, b a 3 vector of variables (x,y,z) and c a 3 vector of constants. The equation A.b = c is really 3 equations in x y z. Is it possible to extract those equations from the matrix equation A.b = c? I explain my question more clearly in the uploaded worksheet. Thanks The link can be found in the File Manager Vie
I have a text file, named Gens.txt, in the followig format Heading1 : This is first line Heading2 : This is second line Heading3 : This is third line I want to write a code which does the following: 1. Reads a line from this file and substitutes the number of prefix spaces at the start of line and followed by #. 2. The portion after : is made uniform in terms of spaces i.e. each word is followed by only one space. 3. The line thus produced is to be written to a text file named GensByMaple.txt. For example the first two lines would become like the following:
There is a discontinuity at 0, but discont gives no answer: discont(1/sin(abs(x)),x); Any idea?
How can one solve this simple inequality with Maple? I've tried : solve(sin(x)>0,x); and Maple gives no solution.
Has someone encountered a message from maple "A problem was encountered during the save. The output file may be incomplete." This happens to me several times. While editing a maple code and saving the changes, the message pops up. True enough, when the file is reopened most of the code is gone. Even the original file that works before is now unusable. Turning off the autosave as suggested by t/s does not work. Saving the with another name does not work. Appreciate assistance from anyone. thanks P.M. Velez
hi; I'm written program of composite midpoint in this general form: int(f(x),x=a..b)=2*h*(sum(f(x[2i]); h=(b-a)/(2m+2) the function is: f(x)=1/(2+x^4); a=0; b=1; and all the given inside the program and I wretten the program but i have problem , Iwant compare between the approximate vales and the exact value this is the program: (doing in maple9.5)>> > restart; > f:=x->1/(2+x^4): a:=0: b:=1: > EI:=int(f(x),x=a..b): > EI:=evalf(EI); > for k from 1 to 3 do > n:=2^k*10: > h:=(b-a)/(n+2): > m:=n/2: s:=0: end do; > for i from 1 by 2 to n do > x:=a+(i-1)*h: > s:=s+f(x): > I(k):=2*h*s:
Hi everybody!! I'm looking to solve the roots of the following polynomial: Rootof(9*Z^4+(-12*x[1]+36)*Z^3+(33-72*x[1]-6*x[1]^2+L^2)*Z^2 +(-2*L^2*x[1]+36*x[1]^2+12*x[1]^3-66*x[1])*Z-3+33*x[1]^2-3*x[1]^4+L^2*x[1]^2) where x[1] and L are constant terms. Is there a analytical solution, knowing that I'm working in real domain with Z between ]-3/2,3/2], x[1]>Z, x[1] between [-3/2,3/2[, and 0<>
Its common in textbooks when dealing with the subject of transformation of coordinate systems to used primed coordinates, e.g. x' y' x'. MAPLE tends to interpret primes as derivatives. Is there any way to tell MAPLE that these primes represent different variables, not derivatives?
Hello, I have written a long Module with around 30 procedures (in Linux RedHat, Maple 10.03) it becomes cumbersome to write and edit it, especially everytime I modifie something, because the Java environment takes a long time to display when the execution group is so big. Is there a way to break a module into smaller pieces? Maybe call sub-modules written elsewhere? Thannk you for your help, Al.
Is it possible to define sequences or lists etc with units?? t:= (seq(100[s]..2000[s],100[s])); and t:=seq(100[s],200[s],300[s]); flag an error. if not is it possible to define the sequence, how can you append the units after a calculation. I want to perform the same calculation using units w/ one of the parameters varying to produces a list of calculated outputs all w/ units. Possible? Easy? e.g. v=d/t simple enough. well how can I generate a series of outputs from the above time sequences at a fixed distance d that spits out the velocities with units of m/s? Thanks,
Already posted this in my previous thread, but as it is different from the initial topic thought I would post it seperately So I'm playing with integer series and polynoms and it looks like Maple makes mistakes !! What am I doing wrong in below sheet ? View 3284_test2.mw on MapleNet or Download 3284_test2.mw
View file details The result provided by Maple is obviously wrong as all these functions should be positive.
I am having problems replicating the results from a theoretical physics paper from 1968. The paper deals with how lasers behave in certain material types, in this case nonlinear optical materials. But on to the maths, I'm trying to solve a couple of integrals but it would appear that they are very badly behaved with quite horrid results when i compare the plots to the plots in the paper. I have resorted to using Int to try and solve them numerically which sort of works, but using either numerical or analytic methods maple cannot give an answer for some values of parameters and just sits there for hours trying to solve it.
I have to maximize: Max P: 3.35a+3.55b+3.85c-2.6d under the folowing constraints: a,b,c,d>0 a+b+c+d=1 d=0.016a+0.016b+0.04c while minimizing: 0.002a+0.0212b under the constraints:a,b>0 and a+b
hi i am seeking help for a little problem The question is a part of my coursework but it doesnt make sense to me i dont know how to use maple to construct a model can you please help thanks. On board sailing ships or warships, a lookout stood watch in a crows nest high on the main mast. b) Construct a mathematical model to show how far a lookout can see. Clearly indicate any assumptions you make and define any parameters you use in your formula and in the construction of your model. c) You are given that the eye-level of a typical on deck lookout is 1.75m above deck level, the floor of the crow’s nest is 25m above deck level and the deck itself is 5 m above (flat) sea level. The radius of the earth can be taken as 6,3000 kilometres.
I am creating a maplet application which requires to provide theorems, definitions, and formulas with mathematical symbols. I used MathMLViewer element but it was very unfriendly. Is there any way to control this element to make the statement readable? For example: mu=sqrt(u[1]^2+u[2]^2+u[3]^2); angA:=arcos(u[1]/mu);angB:=arcos(u[2]/mu);angC:=arcos(u[3]/mu); t1:=`Magnitude of vector u is`*mu*`Direction angles are:`*`A=`*angA*`, B=`*angB*`, C=`*angC; with(Maplets:-Elements): maplet:=Maplet([[Mathviewer('fonsize'=10,wrapped=true,width=300,height=180,value=MathML-Export(t1))], [Button("OK",Shutdown())]]):Maplets-Display(maplet);
First 2155 2156 2157 2158 2159 2160 2161 Last Page 2157 of 2218