Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

may i know functions for which the computational cost of evaluating their first derivative is higher than the function it self.

I want to plot the following equation

theta0 = 10.00000000*(2.718281828-exp(1.000000000*S))/exp(1.000000000*S)

I want that theta0 should be my x-axis in the plot and S should be the y-axis in the plot.

Can any one help me out?

Thx

Hi

 

I've to solve a EDP with boundary conditions with Maple :

EDP := [diff(u(x,t),t) = -0.35 diff(u(x,t),x)];
IBC := {u(x,0)=f(x), u(0,t)=u(10,t)};

(f is an function dirac of amplitude = 1. 0<x<10)

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:

First 1853 1854 1855 1856 1857 1858 1859 Last Page 1855 of 2219