MaplePrimes Questions

Does maple use the acml,

it is almost that in every version the Intel MKL is the latest

I wonder how do I show with Maple that for

p:=(x,a,b)->a*(a+x*b)^(x-1)*(exp(-(a+x*b)))/(x!);

the series

sum(p(x,a,b),x=0..infinity) assuming a>0,b<1,b>-1

converges to 1. I also tried

sum(a*(a+x*b)^(x-1)*(exp(-(a+x*b)))/(x!), x=m..infinity) assuming a>0,b<1,b>-1,a+m*b<=0

but all to no avail. For b=0, Maple shows the series converges and we have the Poisson distribution. For b in (-1,1), the (discrete) density...

I want to plot three cumulative normal distributions. I know the parameters mu and sigma from each function. If I give the commands 

f:=int(1/sqrt(2*Pi)/sigma*exp(-(x-mu)^2/2/sigma^2),x);             1
plot(subs({mu=0,sigma=1},(1)),x=-4..8);
 

I get a 2d-plot. But I want to illustrate, how functions can be moved in space. In the 2d-plot, the x-axis illustrates the values of the random variable and the y-axis illustrates...

I wrote some code involving chrem that broke in a recent version.

> y := Vector([0]):
> yp := Vector([1]):
> trace(chrem);
> chrem( [y, yp], [1,3] );
{--> enter chrem, args = [Vector(1, [...], datatype = anything), Vector(1, [...], 
datatype = anything)], [1, 3]
n := 2

v, m := [0], 1

v := 0

On a similar note but continuing a Roots discussion

Roots(2^(cos(x))-5)

produces the error    Warning, the expression has an infinity of potential roots, but none could be confirmed  However we know there are none (I'm pretty sure) and Maple should return, No roots exist from this expression. 

Although Maple correctly returns an empty list using a range or numeric option. 

I am trying to find a way to programmatically start a Maple animation, specifically after a custom button has been pressed.

Equivalently, I would be happy with being able to pass an option do "display" function, so that when I use it to create an animation, it is running from the moment it appears on the screen.

Any hints will be greatly appreciated.

If I have the following expression 

K:=(j)->j  is an expression where j an index run from 1 to 10

Now, I want to fill a row matrix with this expression as follows

A := Matrix(1, 10, K)

I think this is true where the result is [ 1  2  3  4  ..... 10]

but this is not  true in maple

the result is     [1  1  1  1 ..... 1] 

can any one tell what is the truth.

HI DR. Kamel Boughrara,

I am trying to understand the analytical magnetic field modeling of slotless PMSM, but it would be of great help if you could define the variables, like  mp =3,  QS=24, ap=1, p=2, q= QS/2*p*mp, tt, Qt and pls also iMX=10,  I am attaching the code for your kind answer.

Thanks

A.Q 

 

 

codetounderstand.mw

Let a function f be defined on the set of all real numbers and satisfy the relation
f(x+y)=f(x)+f(y)+80*x*y. How to find f(4/5) with Maple if f(1/4)=2?

Hi:

I asked Maple to evaluate (using "evalf") an infinite sum and it says (very quickly) that the answer is identically 0 (not 10^(-7)).

When I numerically  evaluate a large number of terms of the sum, the answer gets smaller as the number of terms increases, so it seems that Maple is probably correct. The fact that the answer is immediate suggest that Maple is doing some analysis rather than adding a large number of numerical values.

I'd like to...

Thanks Markiyan and Dr. Kamel.  Dr. Kamel I went through the link you gave me but couldn't find how to solve poissons equation using separation of variable method using Maple14.  I am attaching my file for your kind consideration.  Pls suggest me how to solve. 

Thanks in advance

A.Q

 

Poissonequation_solu.mw

Hi all,

I have to solve a ODE stated as follows:

PDE := expand(Laplacian(u(r, theta)) = M[r]/r)

But the problem is I don't know how to define M[r],  which is summ of "M[n]*cos(n*p*theta), where n is 1.3.5, 7...infinity

I f i write it precisely its  "summation of M[n]*cos(n*p*theta), where n =1.3.5, 7...infinity. 

Thanks in advance

A.Q

 

 

Hi, I have not found a post that explains how to create a colorbar for a contour plot with or without filled regions.  At the moment, I manage to create a color bar manually as follows.

First, I plot some function like so,

plots[contourplot](i/(1-(1+i)^(-n)), n = 15 .. 30, i = 0.1e-1 .. .15, axes = frame, contours = [seq(0.1e-1*n, n = 5 .. 16)], filledregions = true, axis[1] = [location = low, gridlines = [10, majorlines = 1]], axis[2] = [location = low, gridlines = [10, majorlines = 1...

In the following worksheet I want the plot, but Maple can't generate it . I tried two ways-the first one took almost 40 minutes and gave an empty plot, the second one took almost 10 minutes and generate an incomplete plot.Also the integration is very slow,but still,it can do it.

So,can anybody help me with a better way to do things-using other numerical schemes/advanced plotting options-whatever it takes?    Or at least explain what is going on?

By...

i use maple 12

with(PDETools):

U := diff_table(u(x,y)):

declare(U)

 

error, (in PDEtools:-declare) cannot declare objects as U

First 1847 1848 1849 1850 1851 1852 1853 Last Page 1849 of 2430