Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
Hello peeps, In some of my calculations, I need to find and answer that is greater than or not equal to a certain value.... for example differentiate a function which gives x=-2 & x=3, if I now wish to define has to be x>0, how would I incorporate that into my maple command? Thanks in advance
Hi, I am trying to find out how to plot a vector function. I have the following vectorfunction: ([t^2-3],[1/2*t^2+2*t+1]) How do I plot this vector in maple? Thanks in advance
I'm trying to find y as a function of x in an equation. Here's the outline of my method: Suppose I have the following ode: ode := x^2*(diff(y(t), t, t))-3*x*(diff(y(t), t))+2*y = x^2 IC := y(0) = 7, (D(y))(1) = 2 dsolve({ode, IC}, y(t)) But I get the following: Error, (in ODEtools/info) y(t) and y cannot both appear in the given ODE. I'm not sure about what I'm doing wrong here in the syntax? Any hint would be appreciated. Thanks.
I'm trying to use dsolve on the following equation, but it gives me the following: "Error, (in tools/map) too many levels of recursion" - deq := (diff(y(t), t, t))+2*(diff(y(t), t))+26*y(t) = 6*exp^(3*t) dsolve(deq, y(t)) I'm usually better with Matlab but Maple is driving me nutttts! Any help would be much appreciated.
Would anyone be able to help me integrate ones like the following: Int(1/exp(eta)*eta*hypergeom([1, 1, 1],[2, 2, 2],eta),eta); I've tried using convert, simplify, etc. but nothing works. Many thanks, Sandra
Suppose I want to use a proc to change an element in a list. I run into this problem > TestProc := proc (s) s[3] := 5 end proc; > s := [1, 2, 3, 4]; [1, 2, 3, 4] > TestProc(s); Error, (in TestProc) illegal use of a formal parameter I realize I could make s a global variable, but what if I want my proc to be able to operate on *any* list? In C++ one would use a pointer, but I don't see that kind of capability in MAPLE. Is there another way to do it? -Thanks
Hi - I'm new to Maple. I can't seem to solve an ode with Maple because it gives me this error: Error, (in combine/exp) too many levels of recursion Lets say I have the following equation: > diffEq := (diff(y(x), x, x))-7*(diff(y(x), x)) = 7*exp^(3*t); I try the following and include the ICs: > with(DEtools) > dsolve({diffEq, y(0) = 1, y'(0) = 3}, y(x)); I wanted to know why this doesn't work? Correct syntax would be great. Thanks.
Hi, I have a lognormal distribution of which I know the 5% ,50% and 95% value of X.Can I work out the equation of pdf and cdf for the particular distribution? Thanks in advance, Nasos
I have a set of data points which form an *almost* straight line, but as the line is extended out the data points vary more and more from the median. I've figured out that they're actually forming a sinusoidal wave, which grows in "bandwidth" as it goes further out, and which is centered on a y=mx+b line. I'm guessing the fuction is along the lines of y= (ax)*(sin(bx))+cx+d How do I get that formula out?
I was wondering if anyone might know how to print the intermediate steps when using the dsolve function in to solve a 4th order ODE. I get the result of the dsolve function, but I want to see the actual steps that maple takes to get there. Is this feasible at all, or is there another much simpler method that I'm just not finding? Thanks in advance Jimmy Navarski
I was wondering if anyone might know how to print the intermediate steps when using the dsolve function in to solve a 4th order ODE. I get the result of the dsolve function, but I want to see the actual steps that maple takes to get there. Is this feasible at all, or is there another much simpler method that I'm just not finding? Thanks in advance Jimmy Navarski
Hi, I have a matrix of complex numbers. How can I show the image with maple? Thank you
Hi, I've been experimenting with the quaternionspackage. (The free download, not the commercial package). There seems to be an error in the calculation of the inverse: with (Quaternions); [*, +, -, Qabs, Qadd, Qamplitude, Qangle, Qarccos, Qarccosh, Qarccot, Qarccoth, Qarccsc, Qarccsch, Qarcsec, Qarcsech, Qarcsin, Qarcsinh, Qarctan, Qarctanh, Qargument, Qaxial, Qceil, Qcolatitude, Qconjugate, QconvertToFrac, Qcos, Qcosh, Qcot, Qcoth, Qcsc, Qcsch, Qdefine, QdivLeft, QdivRight, Qdot, Qeval, Qexp, Qfloor, Qfrac, Qicoeff, Qinverse, QisCommutable, QisEqual, QisPure, QisScalar, Qjcoeff, Qkcoeff, Qlength, Qln, Qlongitude, Qmagnitude,
Dear sir: I have a question, I am not sure if the Maple can solve it. For a n*n matrix such as: ------------------------------- X_1 x_2 x_3 ... x_n 1 0 0 ... 0 0 1 0 ... 0 ... 0 0 0 ... 1 -------------------------------- Where n is a constant (n is a abstract number, not concrete as 3 or 4), the same is for x_1,x_2... I want to calculate its inverse of this matrix! I am not sure whom I should ask for help! Please give me some instructions! Yours sincerely;
OuterProc := proc () local i, j; InnerProc := proc () i := 15 end proc; i := 0; InnerProc(); i end proc; The following proceedure returns 15, just as I want it to. However, compliation generates a warning saying that the variable i is implicitly local in Innerproc, which it is not. Is there any way to turn off this warning without turning off legitimate warnings about implicit declarations of local variables?
First 2098 2099 2100 2101 2102 2103 2104 Last Page 2100 of 2175