MaplePrimes Questions

I have created a user simplify procedure

`simplify\mysimplify` := proc(fun) ... etc ...

It works correctly, but not when i add it in a module.
ie a call as :

with(MyModule); simplify(x^2+x,mysimplify)

dont call mysimplify.
But it works if I call it directly

with(MyModule);
`simplify\mysimplify`(x^2+x);

I think I miss something but i can't point the error. What is the correct declaration ?
(the module is correct, others procedure works fine)

 

The attached worksheet shows you how to determine the arc length function and calculate the arc length of a function. The Arc Lengths Tutor will improve your understanding and help you with your homework ! You can also skip right away to an interactive video tutorial:

(Ctrl + Click)


Video Tutorial: Arc Lengths


Feel free to drop some comments !

 

Hi there ! The attached worksheet has a good review on the theory of determining volumes of solids through the method called "volume by cylindrical shells". You can also view an interactive video that shows you how to use Maple's powerful Volume by Revolution tutor that will help you with your homework.

(Ctrl + click on link)

<a href="http://www.maplesoft.com/demo/adoption/volume_by_cylindrical_shells.

 

Maybe this is a stupid question but if I have a function

 

 

how do I differentiate V with respect to t1 diff( V , t1) ?

 

 

 

 

How to find the total derivative of h(x,y,z) = (x+ y - z, sin(xyz) + e).

maple help shows partial derivative explanation but has not much for total derivative. I haven't learned total derivatives yet so any help is thankful.

thx

 

I have a problem with my calculations. I have changed the Order to 15. If I go any higher than this I get the error message:

"Error, invalid input: rhs expects 1 argument, but received 0"
 

after the loop. I need to calculate more terms. Does anyone know why this is happening and how I can fix it?

This is the spreadsheet

> restart;
> with(plots);
> nmax:=14:
> Order:=nmax+1:

Hi

I was wondering if maple is capable of making a plot with 2 y axis, I'm thinking of something along the lines of having temperature as a function of time, displayed in both deg C and deg F, on the one plot.

I have the student edition of maple 11.

Many thanks

Frontline

I have a differential equation, let us call it

F:=12*diff(u(x),x$7)^(3/2)*diff(u(x),x$2)^3+8*diff(u(x),x$6)^4+4*diff(u(x),x$4)*diff(u(x),x$3);

First, I need to know the term containing the highest order derivative:

with(PDEtools):

k:=difforder(F);

This command returns k=7 and now I need to deal with the term:

12*diff(u(x),x$7)^(3/2)*diff(u(x),x$2)^3

Now my question begins. How can I get

1) The non-derivative coefficient of this term? (answer is 12)

i have a second-order nonlinear equation with an infinity condition....at first i assume F'(0) like alpha....after finding F(x),i will use pade for F...but i have a problem,cause my condition is F(infinity)=0 and by limiting i cant find alpha because when it goes to zero,it doesnt depend upon what the alpha is..it backs too orders...so...how can i use pade for finding F'(x)?!!!....plz help me:((

Our university has recently begun a migration to an Exchange based e-mail system. With this change we are no longer able to send Maple worksheets (.mw files) as simple attachments to our messages. Here is the latest (and most informative) information I have received about this situation:

If I have two consecutive lines of code and I want to insert a line of code between these two, what I do is I go to the top line and press CTRL J or go to the bottom line and press CTRL K.  This creates a red arrow (the type that indicates a new line in Classic Maple Worksheets), but I'm in the non-classic maple worksheet and I don't want those red arrow there.

I have a list of coordinates  and would like to sort them so that in the new order, the third coordinate is increasing.

For example,

data:=[ [2,3,1], [3,6,-1], [5,0,3] ]

should sort to

[ [3,6,-1], [2,3,1], [5,0,3] ]

There must be an intelligent way to do this.

 

Maple transforms the sum

sum( i*binomial(k,i) / (k-1)^i  , i=0..k )

to

(k/(k-1))^k,

which converges to e. The exact input and output is listed below. However, how does this surprising transformation work? I tried to use the infolevel command to see what actually happens as shown below. Is something wrong with my use of the infolevel command? Does maybe "definite sum" mean that this is a predefined sum in maple? In this case, is there a possibility to list this sum or to get a reference to an external document?

I've stumbled across this double integral... int(int(2*x*sin(y),y),x); for which Maple can do it perfectly. However, if I specify the range for x and y, Maple will complain: int(int(2*x*sin(y),y=0..1),x0..1); Error, (in assuming) too many levels of recursion I'm just wondering if there is any other way around of evaluating this definite integral?

How do I plot the inequality x<7 on the real number line?

First 2198 2199 2200 2201 2202 2203 2204 Last Page 2200 of 2433