MaplePrimes Questions

Hi,

Can someone please tell me why I am getting this error (in bold):

> ODE := diff(y(x), x)+3*y(x) = x^2
                                     
> ics := y(0) = 1

> dsolve({ode,ics})

Error, (in dsolve) not an ODE system with respect to the unknowns {y(0)}

restart; with(plots); Eq1 := diff(f(eta), `$`(eta, 3))-(diff(f(eta), eta))^2+m*f(eta)*(diff(f(eta), `$`(eta, 2)))-(M^2+lambda*P)*(diff(f(eta), eta)) = 0; Eq2 := diff(theta(eta), `$`(eta, 2))+m*pr*f(eta)*(diff(theta(eta), eta))-lambda1*pr*theta(eta)*(diff(f(eta), eta)) = 0; bcs1 := f(0) = s, (D(f))(0) = -1, (D(f))(10) = 1; pr := .72; M := 1; m := 2; lambda := 1; lambda1 := 1; bcs2 := theta(10) = 0, theta(0) = 1; L := [0.5e-1, .1, .2, .4, .6, .8, 1, 5, 10, 20]; for k to 10 do R := dsolve...

Hi everyone, I am getting this error message in maple can i get any help

Error, (in DynamicSystems:-RouthTable:-RouthTable) the polynomial must not contain complex values

Hi all

Can anyone suggest ways of speeding up this code ?

div_vec := proc(a::Vector,b::Vector)
# procedure returns the element-byelement
# division of vector a by vector b
local i,c:
c:=Vector(Dimension(a)):
for i from 1 to Dimension(a) do
c[i]:= a[i]/b[i]:
end do:
return c:
end proc:
Thanks
LR

Let G be an undirected graph having the vertices V={1,...,n}. A subset {i,j,k} is said to be a triangle of G if the complete graph with these vertices is a subgraph of G.
How to find the number of all triangles of G in an optimal way? The code should work with RandomGraph(400,1000).

I am plotting a curve generated from odeplot and I would like to fill the area under this curve.  I have tried filled=true and filled=[color="Blue",transparency=0.5] in the call to odeplot but it only plots the curve with no underfill.  Please advise on how to shade the area under a curve generated from odeplot.  Thanks very much.

Is there a simple way to have Maple re-formulate an expression like:

  r^2 * sum(A(j)*r^(n+j))

to :

  sum(A(j)*r^(n+j+2)

 

simplity, collect doesn't seem to do it.

Is there a simple function, or does one have to revert to the subsop procesure reported in a 2008 post.

 


Thanks.

Hi

 

I am working with mapleSim in two different computers, one in my school and another that is mine. I am using dropbox to keep the mapleSim documents and the costum component that i am creating synchronized in both PC´s. But i have noticed that mapleSim store the file that i attacht in another folder, so when i change the components equations in one document, on the other PC there are no changes. Is it possible to change the folder where the...

I want maple 15 to show me how it works out the formula (transposition) from N = 40^(1.5t) to t = 0.666..7(ln(1/40)*N)
 
I want to know how it transposes this formula from N to t I want the steps the actual working, I can't seem to figure it out as I'm using maple 15 as a learning tool, I have all the student modules installed but have no idea what I'm doing here
 
> N = 40*exp(1.5*t);
N = 40 exp(1.5 t)
 

Hello

I need some help on a problem which seems simple...

I'm doing as follows:

restart; with(LinearAlgebra); with(plots):

II[C] := proc (delta) options operator, arrow; 230/(84192.96489-230*cos(delta)+(-1)*4128.950345*sin(delta)) end proc

(sorry for the formatting)

plot(II[C](delta), delta = -Pi .. Pi)

(This works just fine and produces a nice plot, then I continue)

f1 := plot(II[C](delta), delta = -Pi .. Pi)

Hi guys,

I tried many days but cannot find where to download or buy MapleNet 15. Please help me I am so appriciated.

Hi all,

I wonder if it makes sense to use tables as datatype for efficient maple code. I need this datatype to pass parameters to a procedure which is called many times.

In particular, I have the following criteria:

* efficient (fast) to access for read and write.

* potentially thread save ( I can also imagine having individual copies for each thread)

* present in future Maple versions

* easy to transform into C-code later

Hi, I have a J(5x5 diagonal matrix), I have M(5x5 matrix). Let i be my rows and j be my columns. I'm trying to calculate [A]ij = ([M]ij)/(JJi-JJj-2)

I cant think of a proper way to do it. Please help.

M:=Matrix([[2,5,7,9,8],[8,5,2,6,8],[5,4,5,5,7],[1,4,9,6,6]])

J:=Vector([3,5,4,9,6])

JJ:=DiagonalMatrix(J)

A11=2/(3-3-2), A12

Hi. I have nodes:=7

How do i write a matrix with my first set of nodes = -1 and a second set as 1, in a diagonal form? Sort of like a identity matrix but not quite.

What I did was to write J:=Matrix([[-1,-1,-1,-1,-1,-1,-1,1,1,1,1,1,1,1]])    ####my vector will have 2 times the number of my nodes.

Then DiagonalMatrix(J)

But I then want to change my number of nodes. Could you please advice if there's a smarter way to do this please?

I want to solve equations,program in maple as follows:

solve({n = b+2*c+q+2*r, (a+b+c)/(p+q+r) = 9, n*b-3.32*a*(a+p+2*n)*10^(-7)*t^(5/2)*exp(-18.27*10^4/t) = 0, n*c-3.32*a*(a+p+2*n)*10^(-7)*t^(5/2)*exp(-32.035*10^4/t) = 0, n*q-3.32*p*(a+p+2*n)*10^(-7)*t^(5/2)*exp(-9.16*10^4/t) = 0, n*r-3.32*p*(a+p+2*n)*10^(-7)*t^(5/2)*exp(-18.77*10^4/t) = 0, a+b+c+p+q+r+n-.73*10^28/t = 0}, {a, b, c, n, p, q, r})

I can't get the results but  "Warning, solutions may have been lost"

First 1759 1760 1761 1762 1763 1764 1765 Last Page 1761 of 2434