what I learned today is that you cannot write 1e-i, where i is an unassigned variable (at least not like that):


is( (1e-1)^2 = 1e-2 );

                                 true

is( (1e-1)^i = 1e-i );
Error, missing operator or `;`

is( 1e-1*i = (1e-1)*i );



                                 true

That was a valuable lesson in Maple syntax.


Please Wait...