MaplePrimes Questions

Hello,

I would like to plot an non linear oscillator.

The equations are the following:

r:=sqrt((x(t)/a)^2+(z(t)/b)^2);
eqx:=diff(x(t),t)=alpha*(1-r^2)*x+wa/b*z(t);
eqz:=diff(z(t),t)=beta*(1-r^2)*y+wb/a*x(t);
EqSys:=[eqx,eqz];

The constants are the following :

alpha:=1:
beta:=1:
a=0.4:
b=0.2:
w=1:

I didn't manage with Deplots. May you help me to plot this oscillator?

Thank a lot for your help and ideas

I'm trying to solve the differential equation.

Eq := diff(y(x), x, x) = -(x^2+1)*y(x)+K;

dsolve({Eq, y(-1) = 0, y(1) = 0}, y(x));

But this not work very well.

Best Regards,

 

I am using Maple 15, and before that Maple 8 and Maple 13. While using the versions 13 and 15, 

I come across with this problem; I cannot copy an output and use it as input. In Maple 8, I was able to do this but in 

these improved versions, it seems that it is not possible. Is there a way to solve this problem? I saw some answers about this

problem suggesting to change launch.ini file. But I could not apply this suggestion, since it is not permitted by the system. 

pde1 := 4*x*(diff(u(x, y), x))-2.*u(x, y)-y*(diff(u(x, y), y))+diff(v(x, y), y) = 0; pde2 := 4.*x.u(x, y).(diff(u(x, y), x))+(v(x, y)-y.u(x, y)).(diff(u(x, y), y))+2.*u(x, y)^2 = diff(u(x, y), `$`(y, 2))+theta(x, y); pde3 := 8.*u(x, y).theta(x, y)+4.*x.u(x, y).(diff(theta(x, y), x))+(v(x, y)+y.u(x, y)).(diff(theta(x, y), y)) = 1/100.(diff(theta(x, y), `$`(y, 2))); bc1 := u(x, 0) = 0, v(x, 0) = 0, theta(x, 0) = 1; bc2 := u(0, y) = 0, v(0, y) = 0, theta(0, y) = 0; bc3 := u(x, 20) = 0, theta(x, 20) = 0hello dear
how can i solve this three couplde pde?please help me

The word command for square root is sqrt.  What is the word command for square?  How to square all the values in a list?

 

Hi everyone, I'd like to know if it's possible to use the startup code editor as a general editor when writing large programs. It nicely recognizes keywords such as "if" and "proc" and you can indent code using TAB. However I'm not sure whether you can/should use it as a general editor to run code. I've read something about user-profiles related to the startup code but I just don't understand how it works.

I related two Text Area Components by using the codes "Do(%text_beta_radian=evalf(%text_beta_degress/180*Pi))".

I wanna know what codes can refresh the display of the text area component with name%text_beta_radian

after I change the input value of that%text_beta_degress?

Hey, I need to answer this question, not sure where to start..Any help/tips would be much appreciated....

 

Bob wants to explore the effect of changes in a, b and c on the function h, where h(x, y) = ∂ 2 /∂x∂y (ay sin(bx + c)). How should Bob do this so that if he redefines the variables a, b, or c later in the Maple session, subsequently computed function values h(x) use the new values of a, b, c?

that can run without maple using my own maple code?

And how about Maplesim? I heard that Maplesim can generate executable file

Hi all,

I'm new to Maple. Probably this is trivial, but how can I solve an inequality as e.g., the following

-2 <=  a/x <= 0

knowing that x > 0?

Thanks

S.

Dear hope you will fine. I am try to make a program of square free factorization over a finite field whose alogrithm is below:

Algorithm: SFF (Square-Free Factorization)
  Input: A monic polynomial f in Fq[x]
Output: Square-free factorization of f

i←1; R ← 1; gf′;
  if g ≠ 0 then {
     cgcd(f, g);
     wf/c;
     while w ≠ 1 do {
           ygcd(w, c); zw/y;
           RR·zi; i ← i+1; 
           wy; cc/y }
     if c ≠ 1 then {
           cc1/p;
           Output(R·SFF(c)p) }
     else  Output(R)
  else {
           ff1/p;
           Output(SFF(f)p) }
  end.

The attached file my try to make this, please find and help me to complete this. I am waiting your kind response.

Help.mw

With my best regards and sincerely.

 

I want convert the integro differential equation to volterra integral equation by integration both side of integro-diff then subs in  initial condition 

intE := diff(u(x), x) = 1+x-x^2+int((x-t)*u(t), t = 0 .. x), u(0) = 3

How do it?

I need to replace the "MISSING" in MultiDiff := proc(f,n,x) ---MISSING--- end proc; so that MultiDiff(f,n,x) evaluates as f (n) (x) if f is a suitably differentiable function, n is a positive integer, and x is an undefined variable..F(n) being an nth derivitave..Not sure where to start..Any help appreciated

I was hoping to browse color results using a slider and text box. I see the "use DocumentTools" command, but was not able to get "use ColorTools" to allow execution of the "Color()" function. 

My slider "n" has the following code;

use DocumentTools in

Do(%outn=%n);
Do(%outrgb=my_rgb(%n));
use ColorTools in
Do(%outcolor=color_my_rgb(%n));
end use;
end use;

First 1203 1204 1205 1206 1207 1208 1209 Last Page 1205 of 2428