Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Reconstruct an analytic function w(x,y)=u(x,y)+I v(x,y) from its real part u(x,y):

how to define the function in Maple.

I'm confused with the definition in Mma,look at this sample:

analyticReconstruct[v_, {x_, y_}, z_] :=
  2 I (v //. {x -> z/2, y -> z/(2 I)}) - I (v //. {x -> 0, y -> 0});

analyticReconstruct[{2 x y, E^x Sin[y]}]

{z^2, -1 + E^z}


 

 

There was some recent discussion about Maple's Standard GUI having two parsers. (See here, and its parent.)

I've been accumulating a list of some differences between the parsers of 2D Math and 1D Maple notation, for the same given pasted input.

In particular, I'm interested here in differences...

Hello,

I have a matrix of 2x2. the elements for example can be [x, x^2; 3x, 10x]. The determinant must be zero. Numerically, how do I construct a loop that finds me the solution of x?

 

Thank you.

 

> D := 5;
Error, attempting to assign to `D` which is protected
 

Dear Maple Users

I am still pretty new to Maple. I know it is possible to plot a set of x-values against a corresponding set of y-values, like:

> plot([[0,3], [1,7], [5,14], [6,17]])

but how is it done more conveniently? I mean, if I want to import data from another program and I have copied the data from two columns to the clipboard, how do I plot the first column against the second?

Regards, Erik V.

 

I would like to try the polynomial fit curve to the data points that I get below.  The data is for melting temperatures vs bond energy. 

> with (Statistics):
> Temperatures := <801, 2800, 1410, 3551, -39, 660, 1538, 3410, -189, -101, -78, 0>:
> BondEnergy :=  <3.3, 5.2, 4.7, 7.4, .7, 3.4, 4.2, 8.8, 0.08, .32, .36, .52>:
>
> BondEnergyFit := Fit (a+b*t+c*t^2+d*t^3, Temperatures, BondEnergy, t)

 

Is there a way to find out what packages (i.e. statistics, or calculus, etc.) that are in my Maple installation? I bought a student version of Maple, now I need to use Statistics (with (Statistics): ) but don't really know If I have Statistics package installed or not. Thanks

I have tried to programme a bubble sort procedure below and i'm a bit stuck and not sure where i've gone wrong. Many thanks.

 bubblesort:=proc(C)
local n,o,r,k,i:
n:=rtable_dims(C):
o:=rhs(n):
r:=lhs(n):
for i from r to o - 1 do
if C[i] > C[i+1] then
(C[i], C[i+1] ) := (C[i+1], C[i]);
else
(C[i], C[i+1] ) := (C[i], C[i+1] );
fi:
od:
return(C);
end proc:

 C:=rtable(1..6,random(1..50));
bubblesort(C);

C:=[44 5 38 37 3 15]
[5 38 37 3 15 44]

Hola,
How to ensure that the coefficients are displayed in a more understandable?

Hi,

Below, you will see a serie that I would like to obtain in Maple.  Any way I trie I am stick with Pi.  Any ideas?

Thanks in advance.

 

--------------------------------------
Mario Lemelin
messagerie : mario.lemelin@cgocable.ca
téléphone :  (819) 376-0987

I am trying to plot a two variable expression in single 2D plot but have been unsuccessful.

I already have an equation in two variables that is obtained through a lengthy process of calculations:

DEQ = A*D + B*Ne, where A and B are constants, and D and Ne are variables.

I can easily plot a 3D graph of this, but I'd also like to plot what are essentially slices of the 3D graph onto a 2D graph. Actually to plot several slices on a single 2D graph.

I have tried to do the following but have been unsuccessful:

Below is my attempt at a cocktail sort, there are two lines of code missing as i am unsure as what to put there. I think the rest is correct.

Please check and see if you can spot what i need to include.

How do I get a,b,c,d to the function a*b^x*c^y*d^z-x-2*y-3*z  get the minimum with {0<x<1,-1<y<1,-1<z<0}?
Thanks in advance !

Hi

I read a lot of guides, forums and etc, i've been trying to add/remove shiftenters and i've got always the same error. Every parenthesis is checked. Please tell me, where is the mistake?

First 1858 1859 1860 1861 1862 1863 1864 Last Page 1860 of 2224