Example 1: 
 
   > max(1,2,3,exp(5),log(0.25));
 
   148.41315910257660342111558004055227962348766759388
 
   > max(17);
 
   17
 
 
 
Example 2: 
 
   > l = [|1,2,3,exp(5),log(0.25)|];
 
   > max(l);
 
   148.41315910257660342111558004055227962348766759388
 
 
 
Example 3: 
 
   > print(max(exp(17),sin(62)));
 
   exp(17)
 
 
 
Example 4: 
 
   > verbosity = 1!;
 
   > print(max(17 + log2(13)/log2(9),17 + log(13)/log(9)));
 
   Warning: the tool is unable to decide a maximum computation by evaluation even though faithful evaluation of the terms has been possible. The terms will be considered to be equal.
 
   17 + log2(13) / log2(9)