MaplePrimes Questions

some ODEs can be solved by using different methods,how does maple chosse the methods?

integrating fator problems

question2:what's the error I made in solving the following ODE step by step? the second method and answer is right.

question3:Can Maple automatically add multiplication sign instead of spaces?

convert to ln(e) to 1

maybe I've asked some similar questions several days ago,

In mathematica when I type:

Manipulate[Plot[Sin[c*x], {x, 0, 10}], {c, 1, 5}]

I get a 2D plot of sin(c*x) for x between 0 and 10, with c =1.

Then with the mouse I can drag a bar which will show what happens when c changes between 1 and 5. I can drag that bar to the particular c value for which the plot looks the way I want.

 

In Sage this can be done using the @interact command.

 

Is there an analog for this sort of thing in Maple ??

 

Thanks a lot!

We can pull values of a list

a:=[2,5,g,f,5,h];
 

a[3];
                g

a[2];
                5

etc... but it doesn't work in reverse.  You can't place a value in a certain position in a list

Hello,

does the verify command not work for trig functions ??

verify(sin(x)/cos(x),tan(x),'equal')

gives 'FAIL' rather than 'true'

 

Is there a function for checking whether or not the LHS and RHS of my trig identity match ??

 

 

I'm running a relatively complicated maple file on my mac computer and it's give me the following error message: Kernel connection has been lost. The Kernel returned the following error message: Execution stopped: Memory allocation failed. Please see? alloc for more details. you should sace this worksheet and restart Maple kernel. Firewalls have been known to cause problems with kernel connections in Maple. Please ensure that any firewall software is configured to allow Maple to creat connections to the kernel.

I am trying to create a 3d plot of a simple function which evenly distributes a force around the end of a pipe as a function of it's angle.  The equation is

fy :=FORCE/(2*Pi*R)*COS(PHI), PHI=0..2*Pi, R = CONSTANT

I would like to create a wire-frame, shaded, cylindrical plot showing the variation in force as a function of the angle phi.

Thank you in advance for your assistance.

Hi everyone. Is there any way to keep auto-rotation of three-dimensional graphics? If so, how to do it for complex graphics created by the function plots[display](G1,G2,..,Gn)?

I want to find a tagent lines to the below contourlines for a function  U := Q[a]^alpha*Q[b]^(1-alpha); given any

value of Q[a] and Q[b]. I know the slope of such a tagent lines but I dont know the intercept. How can I derive such an equation ?

I would like to customize arrows of motion in a phase diagram. The system is the following, with critical point (1,1):

xdot := diff(x(t),t) = x(t)-y(t):
ydot := diff(y(t),t) = y(t)*(1-x(t)):

with phase diagram (the black line is the stable manifold of the system):

What keyboard configuration must have the Win XP to use the keyboard shortcut "Shortcut Keys" and not the key combination "International" to introduce 2-D math expressions. I refer to the help "2-D Math Shortcut Keys and Hints".
The configuration I have enabled is:
Input Device Language: Spanish.
Keyboard layout / IME: United States International.
Gracias
HerClau

 

when the expression is short, the 'collect' can works,but the expression is longer,it is different.for example: gg1 := collect(expression, z)

Hello:)

Im trying now to make a program that does the same thing as BackwardSubstitutes in maple
I tried 2 things


I tried combining the matrix and the vector in the procedure but its not working

substitutioninverse := proc (matrice, vecteur)
local n, m, j, i, resultat, V, matrice2, a;
matrice2 := [matrice, vecteur];
m, n := Dimension(matrice2);
 V := Vector(m);
for i to m do
 resultat := 0;
for j from n to 1 do

Hello, In Mathematica, one can plot a region where an inequality is true by using the RegionPlot[] function. E.g. if the region (x^2 + y^2
First 2061 2062 2063 2064 2065 2066 2067 Last Page 2063 of 2434