Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

I'm looking for several challenging projects for a Calculus II course using Maple which I'll be teaching in Spring 2013.  By challenging I mean that the project will have several steps including both conceptual and computational aspects.  I'd also like them to be suitable for group work if possible.  I'd be willing to devote from 3-5 class periods for each of three or four different projects.  Our Calc I and Calc II are five hour...

Hello,

I'm trying to solve the effects (deflictions, tensions, etc) of a load on a timoshenko beam. It uses two partial diffential equations, wherein q is the load:

> PDE1 := kappa*G*A*(diff(y(x, t), x, x)-(diff(theta(x, t), x)))-rho*A*(diff(y(x, t), t, t))-q;

> PDE2 := E*J*(diff(theta(x, t), x, x))+kappa*G*A*(diff(y(x, t), x)-theta(x, t))-rho*J*(diff(theta(y, x), t, t));

The boundary conditions are that in the corners the moments (derative of theta...

This tutorial shows how to setup a dual-language project such as Maple/Java or Maple/C in Maple IDE. In the end of the article you can find some links for further reading.

Maple Connectivity

The integration of Maple projects with other Eclipse projects is designed for seamless development and building of your C, Fortran, or Java code for Maple using External Calling package.

Maple Project can be mixed with

Hi everyone i've tried to solve two coupled nonlinear ode but maple gives me these two errors can you help me with this?

 

ode1 := diff(f(x), x, x, x)+3*f(x)*(diff(f(x), x, x))-2*(diff(f(x), x))^2+g(x) = 0;
 ode2 := diff(g(x), x, x)+(3*10)*f(x)*(diff(g(x), x)) = 0;
 bcs1 := (D(f))(0) = 0, f(0) = 0, (D(f))(6) = 0;
 bcs2 := g(0) = 1, g(6) = 0;
 sys := {bcs1, bcs2, ode1, ode2};
 dsn := dsolve(sys, numeric);
 print(plots:-odeplot(dsn, [x, g(x)...

This is a wish list for the version of Maple after whatever immediate next version is being developed.

It's about three-quarters of a year since Maple 16 came out, and if Maple follows its recent history of annual releases then development of new features of the very next release after 16 would be quite well along, and possibly even nearing completion. But that could mean that this is a good time to discuss wish lists for the version after that -- the version two releases after 16.

Hey everyone. The last few days I work on a non-linear PDE. 
U*`∂`(F(s))/`∂`(x) = -k*sigma*cos(theta)*`∂`(F(s)*kro(s)*`∂`(J(s))/`∂`(x))/(`μo`*sqrt(k/phi)*`∂`(x));
with boundary conditions: when x=-∞: s=swi       and  
x=L : U*dF(s)+k*sigma*F(s)*kro(s)*`∂`(J(s))/(`μo`*sqrt(k/phi)*`∂`(x))
I need to plot...

with(LinearAlgebra);
CAb := <1, 1, 2;1, 2, 3;1, 3, 1>;
# Get the QR decomposition of CAb:
Q, R := QRDecomposition(CAb); R;

Error in R

Maple Matrix(3, 3, {(1, 1) = 1.7321, (1, 2) = 3.4642, (1, 3) = 3.4642, (2, 1) = 0., (2, 2) = 1.4142, (2, 3) = -.70710, (3, 1) = 0., (3, 2) = 0., (3, 3) = 1.2248})

MathCad Matrix(3, 3, {(1, 1) = 1.7321, (1, 2) = 3.4642, (1, 3) = 3.4642, (2, 1) = 0., (2, 2) = 1.4142, (2, 3) =...

I would like to pay attention to http://www.ams.org/samplings/feature-column/fc-2012-12, where a discrete analog of vector calculus on graphs is applied to rankings. In my opinion, it would be useful to implement that in the GraphTheory package.                           ...

Hello,

I am trying to add an if statement to maple code for example if U(tk) less or equal to 4 then 
the initial condition=0 else the initial condition=value .
 
I am getting this error:
Error, cannot determine if this expression is true or false: U(365)

restart;

 k := 0; B[1] := 0.001/365; B[2] :=0.002/365:

Hi, I'm working on fitting model. For some reason is taking way too long to evaluate it actually hasn't finished it at all. Im running on i7. Thanks for any help. this is my code: 

> X := Vector([0, 170, 0]);
              
> Y := Vector([0, 11, 56]);
               

Q(t) := -(36788*76)*(.28*K*p/(-p-exp(-r*t...

Ten more Clickable Calculus solutions have been added to the Teaching Concepts with Maple section of the Maplesoft web site. Solutions to problems include examples in algebra, differential and integral calculus, lines-and-planes in multivariate calculus, linear algebra, and vector calculus.

The algebra additions include an example illustrating how a

Hey all :)

restart; 
W:=(x,t)->(8*R/Pi^2*sum((1/(2*n-1))^2)*sin((2*n-1)*pi/2)*sin((2*n-1)*pi*x/2*L)*(cos(c*(2*n-1)*pi*t/2*L)),n=1..infinity);

L:=0.25;

T:=2500;

rho:=0.01;

R:=0.005;

c:=sqrt(T/rho);
evalf(W); (this just comes up with W)

I have tried...

Hi,

I'm having a little trouble displaying the desired solution when using what might otherwise be refered to as the 'symbolic toolbox' - I'm a matlab user..

The output from maple is great! so much cleaner than matlab in this instance. The problem I'm having however is displaying the solution of simple algebra pproblems

ex: I would like to verify my handcalculation of cramers rule.

Given

I am currently trying to integrate a long string of fractional sine and cos terms with a cos term on the denominator and other exponential multipliers, but all variables and coefficients are real (and I have put this assumption in Maple).

When I integrate them on Maple it is automatically simplifying the result using Euler's rule to give me a complex fraction with a complex numerator and denominator. This is not very helpful as I need to use the result in further calculation,...

Loading a customised package on my computer I can use all of its functions easily. But I am looking to find the maple code of the procedure that make this function works, I am sure there is a trick but I am struggling to find it. I researched online quite a bit without any success as the threads I found about making your own packages are too technical for me.
Would anyone know how to do that?

Thanks in advance.
P.K

First 1521 1522 1523 1524 1525 1526 1527 Last Page 1523 of 2224