Re: Mathematica and Lisp
- To: mathgroup at smc.vnet.net
- Subject: [mg120037] Re: Mathematica and Lisp
- From: Richard Fateman <fateman at cs.berkeley.edu>
- Date: Tue, 5 Mar 2013 22:16:21 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <kgse4s$jam$1@smc.vnet.net> <20130303072215.D75466867@smc.vnet.net> <CAEtRDSdZ37Q7yCggT8AGWkKncfF57V57Et5JxjQ6i1yBnSVePQ@mail.gmail.com> <kh163q$sa3$1@smc.vnet.net> <kh4d4r$70k$1@smc.vnet.net>
On 3/5/2013 1:16 AM, David Bailey wrote: <snip> > > It is important to realise that anyone can understand any expression > involving operators by using Hold and FullForm: > > (f @@@ g) // Hold // FullForm > > Hold[Apply[f,g,List[1]]] I, of course, would suggest that one NOT use (f@@@g)//Hold//FullForm but FullForm[Hold[f@@@g]] 1. My form is clearer, not using any additional mysterious-to-the-novice infix operations like //. 2. It is even shorter, using 2 fewer characters, as written. 3. It apparently requires less thought, because even you were, at least for the moment, unsure of the precedence of // and so you inserted the entirely unnecessary () around f@@g. 4. There is really no question of the precedence in my form. 5. The whole notion of a novice being required to know about both Hold and FullForm in order to get an explanation for @@@ (or alternatively type f@@@g, select @@@ and hit F1), (or alternatively type bare on a line @@@ and hit F1 -- a solution that I found that did not require use of a mouse -- an improvement!) is all too much. I have not really heard an explanation for ?@@@ failing except that it is expected to fail by cognoscenti. My favorite video commentary, previously cited, about such an approach to the equivalence of bugs to features is "I meant to do that"... http://www.youtube.com/watch?v=vJXU7EVXs2A RJF
- References:
- Re: Mathematica and Lisp
- From: Richard Fateman <fateman@cs.berkeley.edu>
- Re: Mathematica and Lisp