I am looking for a full list of dangerous symbol names that begin with a lowercase letter in Mathematica.

At this moment I know three such names: min, max and lim. These names appear in the LimitsPositioningTokens list and are being treated as operators at least when they are entered in the FrontEnd with a superscript:

In[3]:= Options[$FrontEnd,LimitsPositioningTokens]
Out[3]= {LimitsPositioningTokens->{\[Sum],\[Product],\[Intersection],
         \[Union],\[UnionPlus],\[Wedge],\[Vee],lim,max,min,\[CirclePlus],
         \[CircleMinus],\[CircleTimes],\[CircleDot]}}

enter image description here

For example, type in the FrontEnd the following (use Ctrl+^ for making superscript - it is important!):

In[1]:= max^n+4
(max^n+4)//HoldComplete//FullForm
Out[1]= 4 max^n
Out[2]//FullForm= HoldComplete[Times[Power[max,n],Plus[4]]] 

screen

You see that max^n+4 is interpreted as 4*max^n in this case.

Can anyone explain what LimitsPositioningTokens option really does?

Are there other dangerous symbols that begin with a lowercase letter in Mathematica?

link|improve this question

1  
To be sure I was seeing it accurately, I ran FullForm[max^n + 4] (where the superscript ^ was generated as above) and I got Times[4, Power[max,n]]. It seems like the worst sort of bug. – rcollyer Aug 10 '11 at 15:17
@rcollyer Alexey Perhaps you should post $Version and $System as it seems to be version/system related. Both on a pc and mac running M8 I couldn't confirm this bug (see below). – Sjoerd C. de Vries Aug 10 '11 at 15:53
2  
$Version = 7.0 for Mac OS X x86 (64-bit) (February 19, 2009) and $System = Mac OS X x86 (64-bit). – rcollyer Aug 10 '11 at 15:57
@Sjoerd I have checked this on versions 7.0.1 and 5.2 for Windows. In both cases the problem persists. – Alexey Popkov Aug 10 '11 at 17:33
3  
Well, it looks like it has been solved in 8.0.1 then. – Sjoerd C. de Vries Aug 10 '11 at 17:58
feedback

1 Answer

up vote 2 down vote accepted

I cannot confirm the problem you report. Besides, the tokens you've found seem to be strings rather than symbols.

enter image description here

This is on win7-64/M8.0.1, my wife's mac lion/M8 doesn't show it either.

The fact that they are strings seems to be consistent with the description on the doc page of LimitsPositioning

LimitsPositioningTokens is a Cell option which can be set to a list of forms for which LimitsPositioning->True should be used.

All examples given there use strings.


Update to illustrate the point made in the comments below

This is with the standard LimitsPositioningTokens setting in $FrontEnd:

enter image description here

and this is with SetOptions[$FrontEnd, LimitsPositioningTokens -> {}]:

enter image description here

Please note that the $FrontEnd setting with SetOptions is sticky. It is likely that yours isn't at default anymore. Use the option inspector to return LimitsPositioningTokens to its default value (search for LimitsPositioningTokens with Global Settings on and remove the cross next to the variable if there is any).

link|improve this answer
3  
It happens for me on v7.1.0. – rcollyer Aug 10 '11 at 15:51
All tokens in the list of the LimitsPositioningTokens option are strings. – Alexey Popkov Aug 10 '11 at 17:37
@Alexey that's what I was saying. Don't quite understand what you mean there... – Sjoerd C. de Vries Aug 10 '11 at 17:48
@rcollyer is that a typo or is there a new version 7.1 out? I didn't get the memo. – Mr.Wizard Aug 12 '11 at 22:15
@Mr.Wizard, under the About menu: it gave 7.01.0, I dropped the first zero. Under the system information it generates, it puts the creation date as Feb 2009. – rcollyer Aug 13 '11 at 0:28
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.