Question: How to remove parentheses when the numerator of a limit is a negative integer

Hi

When the numerator of a quotient is a negative integer, Maple puts the quotient into parentheses and the negative sign before the quotient (not with the numerator). Here is an example:

with(RandomTools);
a1 := Generate(integer(range = -10 .. -1));
Limit(a1/(x-3), x = 3, right);

I would like to have the negative sign with the numerator and to remove the parentheses.

I tried to export the limit in MathML, but it didn't work.

In fact, my goal is the put the code in a button to print the limit into a MathContainer Component, but the problem is the same as my example.

 

Thanks.

Please Wait...