Maple 15 Questions and Posts

These are Posts and Questions associated with the product, Maple 15

If I have a MapleSim file that successfully runs and I want to manipulate the data and equations in Maple, how would I do that? I know how to link a MapleSim file to a Maple document, and how to pull out the system of reduced DAE's, ODE's, parameters, etc. My question is whether or not there's a simple way to have Maple solve those equations and be able to display the same type of data (graphs, export the numerical solution to the system to an Excel file, etc.) that...

hello all,

I work on an equation that represents the profit on a given horizon (L), according to three parameters (P, W, theta), and i want to find the triplet that minimizes this function. I even try to make a loop on the three parameter to find the minimum, but Maple does not give me a numerical result. Below is the function that I want to minimize (Prof(P,W,theta)):

restart;

beta:=1.2;

L:=2;

Q := t -> 50000/(2+23*exp(-120000*(W+1/10)^(1/10)*t/P^2)); ...

Hi dear friends

 

I want to solve this equation with the foloowing boundary conditions with maple. please help me to solve it

 

The nonlinear equation is:

 F' ' ' +27*F*F' '=0

And boundary conditions are:

 F' (6)=0.148

 F' (-6)=0

 F (-6)=0

 

thanks for your attention in advance

Hi dear friends

 

I want to solve this equation with the foloowing boyndary conditions with maple. please help me to solve it

 

The nonlinear equation is:

 F' ' ' +27*F*F' '=0

And boundary conditions are:

 F' (infinity)=1

 F' (-infinity)=0

 F (-infinity)=0

 

thanks for your attention in advance

 

 

 

Mapleprimes.mwHi all,

I am trying to use Matrix values in the equation,  I am trying to pick each value from matrix C1 and C2 add them and use them in equation to find B2x.  I am attaching my file for your kind consideration.

Looking forward to kind replies

Regards

A.Q

I am trying to run Maple using a shell script that run from the terminal. 
I used the command: "maple -q -w0" but it does not work and I get the message "maple: Command not found."

I think Maple is not known to the shell that i am running. What should I do to make it work?  

I encountered a problem with a simple subs in Maple 15.01:

Q:=1/(a*l);

subs(a*l=t,Q);

This fails to perform the substitution and gives 1/(a*l) instead of 1/t.

However, it seems to work in certain form, for example:

Q:=exp(a*l);

subs(a*l=t,Q);

produces exp(t) correctly.

Furthermore,

Q:=1/(a*l)*exp(a*l);

subs(a*l=t,Q);

gives exp(t)/(a*l). Strangely, the substitution in the exponential is correct...

Hi,

I'm trying to use powsolve to give me the power series of a differential equation. It's been working wonderfully, afaik, but once I put in exp(x) it refuses to run. Here's my code:

 >with(powseries);

>a := powsolve(diff(y(x), x, x)+y*exp(x) = 0, y(0) = 1, (D(y))(0) = 2); tpsform(a, x)

 

and the error I'm getting:

Error, (in powseries:-powsolve) final value in for loop must be numeric or character
> restart; with(DEtools);
> ED1 := diff(y(x), x) = sen(y)+cos(x);
print(`output redirected...`); # input placeholder
d
--- y(x) = sen(y) + cos(x)
dx
> dfieldplot(ED1, y(x), x = 0, y = 0, title = `Ejemplo 1`, color = sen(y)+cos(x), arrows = almit, title = figura*(diff(1, x)));
%;
Error, (in DEtools/dfieldplot) invalid range for independent variable

Hello,

i want to solve the following for q[b], theta is a symbolic coefficient. When I use the solve command it produces a RootOf that i cannot handle by using either allvalues or evalf. I can't use fsolve since there is theta 

Question is very simple:

if I write square root as  f^(1/2) , then the compile function gives a error: 

Error, (in Print) rational numbers and arithmetic are not yet supported

if I write it as sqrt(f) then compile works.

But Maple seems to internally always convert sqrt(f) to f^(1/2). So, I am constantly getting the above error!

Is there a workaround? I have an impression of very poorly written Compile function....

So I have this array of plots with log vertical axes. I generate it with a seq(logplot(.....)) construct and then display the whole sequence. Works like a charm...except all plots have linear scale! So I try plot(...,axis[2]=[mode=log]): works fine for direct plot but not in display. I try to add the log axis to display, like display(...axis[2]=[mode=log]): same result, linear axes.

Is plots:-display unable to produce a log plot? I can obviously plot the log(data),...

Hi, I have a set of data (see here:I-V_data.xls), voltage and current, which is measured from Keithley semiconductor analyzer, I want to load into Maple(version 15) and using formula as follow Two diode equationto fitting the curve, where I (i.e. current) appear at both right-hand-side and left-hand-side, V (i.e. voltage...

Hello everyone. I'm a french student and I make a study on the double pendulum. I have written all of the equations into maple (6 equation for solid movement and 2 for point movement). We will work with 2 equations.

So i got my 2 differential equations (non linear) and I want to odeplot them and after plot the 2 solutions with plot.

Unfortunatly, after reading some post here and solutions, my problem still exist. When I odeplot my solutions : i have a warning message (so also when I plot) :

I am trying to solve the following bvp:

with*plots

Eq[1] := diff(f(eta), `$`(eta, 3))+3*f(eta)*(diff(f(eta), `$`(eta, 2)))-2*(diff(f(eta), eta))^2+theta(eta)

Eq[2] := diff(theta(eta), `$`(eta, 2))+3*Pr*f(eta)*(diff(theta(eta), eta))

Eq[3] := diff(phi(eta), `$`(eta, 2))+3*Sc*f(eta)*(diff(phi(eta), eta))-kappa*Sc*(phi(eta)*(diff(theta(eta), `$`(eta, 2)))+(diff(theta(eta), eta))*(diff(phi(eta), eta)))

BCs := [f(0), (D(f))(0), ((D@@2)(f)...

First 25 26 27 28 29 30 31 Last Page 27 of 47