Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hello fellow maple struglers!

This is my first question, so hopefully I did it in the correct manner. My problem (I think) is of a simple nature, but I can't seem to get it to work. The equation I have is the following:

All is nice and well and as you all can see it depends on two variables. Now what I want to do is to express the function in a shape where it depends on the ratio t/d only. Simple calculus shows that for this equation it is rather easy, where the result is:

(62,8*t/d+0,0945)/pi

Now I would like to know whether it is possible to automate this in maple, such that I can plot Wr_over_p as a function of t/d. I know I can simply use the form above and make the plot, but further down in my maple file I have an equation which is much more complex, and I want to plot thatone as a function of t/d as well.

I hope I have made my problem clear to some of you guys, but if you require some further explaination than please let me know. Thanks in advance for your help, I hope there is someone who can help me with this!

I have two deformed planes, that i would like to draw with 3dplot, as well as drawing a curve marking their intersection.

the curves are given by the expressions:


C = -(k[d2]*B[2]+I*k[m]+k[d1]*B[1])/((B[1]+B[2]-R)*k[a1]+(B[1]+B[2]-R)*k[a2]-k[m]),

C = k[d1]*B[1]/(k[a1]*(R-B[1]-B[2]))

 

evaluated at

Pars := [k[a1] = 6*10^(-4), k[d1] = 7*10^(-3), k[a2] = 5*10^(-4), k[d2] = 10^(-2), R = .5, k[m] = 10^(-4), C[T] = 100, h = 10^(-6)]

with the variables B[1],B[2] and C within the bounds [0..0.5],[0..0.5],[0..100].

 

My method was to try and use solve to find a formula for the intersection curve- but i couldn't get 3dplot to plot it!

Consider the following code snippet:

with(DifferentialGeometry):
DGsetup([x],M);
RemoveFrame(M);

By itself it is, of course, pretty meaningless, but that is not the point. My problem is that after Maple has executed it, it will annoyingly continue using M> for each new execution group that is inserted. Having removed the frame with the command RemoveFrame, I would have expected that not to be the case. How can the frame be truly removed?

hi. i have a system of ODEs. is there any answer ? rho is constant !

restart:Physics:-Assume(rho=constant)

{(-constant+rho)::0, (constant-rho)::0}, {(-constant+rho)::0, (constant-rho)::0}

(1)

#rho=10:

sys:={8*g(t)^3*diff(g(t),t$2)+4*(g(t)*diff(g(t),t))^2+1=0,rho=-1/g(t)-2*(diff(g(t),t)+t*diff(g(t),t$2))-t/(2*g(t)^3),rho=(-t/g(t))*(diff(g(t),t))^2+t/(4*g(t)^3)}

{rho = -t*(diff(g(t), t))^2/g(t)+(1/4)*t/g(t)^3, rho = -1/g(t)-2*(diff(g(t), t))-2*t*(diff(diff(g(t), t), t))-(1/2)*t/g(t)^3, 8*g(t)^3*(diff(diff(g(t), t), t))+4*g(t)^2*(diff(g(t), t))^2+1 = 0}

(2)

dsolve(sys)

 

 

Download dsolve.mw

Hi, I have this procedure (from Maple 5) but I am using it in Maple 15. My problem is this program can not run. I think there is some commond incorrect, but not sure which ones. Please help me in this problem. Thanks a lot.

cocycle.mw

NULL

Cocycle := proc (L, n) local i, j, k, h, v, u, w, C, eqns, e, f, g; v := vector(n); eqns := {}; u := vector(n); w := vector(n); C := array(antisymmetric, 1 .. n, 1 .. n, []); for i to n do for j from i+1 to n do for k from j+1 to n do for h to n do v[h] := L[i, j, h]; u[h] := L[j, k, h]; w[h] := L[k, i, h] end do; e := array(sparse, 1 .. n, [k = 1]); f := array(sparse, 1 .. n, [i = 1]); g := array(sparse, 1 .. n, [j = 1]); eqns := `union`(eqns, multiply(transpose(e), multiply(C, v)))+multiply(transpose(f), multiply(C, u))+multiply(transpose(g), multiply(C, w)) end do end do end do; print('The*cocycles*are', eqns) end proc

proc (L, n) local i, j, k, h, v, u, w, C, eqns, e, f, g; v := vector(n); eqns := {}; u := vector(n); w := vector(n); C := array(antisymmetric, 1 .. n, 1 .. n, []); for i to n do for j from i+1 to n do for k from j+1 to n do for h to n do v[h] := L[i, j, h]; u[h] := L[j, k, h]; w[h] := L[k, i, h] end do; e := array(sparse, 1 .. n, [k = 1]); f := array(sparse, 1 .. n, [i = 1]); g := array(sparse, 1 .. n, [j = 1]); eqns := `union`(eqns, multiply(transpose(e), multiply(C, v)))+multiply(transpose(f), multiply(C, u))+multiply(transpose(g), multiply(C, w)) end do end do end do; print('The*cocycles*are', eqns) end proc

(1)

NULL

NULL


Download cocycle.m

in Mathematica, there is the option called BoxRatios

"is an option for Graphics3D that gives the ratios of side lengths for the bounding box of the threedimensional picture."

It is sort-of like aspect ratio, but for 3D. It is set by default so make 3D plot looks "nice". I can't seem to find equivalent Maple option. The closest is the option "s=" for plot3d, but this just turns of/on "constrained scaling" and does not allow one to modify the "BoxRatios"

Let me give an example. Here is 3D plot in Mathematica and the same in Maple. I'd like to get the Maple 3D to look similar to Mathematica 3D in terms of the "aspect ratio". Maple on the z-axis is using the same size as in the x and y axis, and even though this is realistic, it does not make the plot as nice. I want to change this ratio.

T0[x_, y_, m_] :=20/Pi Sum[ (-1)^(n + 1)/n Exp[- (n Pi/10) y] Sin[ (n Pi/10) x], {n,1, m}]
Plot3D[T0[x, y, 70], {x, 0, 10}, {y, 0, 10}, PlotRange -> All,  AxesLabel -> {x, y, z}]

In Maple:

T0:= (x,y,m)-> 20/Pi*sum( (-1)^(n+1)/n*exp(- n*Pi/10*y)*sin(n*Pi/10*x),n=1..m);
plot3d(T0(x,y,50),x=0..10,y=0..10,scaling=unconstrained);

So Maple is using 1:1:1 box ratio. Mathematica default is 1:1:0.4, and I wanted to see if I can change Maple to be the same.

I get same plot in Maple using scaling=unconstrained or scaling=constrained. So this option is not very useful for what I want.

Is there a way to change the "BoxRatios" as defined above in Maple? There must be, right? Do I need to use different package?

 

Dear All

In following I tried to find symmetries of certain partial differential equation taken from paper "Group classification and exact solutions of generalized modified Boussinesq equation". But the determining equations are not matching with equations obtained in paper.


with(PDEtools)

DepVars := [f(u(x, t)), u(x, t)]; declare(f(u(x, t)), u(x, t))

[f(u(x, t)), u(x, t)]

 

f(u(x, t))*`will now be displayed as`*f

 

u(x, t)*`will now be displayed as`*u

(1)

PDE1 := diff(u(x, t), t, t)-delta*(diff(u(x, t), x, x, t, t))-(diff(f(u(x, t)), x, x))

diff(diff(u(x, t), t), t)-delta*(diff(diff(diff(diff(u(x, t), t), t), x), x))-((D@@2)(f))(u(x, t))*(diff(u(x, t), x))^2-(D(f))(u(x, t))*(diff(diff(u(x, t), x), x))

(2)

G := [seq(xi[j](x, t, u), j = [x, t]), seq(eta[j](x, t, u), j = [u])]

[xi[x](x, t, u), xi[t](x, t, u), eta[u](x, t, u)]

(3)

declare(G)

eta(x, t, u)*`will now be displayed as`*eta

 

xi(x, t, u)*`will now be displayed as`*xi

(4)

DetSys := DeterminingPDE(PDE1, G, integrabilityconditions = false)

{diff(diff(xi[t](x, t, u), u), u)-(diff(diff(diff(diff(xi[t](x, t, u), u), u), x), x))*delta, (diff(diff(eta[u](x, t, u), x), x))*(diff(f(u), u))+(diff(diff(diff(diff(eta[u](x, t, u), t), t), x), x))*delta-(diff(diff(eta[u](x, t, u), t), t)), -(diff(diff(xi[x](x, t, u), u), u))*(diff(f(u), u))-(diff(diff(diff(diff(xi[x](x, t, u), t), t), u), u))*delta+(diff(diff(f(u), u), u))*(diff(xi[x](x, t, u), u)), 2*(diff(diff(diff(diff(xi[x](x, t, u), u), u), u), x))+2*(diff(diff(diff(diff(xi[t](x, t, u), t), u), u), u))-(diff(diff(diff(diff(eta[u](x, t, u), u), u), u), u)), 2*(diff(diff(diff(xi[x](x, t, u), u), u), x))+2*(diff(diff(diff(xi[t](x, t, u), t), u), u))-(diff(diff(diff(eta[u](x, t, u), u), u), u)), 4*(diff(diff(xi[x](x, t, u), t), x))-2*(diff(diff(eta[u](x, t, u), t), u))+diff(diff(xi[t](x, t, u), t), t), 2*(diff(diff(xi[x](x, t, u), u), x))+2*(diff(diff(xi[t](x, t, u), t), u))-(diff(diff(eta[u](x, t, u), u), u)), diff(diff(xi[x](x, t, u), x), x)-2*(diff(diff(eta[u](x, t, u), u), x))+4*(diff(diff(xi[t](x, t, u), t), x)), -2*(diff(xi[x](x, t, u), x))+(diff(diff(diff(eta[u](x, t, u), u), x), x))*delta-2*(diff(diff(diff(xi[t](x, t, u), t), x), x))*delta, -(diff(diff(diff(xi[x](x, t, u), u), x), x))*delta-4*(diff(diff(diff(xi[t](x, t, u), t), u), x))*delta+2*(diff(diff(diff(eta[u](x, t, u), u), u), x))*delta-2*(diff(xi[x](x, t, u), u)), (diff(diff(f(u), u), u))*eta[u](x, t, u)+(diff(diff(diff(eta[u](x, t, u), t), t), u))*delta-2*(diff(diff(diff(xi[x](x, t, u), t), t), x))*delta+2*(diff(xi[t](x, t, u), t))*(diff(f(u), u)), -2*(diff(xi[t](x, t, u), u))*(diff(f(u), u))+4*delta*(diff(diff(diff(eta[u](x, t, u), t), u), u))-2*(diff(diff(diff(xi[t](x, t, u), t), t), u))*delta-8*(diff(diff(diff(xi[x](x, t, u), t), u), x))*delta, 2*(diff(xi[t](x, t, u), u))*(diff(f(u), u))+2*delta*(diff(diff(diff(eta[u](x, t, u), t), u), u))-(diff(diff(diff(xi[t](x, t, u), t), t), u))*delta-4*(diff(diff(diff(xi[x](x, t, u), t), u), x))*delta, 2*(diff(diff(xi[t](x, t, u), t), u))-(diff(diff(eta[u](x, t, u), u), u))+(diff(diff(diff(diff(eta[u](x, t, u), u), u), x), x))*delta-2*(diff(diff(diff(diff(xi[t](x, t, u), t), u), x), x))*delta, diff(diff(xi[x](x, t, u), u), u)-4*(diff(diff(diff(diff(xi[t](x, t, u), t), u), u), x))*delta+2*(diff(diff(diff(diff(eta[u](x, t, u), u), u), u), x))*delta-(diff(diff(diff(diff(xi[x](x, t, u), u), u), x), x))*delta, 2*(diff(xi[x](x, t, u), u))-8*(diff(diff(diff(xi[t](x, t, u), t), u), x))*delta+4*(diff(diff(diff(eta[u](x, t, u), u), u), x))*delta-2*(diff(diff(diff(xi[x](x, t, u), u), x), x))*delta, -(diff(diff(xi[t](x, t, u), u), u))*(diff(f(u), u))-4*(diff(diff(diff(diff(xi[x](x, t, u), t), u), u), x))*delta-(diff(diff(diff(diff(xi[t](x, t, u), t), t), u), u))*delta+(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), u))+2*(diff(diff(diff(diff(eta[u](x, t, u), t), u), u), u))*delta, -(diff(diff(xi[t](x, t, u), x), x))*(diff(f(u), u))+diff(diff(xi[t](x, t, u), t), t)-2*(diff(diff(eta[u](x, t, u), t), u))+2*(diff(diff(diff(diff(eta[u](x, t, u), t), u), x), x))*delta-(diff(diff(diff(diff(xi[t](x, t, u), t), t), x), x))*delta, -2*(diff(xi[t](x, t, u), x))*(diff(f(u), u))+2*(diff(xi[x](x, t, u), t))-2*(diff(diff(diff(xi[x](x, t, u), t), x), x))*delta+4*(diff(diff(diff(eta[u](x, t, u), t), u), x))*delta-2*(diff(diff(diff(xi[t](x, t, u), t), t), x))*delta, (diff(diff(diff(diff(eta[u](x, t, u), t), t), u), u))*delta-2*(diff(diff(diff(diff(xi[x](x, t, u), t), t), u), x))*delta+(diff(diff(diff(f(u), u), u), u))*eta[u](x, t, u)+(diff(diff(eta[u](x, t, u), u), u))*(diff(f(u), u))-2*(diff(diff(xi[x](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), t)+(1/2)*(diff(eta[u](x, t, u), u))), -(diff(diff(xi[x](x, t, u), x), x))*(diff(f(u), u))+2*(diff(diff(eta[u](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), x))+diff(diff(xi[x](x, t, u), t), t)-delta*(diff(diff(diff(diff(xi[x](x, t, u), t), t), x), x))+2*delta*(diff(diff(diff(diff(eta[u](x, t, u), t), t), u), x)), 2*(diff(diff(xi[x](x, t, u), t), u))-2*(diff(diff(xi[t](x, t, u), u), x))*(diff(f(u), u))-2*(diff(xi[t](x, t, u), x))*(diff(diff(f(u), u), u))+4*(diff(diff(diff(diff(eta[u](x, t, u), t), u), u), x))*delta-2*(diff(diff(diff(diff(xi[t](x, t, u), t), t), u), x))*delta-2*(diff(diff(diff(diff(xi[x](x, t, u), t), u), x), x))*delta, diff(diff(diff(diff(xi[t](x, t, u), u), u), u), u), diff(diff(diff(diff(xi[t](x, t, u), u), u), u), x), diff(diff(diff(diff(xi[x](x, t, u), t), u), u), u), diff(diff(diff(diff(xi[x](x, t, u), u), u), u), u), diff(diff(diff(xi[t](x, t, u), u), u), u), diff(diff(diff(xi[t](x, t, u), u), u), x), diff(diff(diff(xi[t](x, t, u), u), x), x), diff(diff(diff(xi[x](x, t, u), t), t), u), diff(diff(diff(xi[x](x, t, u), t), u), u), diff(diff(diff(xi[x](x, t, u), u), u), u), diff(diff(xi[t](x, t, u), u), u), diff(diff(xi[t](x, t, u), u), x), diff(diff(xi[t](x, t, u), x), x), diff(diff(xi[x](x, t, u), t), t), diff(diff(xi[x](x, t, u), t), u), diff(diff(xi[x](x, t, u), u), u), diff(xi[t](x, t, u), u), diff(xi[t](x, t, u), x), diff(xi[x](x, t, u), t), diff(xi[x](x, t, u), u)}

(5)

for EQ in sort([op(DetSys)], length) do EQ = 0 end do

diff(xi[t](x, t, u), u) = 0

 

diff(xi[t](x, t, u), x) = 0

 

diff(xi[x](x, t, u), t) = 0

 

diff(xi[x](x, t, u), u) = 0

 

diff(diff(xi[t](x, t, u), u), u) = 0

 

diff(diff(xi[t](x, t, u), u), x) = 0

 

diff(diff(xi[t](x, t, u), x), x) = 0

 

diff(diff(xi[x](x, t, u), t), t) = 0

 

diff(diff(xi[x](x, t, u), t), u) = 0

 

diff(diff(xi[x](x, t, u), u), u) = 0

 

diff(diff(diff(xi[t](x, t, u), u), u), u) = 0

 

diff(diff(diff(xi[t](x, t, u), u), u), x) = 0

 

diff(diff(diff(xi[t](x, t, u), u), x), x) = 0

 

diff(diff(diff(xi[x](x, t, u), t), t), u) = 0

 

diff(diff(diff(xi[x](x, t, u), t), u), u) = 0

 

diff(diff(diff(xi[x](x, t, u), u), u), u) = 0

 

diff(diff(diff(diff(xi[t](x, t, u), u), u), u), u) = 0

 

diff(diff(diff(diff(xi[t](x, t, u), u), u), u), x) = 0

 

diff(diff(diff(diff(xi[x](x, t, u), t), u), u), u) = 0

 

diff(diff(diff(diff(xi[x](x, t, u), u), u), u), u) = 0

 

diff(diff(xi[t](x, t, u), u), u)-(diff(diff(diff(diff(xi[t](x, t, u), u), u), x), x))*delta = 0

 

4*(diff(diff(xi[x](x, t, u), t), x))-2*(diff(diff(eta[u](x, t, u), t), u))+diff(diff(xi[t](x, t, u), t), t) = 0

 

2*(diff(diff(xi[x](x, t, u), u), x))+2*(diff(diff(xi[t](x, t, u), t), u))-(diff(diff(eta[u](x, t, u), u), u)) = 0

 

diff(diff(xi[x](x, t, u), x), x)-2*(diff(diff(eta[u](x, t, u), u), x))+4*(diff(diff(xi[t](x, t, u), t), x)) = 0

 

2*(diff(diff(diff(xi[x](x, t, u), u), u), x))+2*(diff(diff(diff(xi[t](x, t, u), t), u), u))-(diff(diff(diff(eta[u](x, t, u), u), u), u)) = 0

 

-2*(diff(xi[x](x, t, u), x))+(diff(diff(diff(eta[u](x, t, u), u), x), x))*delta-2*(diff(diff(diff(xi[t](x, t, u), t), x), x))*delta = 0

 

(diff(diff(eta[u](x, t, u), x), x))*(diff(f(u), u))+(diff(diff(diff(diff(eta[u](x, t, u), t), t), x), x))*delta-(diff(diff(eta[u](x, t, u), t), t)) = 0

 

2*(diff(diff(diff(diff(xi[x](x, t, u), u), u), u), x))+2*(diff(diff(diff(diff(xi[t](x, t, u), t), u), u), u))-(diff(diff(diff(diff(eta[u](x, t, u), u), u), u), u)) = 0

 

-(diff(diff(xi[x](x, t, u), u), u))*(diff(f(u), u))-(diff(diff(diff(diff(xi[x](x, t, u), t), t), u), u))*delta+(diff(diff(f(u), u), u))*(diff(xi[x](x, t, u), u)) = 0

 

-(diff(diff(diff(xi[x](x, t, u), u), x), x))*delta-4*(diff(diff(diff(xi[t](x, t, u), t), u), x))*delta+2*(diff(diff(diff(eta[u](x, t, u), u), u), x))*delta-2*(diff(xi[x](x, t, u), u)) = 0

 

2*(diff(xi[x](x, t, u), u))-8*(diff(diff(diff(xi[t](x, t, u), t), u), x))*delta+4*(diff(diff(diff(eta[u](x, t, u), u), u), x))*delta-2*(diff(diff(diff(xi[x](x, t, u), u), x), x))*delta = 0

 

2*(diff(diff(xi[t](x, t, u), t), u))-(diff(diff(eta[u](x, t, u), u), u))+(diff(diff(diff(diff(eta[u](x, t, u), u), u), x), x))*delta-2*(diff(diff(diff(diff(xi[t](x, t, u), t), u), x), x))*delta = 0

 

(diff(diff(f(u), u), u))*eta[u](x, t, u)+(diff(diff(diff(eta[u](x, t, u), t), t), u))*delta-2*(diff(diff(diff(xi[x](x, t, u), t), t), x))*delta+2*(diff(xi[t](x, t, u), t))*(diff(f(u), u)) = 0

 

-2*(diff(xi[t](x, t, u), u))*(diff(f(u), u))+4*delta*(diff(diff(diff(eta[u](x, t, u), t), u), u))-2*(diff(diff(diff(xi[t](x, t, u), t), t), u))*delta-8*(diff(diff(diff(xi[x](x, t, u), t), u), x))*delta = 0

 

2*(diff(xi[t](x, t, u), u))*(diff(f(u), u))+2*delta*(diff(diff(diff(eta[u](x, t, u), t), u), u))-(diff(diff(diff(xi[t](x, t, u), t), t), u))*delta-4*(diff(diff(diff(xi[x](x, t, u), t), u), x))*delta = 0

 

diff(diff(xi[x](x, t, u), u), u)-4*(diff(diff(diff(diff(xi[t](x, t, u), t), u), u), x))*delta+2*(diff(diff(diff(diff(eta[u](x, t, u), u), u), u), x))*delta-(diff(diff(diff(diff(xi[x](x, t, u), u), u), x), x))*delta = 0

 

-2*(diff(xi[t](x, t, u), x))*(diff(f(u), u))+2*(diff(xi[x](x, t, u), t))-2*(diff(diff(diff(xi[x](x, t, u), t), x), x))*delta+4*(diff(diff(diff(eta[u](x, t, u), t), u), x))*delta-2*(diff(diff(diff(xi[t](x, t, u), t), t), x))*delta = 0

 

-(diff(diff(xi[t](x, t, u), x), x))*(diff(f(u), u))+diff(diff(xi[t](x, t, u), t), t)-2*(diff(diff(eta[u](x, t, u), t), u))+2*(diff(diff(diff(diff(eta[u](x, t, u), t), u), x), x))*delta-(diff(diff(diff(diff(xi[t](x, t, u), t), t), x), x))*delta = 0

 

-(diff(diff(xi[t](x, t, u), u), u))*(diff(f(u), u))-4*(diff(diff(diff(diff(xi[x](x, t, u), t), u), u), x))*delta-(diff(diff(diff(diff(xi[t](x, t, u), t), t), u), u))*delta+(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), u))+2*(diff(diff(diff(diff(eta[u](x, t, u), t), u), u), u))*delta = 0

 

-(diff(diff(xi[x](x, t, u), x), x))*(diff(f(u), u))+2*(diff(diff(eta[u](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), x))+diff(diff(xi[x](x, t, u), t), t)-delta*(diff(diff(diff(diff(xi[x](x, t, u), t), t), x), x))+2*delta*(diff(diff(diff(diff(eta[u](x, t, u), t), t), u), x)) = 0

 

2*(diff(diff(xi[x](x, t, u), t), u))-2*(diff(diff(xi[t](x, t, u), u), x))*(diff(f(u), u))-2*(diff(xi[t](x, t, u), x))*(diff(diff(f(u), u), u))+4*(diff(diff(diff(diff(eta[u](x, t, u), t), u), u), x))*delta-2*(diff(diff(diff(diff(xi[t](x, t, u), t), t), u), x))*delta-2*(diff(diff(diff(diff(xi[x](x, t, u), t), u), x), x))*delta = 0

 

(diff(diff(diff(diff(eta[u](x, t, u), t), t), u), u))*delta-2*(diff(diff(diff(diff(xi[x](x, t, u), t), t), u), x))*delta+(diff(diff(diff(f(u), u), u), u))*eta[u](x, t, u)+(diff(diff(eta[u](x, t, u), u), u))*(diff(f(u), u))-2*(diff(diff(xi[x](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), t)+(1/2)*(diff(eta[u](x, t, u), u))) = 0

(6)

DetSys1 := dsubs(diff(xi[t](x, t, u), u) = 0, diff(xi[t](x, t, u), x) = 0, diff(xi[x](x, t, u), t) = 0, diff(xi[x](x, t, u), u) = 0, diff(eta[u](x, t, u), u, u) = 0, diff(eta[u](x, t, u), x, u, t) = 0, DetSys)

{0, diff(diff(xi[t](x, t, u), t), t)-2*(diff(diff(eta[u](x, t, u), t), u)), diff(diff(xi[x](x, t, u), x), x)-2*(diff(diff(eta[u](x, t, u), u), x)), -2*(diff(xi[x](x, t, u), x))+(diff(diff(diff(eta[u](x, t, u), u), x), x))*delta, (diff(diff(diff(f(u), u), u), u))*eta[u](x, t, u)+2*(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), t))+(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), u)), (diff(diff(f(u), u), u))*eta[u](x, t, u)+(diff(diff(diff(eta[u](x, t, u), t), t), u))*delta+2*(diff(xi[t](x, t, u), t))*(diff(f(u), u)), (diff(diff(eta[u](x, t, u), x), x))*(diff(f(u), u))+(diff(diff(diff(diff(eta[u](x, t, u), t), t), x), x))*delta-(diff(diff(eta[u](x, t, u), t), t)), -(diff(diff(xi[x](x, t, u), x), x))*(diff(f(u), u))+2*(diff(diff(eta[u](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), x))}

(7)

for EQ in sort([op(DetSys1)], length) do EQ = 0 end do

0 = 0

 

diff(diff(xi[t](x, t, u), t), t)-2*(diff(diff(eta[u](x, t, u), t), u)) = 0

 

diff(diff(xi[x](x, t, u), x), x)-2*(diff(diff(eta[u](x, t, u), u), x)) = 0

 

-2*(diff(xi[x](x, t, u), x))+(diff(diff(diff(eta[u](x, t, u), u), x), x))*delta = 0

 

(diff(diff(f(u), u), u))*eta[u](x, t, u)+(diff(diff(diff(eta[u](x, t, u), t), t), u))*delta+2*(diff(xi[t](x, t, u), t))*(diff(f(u), u)) = 0

 

(diff(diff(eta[u](x, t, u), x), x))*(diff(f(u), u))+(diff(diff(diff(diff(eta[u](x, t, u), t), t), x), x))*delta-(diff(diff(eta[u](x, t, u), t), t)) = 0

 

(diff(diff(diff(f(u), u), u), u))*eta[u](x, t, u)+2*(diff(diff(f(u), u), u))*(diff(xi[t](x, t, u), t))+(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), u)) = 0

 

-(diff(diff(xi[x](x, t, u), x), x))*(diff(f(u), u))+2*(diff(diff(eta[u](x, t, u), u), x))*(diff(f(u), u))+2*(diff(diff(f(u), u), u))*(diff(eta[u](x, t, u), x)) = 0

(8)

The third equation in (8) can simplify last equation. This will give us eta[u][x] = 0as f[u, u] is non zero.

NULL


Download [1116]_Symmetries_Determination.mw[1116]_Group_classification_and_exact_solutions_of_generalized_modified_Boussinesq_equation.pdf

Regards

Still a little unclear what this error means tho

-f(X)/(X*(ln(X)-Psi(1-f(X))-Psi(f(X)))*GAMMA(1-m))+X*(ln(X)-Psi(1-f(X))-Psi(f(X)))/(f(X)*GAMMA(1-m)) = 0

 

Download dispatchTOshillCORE.mw

yep the errors recieved using some packages are very very specific for maple, for example, the one i got today using the ODE package was profoundly helpful:

 

Error, (in ODEtools/info) unable to handle derivatives as {diff(1/(ln(X)-Psi(1-f(X))-Psi(f(X))), [`$`(X, n-k[1]-k[2])]), diff(1/f(X), [`$`(X, n-k[1]-k[2])]), diff(Psi(1-f(X)), [`$`(X, k[2])]), diff(Psi(f(X)), [`$`(X, k[2])]), diff(f(X), [`$`(X, k[1])])} while solving w.r.t f(X)

im refering to the reason why a maple andriod application hasnt shown up or at least one of the big ones (preferably a java based on since thats the only thing i know for making any apps fluently) but yep cannot be the only one who has felt that need to get out of the house but wants to keep mathing when there is nothing to do which is pretty much always for me anyway

most effective built in operator code award goes to ppl that wrote the code for the union and intercect set operations for maple. Very important simple example below of  one of its applications.

 

When i work with algorithms, probably one of my most primary ports of enquiry (figuratively jeez skynet)  is to set up and if statement triggered to terminate the loop once the operations performed for any further cycles is INDEMPOTENT. this doesnt always mean your output is convergent in every case but it allows you to minimize the amount of time the cpu needs to collect data( ie the point at which it would produce that same set as it did in the last most loop)

 

 

Y := proc (X) local N, S1, `&Sopf;`; if X <> `union`(X, S1[N]) then N := (rand(1 .. NrANGE))(); S1[N] := {K[1](4+N), K[1](5+N), K[1](6+N), K[1](7+N), K[1](8+N), K[1](9+N), K[1](10+N), K[1](11+N), K[1](12+N), K[1](13+N), K[1](14+N), K[1](15+N)}; `&Sopf;` := `union`(X, S1[N]) else  end if end proc

proc (X) local N, S1, `&Sopf;`; if X <> `union`(X, S1[N]) then N := (rand(1 .. NrANGE))(); S1[N] := {K[1](4+N), K[1](5+N), K[1](6+N), K[1](7+N), K[1](8+N), K[1](9+N), K[1](10+N), K[1](11+N), K[1](12+N), K[1](13+N), K[1](14+N), K[1](15+N)}; `&Sopf;` := `union`(X, S1[N]) else  end if end proc

(1)

``

 

Download idempotency.mwidempotency.mw

 

 

How can one find out when a Maple command or package became part of Maple? i.e. which Maple version first had this command or package?

For example, I'd like to know when applyrule https://www.maplesoft.com/support/help/Maple/view.aspx?path=applyrule was introduced. But this applies really to any command I see.

In Mathematica, this is easy to find out, since it is documented in the help page for the command, at the botton of each page when the command was added. Is there a command or a web page that shows this type of information about Maple commands and packages?

 

I have some data

> X:=[291.3301386,349.9410125,420.7945287,490.0836935,558.1365585,623.6824877,688.6344191,752.1359797,814.1871695,874.7879884,933.8452525,991.0023402,1047.88822,1102.687556,1156.036521,1207.200419]:

>
> Y:=[0.008923638,0.010336322,0.012031554,0.013676089,0.01527851,0.016809936,0.018315901,0.019777093,0.021194266,0.022568158,0.023897399,0.025174796,0.026437267,0.027645069,0.02881302,0.029925828]:

to which I am trying to fit a function

U:=(m,d,Theta,T)-> (((3*(6.62607e-34)^2*T)/(4*Pi^2*m*1.36085e-23*Theta^2))*((T/Theta)*int(x/(exp(x)-1),x=0..Theta/T) + (Theta/(4*T))))/1e-10^2 +d^2;

where Theta≈200 and d≈0.035. T, Theta, d, m > 0

 When I try and solve

> NonlinearFit(U(0.15036/6.022e23,d,Theta,T),X,Y,T,initialvalues=[Theta=200, d=0.035]);

I get the error "Error, (in Statistics:-NonlinearFit) complex value encountered"

 

I can plot the function with Theta=200 and d=0.035, I get approximately the right curve and no errors about complex values.

 

How can I solve for Theta and d without encountering this error?

Hello,

Lets say I have some expression F that is a function of n and N like, F=n+N-1 and I want to express that in terms of x, where x=n/N. How would I do this in maple? Thanks in advance. 

Hi, I am trying to plot a parabola in spherical coordinates using the command spacecurve, using 

 

>with(plots);

>spacecurve([cot(phi)/sin(phi), 1.61, phi], phi = -3.14 .. 3.14, numpoints = 3000, axes = normal, coords = spherical, color = red, linestyle = dash, axes = normal)

 

(I know it is easier in Cartesian coords, but I am doing this as a first version of a more complicated curve, given by the sol. of a system of differential equations). 

Maple plots the parabola correctly but it joins the initial and the final points of the plot with a straight line, yielding something that looks like a U with a bar on top (I cannot upload the image). Is there any way to get rid of the line?

 

First 1059 1060 1061 1062 1063 1064 1065 Last Page 1061 of 2224