Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

I have a question: how can I interpolate a 3-d data (x,y-variables vectors; z-function vector)  ang get a new interpolated function explicit polynom?

Thanks in advance! 

Hi. I need to plot a discrete set of points. I have the function, but the assignment is to print the points. I cannot figure out how to plot them correctly (yes, I've been reading the help). The points are created as values from functions and stored in arrays(?) (or, what I think Maple calls arrays), like this:

 

a := proc (t) options operator, arrow; (-1)*.12*t^4+12*t^3-380*t^2+4100*t+220 end proc
v := proc (t) options operator, arrow; (-1)*.48*t^3+36*t^2-760*t+4100 end proc

One useful feature of the `evalf` command is that it remembers previous results. But it also stores the current value of Digits as well as its input argument, to be associated with the remembered result.

There are two reasons for this. The fancier reason is so that, when Digits is reduced from that of an earlier successful computation, `evalf` can simply round off the earlier result to the desired number of decimal digits. The more basic reason is that `evalf` might...

In part due to a large number of requests on MaplePrimes, the command ?plottools,getdata was added to Maple 15. This new command gives programmers a better way to access the internals of plots and do things with the data they contain.

I was trying to come up with something really fun to do with this command, and another recent obsession came to mind: the game Minecraft.  Minecraft is nice, since like Maple it is written in Java and runs on lots of platforms!  For the uninitiated, Minecraft is a a sort of mostly unstructured "sandbox" game. The player starts in alone in a procedurally generated landscape consisting of blocks. They player can collect blocks with their hands or with tools and they use them to build new things. The wide array of things that people create in Minecraft is staggering.

So, I thought I would write some commands to export 3D plots in Maple to block structures in Minecraft.

How many times does the the sign of the product cos(x)*cos(x/2)*cos(x/3)*...*cos(x/2011) change when x passes from 0 to 2011*Pi/2?

Why is the max height always 0 in this code? Thanks.

 

>restart;

>a := proc (t) options operator, arrow; (-1)*.12*t^4+12*t^3-380*t^2+4100*t+220 end proc

printf("%10.10s    %15.15s\n", "Time (hrs)", "Height (meters)");

printf("%10.10s    %15.15s\n", "----------", "---------------");

amax := 0; tmax := 0;

for t to 4 do

alt := a(t);

printf("%6d        %10.0f\n", t, alt...

Hi!

> define( f , diff( f(x,y) , x ) = f1x(x,y) , diff( f(x,y) , y ) = f1y(x,y) );

produces

> diff( f(x,y) , x );
0

> diff( f(x,y) , y );
0

> diff( f(x,x) , x );
f1y(x,x)

So how can I do it correctly?

There are two data txt files:x0-y0.txt and x1-y1.txt,every one has two columns.
So, two functions can be made from the data,named y0=y0(x0) and y1=y1(x1).
I just want (y0-y1)/y0 at the same x coordinate.
Because it's too difficult to get it directly,I choose the curve fit method.
First,I used the command CurveFitting[ThieleInterpolation] to get two functions.
And then pointplot the (y0-y1)/y0 at the same x0 coordinate.
Surprisingly,the plot is discontinued.

 

Hello Friends,

I have the equation

 

Hello-

I am trying to find an analytic solution to a cubic equation of the form ax^3 + cx + d, where a, c, and d are rather complicated coefficients.  If I simply use the solve command, it gives the solutions assuming that the discriminant is negative (that is, one real and two imaginary solutions).  However, I want the solutions in the case that the discriminant is positive (the solutions have a different functional form; it's not the case that the imaginary solutions simply become real...

Hello

I'm working on a project, where I need to create some user friendly proc/modules. I need it to ask for the variables e.i.

'Enter equation'

'Define range'

etc. but I have no idea how to do so. Can you describe a method of doing so?

 

With Maple15, how do I get this

sigma^2*(1+(lambda[0]+lambda[1]-2)^2+(1-lambda[0])^2)

from

with(Statistics):
R := 'RandomVariable(Normal(0, sigma))'; a := [`$`('R', 5)]
Variance((1-lambda[0])*a[3]+(lambda[0]+lambda[1]-2)*a[4]+a[5]);
simplify(%, size); collect(%, {sigma, lambda[0], lambda[1]})

In general, how do I simplify an expression when it can be stated as a sum of squares? I suspect I am missing a general simplification technique. Thanks.

 

Hi All

If we have extensive material in pdf format and we want to tranfer this information to Maple and use it it as the main editor and word proceesor on a go forward basis - Is it possible to copy a pdf document with extensive equations into Maple while maintaining the format particularly of the equations, pictures, drawings and plots? Any copying and pasting I do now garlbles up the equations, plots and pictures of the pages I import to Maple...

i am having a problem with this question

graph the polynomial function F(x)= x^4 - 2.5x^2 + 0.5625

determine x & y intercepts?

find local maximum And minimum of F(x)

please advise

Dear guys! I've written some expressions and then the final equations which I want to solve as below:

> Omega0 := 0.26: H0 := 0.8: q0 := -0.61: j0 := 1: s0 := -0.18: l0 := 2.61:

> f0 := 6*H0^2*(Omega0-2):      f10 := 1:    f20 := (6*H0^2)^(-1)*(-3*Omega0/(4*(1+q0))+1/2):     f30 := (6*H0^2)^(-2)*(-3*Omega0*(3*q0^2+6*q0+j0+2)/(8*(1+q0)^3)+3/4):     f40 := (6*H0^2)^(-3)*(-3*Omega0*(s0*(1+q0...

First 1703 1704 1705 1706 1707 1708 1709 Last Page 1705 of 2223