Rouben Rostamian

MaplePrimes Activity


These are answers submitted by Rouben Rostamian

1. In mathematical formulas the parenteses (), brackets [], and braces {} tend to be used interchangeably, but in Maple they have quite distinct meanings.  Go through your worksheet and replace all [] and {} with ().

2. The Maple syntax for defining a function like f(x,y) = x^2 + y^2 is

f := (x,y) -> x^2 + y^2

You seem to use the notation

f(x,y) := x^2 + y^2

which is incorrect.  Go through your worksheet and fix those as well.

3. Your equations contain a parameter Gr sub zero, but you have given a numerical value to Gr without the sub zero.  Why?

> ListTools:-Rotate([a,b,c,d],1);
                          [b, c, d, a]


> ListTools:-Rotate([a,b,c,d],2);
                          [c, d, a, b]


> ListTools:-Rotate([a,b,c,d],-1);
                          [d, a, b, c]

with(plots):

odeplot(dsn, [t,u(t)], 0..tmax);

See ?odeplot for more examples.

 

First 55 56 57 Page 57 of 57