Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

Hi!

I have a function in 2 variables - lets make it easy, the function is:

f(beta,c_0) = beta-6*beta*c_0+3*beta*c_0^2

I want to know in which regions this function has positive values and where it is negative. Tried it with the command contourplot, but this is not telling me anything :(.

Hope somebody can help

Thx
 

Hello,

is there any way to solve a system like (d denotes the derivates):

 

f1(x1,x2,y1,y2)=0

f2(x1,x2,y1,y2)=0

dg1(x1,x2,y1,y2)/dy1=0

dg2(x1,x2,y1,y2)/dy2=0

 

Hi there, could someone help me plot zeta(0.5 + it) as seen here - en.wikipedia.org/wiki/File:Zeta_polar.svg

 

I assume I need to import some complex plot package?

This may have an annoyingly simple answer but I cannot seem to plot the prime counting function

with(numtheory):
plot(pi(x), x=0..100);

 

This just gives me an empty plot.  Any ideas?

How would you graph the eight curve in Maple?

x^4 = a^2 (x^2 - y^2)

Alla

I am very, very new to Maple and I know practically nothing. I have to create a number line, which I realize I use the plot command and x-axis, but that's about all I know. As an example, my professor gave "plot([[1,0],[5,0]],color=black,thickness=5);

Is it possible to export a Maple animation as a movie that can be inserted elsewhere like a PowerPoint presentation?  I know that I can export a "still frame" from an animation but I would like to export the entire movie.   Thanks.   David

I want to call a GSL function, which writes data to a pointer to be provided
(Regular Spherical Bessel Functions, array version) it has prototype

  int gsl_sf_bessel_jl_steed_array (int lmax, double x, double * jl_x_array)

so the 'array' is a pointer and no specific length (though only lmax + 1 of
the space is used, I think).

I tried the below, but the actual call results in a crash:

  arrB_GSL := define_external(
    'gsl_sf_bessel_jl_steed_array',
   ...

f(x) = (a((ax+b)/(cx-a))+b)/(c((ax+b)/(cx-a))-a)

The homework assignment asked me to simplify this function. It turns out that I was able to simplify it all the way down to f(x) = x by hand. However, I cannot seem to get Maple to simplify it any further than the original problem. Any ideas? Thanks, Brandon

when a student or colleague attaches a .mw file to an e-mail....i have trouble opening it....when i try to i get this question "How do you want to open this text file?" with four options "Maple Text", "Plaintext," "Maple Input" and "Cancel".  it does not matter what I enter here....the worksheet appears empty.

i do not have any problem with .mws files as e-mail attachments.

pwh

Hello,

I am trying to solve numerically the following equation :

Eq:={diff(u(x,t),t$2)-0.1*diff(u(x,t),x$2)+0.00001*diff(u(x,t),x$4)+0.1*diff(u(x,t),t$3)=0};


Here is my code :

restart;with(plots): with(PDEtools):

Eq:={diff(u(x,t),t$2)-0.1*diff(u(x,t),x$2)+0.00001*diff(u(x,t),x$4)+0.1*diff(u(x,t),t$3)=0};

BC:={u(0,t)=0,u(1,t)=0,D[1](u)(0,t)=0,D[1](u)(1,t)=0};

I will really appreciate some help with assigning solutions of the solve command to names. For example, when I enter the command...

solve( [3x + 9y=10,8x-7y=20],[x,y])

 

I get the following output:

 

[[x=250/93, y=20/93]]

 

How can I extract the solutions and assign them to x and y which I want to use in subsequent calculations such as ...

 

sin(x) + sqrt (y)

 

Hi all,

I am solving a system of ODEs numerically, and then plotting the results over time. I would really like Maple to show me the equation behind the plotted graphs. Through my searches I have not been able to find the code for that. Any help would be greatly appreciated. For example, how do I see the equation for W(t)?

sol1a := dsolve([Eq1a, Eq2a, Eq3a, H(0) = 4879, W(0) = 105000, R(0) = 0], numeric, method = rosenbrock, output = listprocedure)

plots[odeplot](sol1a, [t, W(t)], t = 0 .. 40, color = blue, style = point);

Hi!

I have a system of equations like this:

equation

and I wrote this equations into maple in this way:

eqns := [diff(x(t), t) = -x(t)-y(t), diff(y(t), t) = x(t)+.25*y(t)+r(t), diff(z(t), t) = 3+x(t)*z(t), diff(r(t), t) = .5*z(t)+0.5e-1*r]

using DEplot3d I tried to drawing attractor diagram:

Learn how to evaluate Double Integrals over General Regions that are not rectangles. The example in the attached worksheet graphs the region's bounding functions. It then articulates two methods for forming and evaluating an iterated double integral to find the area of the region. Watch the Double Integrals over General Regions - Video Tutorial (Ctrl + click) to
First 1969 1970 1971 1972 1973 1974 1975 Last Page 1971 of 2224