MaplePrimes Questions

Hi all, I'm hopeful someone can help you with this issue I am having in implementing a Maple procedure. I use to have a strong knowledge of the programme, but haven't used Maple in a couple of years and I appear to be more rusty than I recall, I keep hitting dead ends with multiple assignments, missing arguements and so forth, so I was hoping someone can help me smooth the edges!

 

The problem is as follows:

 

q1'' - f1(q1,q2) = - q1 / (q1^2 + q2^2) ^ (3/2)

I wrote down a covariance matrix through the following command:

 A := Matrix([[a, b], [b, c]], shape = symmetric, attributes = [positive_definite]);

and then I computed the Cholesky decomposition of this matrix using afterwards the command simplify as well
B := LUDecomposition(A, method = Cholesky)
C:=simplify(%)
What I obtained is this matrix
Matrix(2, 2, {(1, 1) = sqrt(a), (1, 2) = 0, (2, 1...

Hi I have the differential equations:

X := diff(F(t), t$2)+(10+8*sin(m*t)/(m*t))*F(t) = 0

I know that if it were X := diff(F(t), t$2)+(W)*F(t) = 0, where W was a constant, then the solution would be the standard WKB sol, but with a time varying function in front this solution is no longer valid.

 

I know this can be done and would like some help in plotting F(t) against t and i sholud look an oscialltig curve where when sin(mt)=0 it...

Hi,

I'm new in Maple and i've a project to do. I've to find at what time is 90% of the steady-state concentration of C achieved. And the eq is 

z'=k(1/2-z)(1/3-z), where k=0.3. 

So i had worked in Mathematica before and i know that it would look something like that in there: 

eqn1 = 0 == k (1/2 - z[t]) (1/3 - z[t])

DSolve[Evaluate[{eqn1}], z[t]].

But i have no idea how to find this 90%. I hope that someone will...

People:

 

I wrote a Maple 15 worksheet containing a function that calls two other functions defined earlier in the worksheet.  The main function didn't work, so I replaced one of the functions that was called, by cut-and-pasting its definition into the main function.  This is obviously inconvenient because I want to alter the function that I cut-and -pasted and whenever I do it I will have to cut-and-paste again.  It also detracts from the...

Dear all, I am new here, so I am sorry in advance if I make some mistakes. The problem here is how to transform

system of 2 differential equations 4th order to the system of 4 diff equations second order, or how to reduce system of 2 equations 4th order on two equations second order with vanishing solutions which I choose because they are big. Here is example

 

I'm trying to use solve to find out if a system of equalities and inequalities has any solution or not, but maple 15 seems to be giving phantom solutions.  A simple example is the following:

  solve({ a + b = 1, a > 0, b > 1, c > 0 }, {a,b,c});

It gives the output

I have a set of equations

Hello,

 

I'm going to ask an question which I think it has an easy answer. However, I can't figure it out.

I wonder why f:x->sin(x)/x is not considered as a function. When I type "type(f(x),'function')", Maple says it's false, even though I don't know why. I'm asking this because I'm making a procedure in which one of the parametres is a function and when I type

aprox:=proc(fn::function,x::realcons,iteracions::integer)

Hi,

I am trying to do somthing like this (I actually have a 5D Array, this is a simple example) (mathematica code)

a = { {{1,2,3},{4,5,6}},{{1,2,3},{4,5,6}},{{1,2,3},{4,5,6}}};

Transpose[a, {1,3,2}]

 (* this {1,3,2} dictates what gets transposed e.g. {1,2,3}, would leave the Array the same, and the example transposes the last two dimentions*)

in maple.

After some research it seems it makes sense in maple to use an...

Is it possible to include a step in the range when plotting a function? For example, plot(sin(x)-1/2,x=-1000..1000, in steps of 10) or similar syntax.

Your help would be greatly appreciated.

thanks, rolf.

Hi,

how can i install the DirectSearch optimization package for mac version (MAPLE 16)? i

i have the files from maple 15.

Gil

It's frustrating that Maple 14 evaluates this integral to be 0: 

int(sqrt(-8*cos(t)*sin(t)+5),t=0..2*Pi);

( The integrand is positive over the interval.)

This equivalent integral is evaluated correctly in terms of EllipticE:

int(sqrt(-4*sin(2*t)+5),t=0..2*Pi);

Hi

I am trying to compute the value of a complex integral with higher precision, but if I increase the number of significant digits the value is not computed. Are there any approaches that can give me higher precision?
Residue calculus does not appear to be an option but as the exponents are not necessarily integer.

The problem is the following:

int_C(phi(z)*exp(-l*z))intd z

where C can be parametrized by t->mu+t+c*I*t for t=0..infinity, mu and l is real.

 

Hello,

 

 I want to plot the following truncated powr series with trigonometric coefficients:

 

sum(-y2*y3+8*(-1)^((k-1)*(1/2))*sinh(y2*Pi*k)*sin(k*Pi*y3)/(Pi^3*k^3*cosh((1/2)*k*Pi)), k = 1 .. 10)

 

but I get some strange terms with a strange term "I" in it which causes strange plots. I removed and it seems ok, why does this happen and what can I do to avoid it?

First 1642 1643 1644 1645 1646 1647 1648 Last Page 1644 of 2434