MaplePrimes Questions

> restart; with(plottools);

> U := u(x, t);


> pde := (diff(U, `$`(x, 2)))/(2*x)^2 = (1/1250)*(diff(U, `$`(x, 2)))+(1/9)*sin(0.10e-1*Pi*t)*exp(0.10e-1*Pi*t^2);

ic := u(x, 0) = x^2, (D[2](u))(x, 0) = 1;

bc := (D[1](u))(0, t) = 0, u(1, t) = 1;


> S := pdsolve(pde, {bc, ic}, numeric);
Error, (in pdsolve/numeric/par_hyp) Incorrect number of initial conditions, expected 0, got 2
       ...

ode := diff(x(t), t, t) = 1^2*(cosh(x(t))-1)/cosh(x(t))

ics := x(0) = 2, (D(x))(0) = 0

xs := dsolve({ics, ode})

 

plot(xs, t = 0 .. 3)

 

why do i get this error?

Error, invalid input: plot expects its 1st argument, p, to be of type {set, array, list, rtable, algebraic, procedure, And(`module`, appliable)}, but received x(t) = RootOf(Int(1/(-4*arctan(exp(_a))+4*arctan(exp(2))-4+2*_a)^(1/2), _a = _Z .. 2)+t)

i want to solve these equations to find the 18 coefficents,how should i solve them to solve it in minimum time possible?

eq(1):= -2144447222.22*a(7)-1531751031.75*a(8)-1148816190.48*a(9)-584858207.070*a(12)-5003703703.71*a(18)-714823743.386*a(11)-893526455.026*a(10)-5361111111.11*a(17)-5744047619.05*a(16)-6433333333.35*a(13)-6433333333.34*a(14)-6126984126.99*a(15);

eq(2):=-1531747698.41*a(7)-1148812857.14*a(8)-4288888888.90*a(13)-4595238095.25*a(14)-4595238095.24*a(15...

Hello,

I`m having trouble using dsolve in a loop in order to evaluate a differential equation for different constants/initial values. I`ve imported the data for the constants from excel using the import function and have defined them, and then created the differential equation which returned a DE with array parts. I created a sequence called sys_ode ad sys_init_val so that I could easily call the DE`s individually. I now wish to solve the DE at each of these points...

if you have four teams a b c and d playing in a tournament and teams a and d have not played each other but all other teams have played .. typing this from my phone but its not too friendly ...  soccer scores how would you determine who would win and by what score

How to implement this in maple, can be developed graphically?

Hi all,

I have a question concerning a 3d theory to calculate forces, stresses, deflections, etc. I am calculating a simply supported beam (a cylindrical pile). The theory is build up cylindrical coordinates; x and theta.

solving the theory gives me deflection in 3 directions; ur (radial), ux (length), utheta (along the surface). To plot a the deflection of the pile I convert all to cartesian coordinates:

> xcart := unapply(x+ux(x, theta), [x, theta])

Hi all,

I've just started learning Maple. I can't figure it out how to transform my problem into maple syntax.

My problem includes solving a simple algebraic equation, that is,

Y[k+1] = -10*Y[k]

I would like to solve this equation for different values of k, for example, k = 0,1,2,3.

and express my results in terms of Y[0], i.e,.

Y[1] = -10*Y[0];

Y[2] = -10*Y[1] = 100*Y[0]

Y[3] = -1000*Y[0]

I don't know...

hello support,brand new to maple. i am trying to plot the solution for the functions cosx=x. if i set these both like so: y = cosx and y=x.orf:=cos(x);f:=x;it will plot the cosine function.how do i plot these in maple 17, i tried using the graphing calculator also that comes with maple 17 but that for some reason will not allow me to type an equal sign , i looked over the web for a solution.so i pose the question why the graphing calculator will not accept the "=" sign???thanks,noobie craig

hi guys , i want to solve a system of equations but maple gives me "warning, solutions may have been lost" !

what can i do ?

 

thanks

 

z0.mw

How to find the integral

1/(4*Pi)*int((cos(t)-sin(s)-cos(t)*sin(s))/(3+2*(cos(t) - sin(s) - cos(t)*sin(s)))^(3/2),[t=0..2*Pi,s=0..2*Pi])?

Its geometric interpretation suggests the answer is -1. Maple finds the inner integrals both over t and s, but Maple cannot directly find the iterated integrals.

Hi,

 

I'm trying to solve a pretty complex system of equations (a 3rd order DAE with 61 equations) using the MEBDFI numeric solver but I'm always getting the following error.

 

error in dsolve/dae/numeric/sm_intersect. numeric exception, division by zero

 

I have tried to find out what the sm_interesect command is but I haven't had luck neither in Internet nor in Maple help. I have looked for similar posts...

https://skydrive.live.com/redir?resid=E0ED7271C68BE47C!358

1/x!*subs(z=0,Diff(g(z)^x, x$(x-1))) = n*x

1/x!*subs(z=0,Diff(g(z)^x, z$(x-1))) = n*x

how to solve for g(z) ?

as i do not know what do this respect to which variable from a book. so i capture this diagram.

hope that can solve it

L := Summation(Summation(g(m, n)-g(m-1, n)-g(m, n-1), m = 1 .. 3), n = 1 .. 3);

M1 := subs(m=1, g(m, n)-g(m-1, n)-g(m, n-1))=0;

rsolve(rhs(M1),g,'genfunc'(1,b));

Error, invalid input: rsolve uses a 2nd argument, Fcns, which is missing

Reference:

Matrix([[0, g(0,1), g(0,2)],[g(1,0), g(1,1), 0],[g(2,0), 0, g(2,2)]]);

Hi all,

I am looking for a package to calculate the power mean (or Hölder mean) defined like

Mean_p(x_n)=(1/N Sum(x_n^p,n=1..N))^(1/p)

in a hopefully obvious notation. I can obviously implement this definition directly in Maple, but there are subtleties (like the limit of p=0) which maybe a mature implementation already covers (?).

I am still mostly on Maple 15 which does not have such a Mean. If 16 or 17 have it I would not becessarily know.

First 1576 1577 1578 1579 1580 1581 1582 Last Page 1578 of 2427