s.py

155 Reputation

4 Badges

20 years, 74 days

MaplePrimes Activity


These are questions asked by s.py

Hello,

0^0;

1

0^x;

0

Anyway to tell maple not to reply 0 if x value is unknown ?

Ty

 

Hello,

I have made some code using lists. At some points maple answers with a memory error, telling me to "try using Array instead". Ok tried, and it works better (with some code rewrited, as Array argument values are not duplicated)

But searching in help/doc/forums for size limitations of maple objects i find nothing. Where can i find such informations ?

Ty
 

Hello,
I want to remove properties (assume) programmaticaly.
in all the following code, e is indets(f); where f can be any function, list etc.

none of the followings works :
unassign(e[])
map(x->unassign(x),e);
assign(map(x->x=uneval(x),e));
etc.

the following seems to work, at first
assign(map(x->x=uneval(uneval(x)),e));

but finally no:
assume(a,'constant');
e := indets(a*x+b);
assign(map(x->x=uneval(uneval(x)),e));

1 2 Page 2 of 2