I have a confusion with the Apply function. The Apply function replaces the head of an expression at the desired level. For example: In[124]:= Apply[Superscript, {{2, 3}}, {1}] Out[124]= {Superscript[2,3]} On the other hand the operator @@@ is equivalent to Apply acting at level {1} : In[125]:= Superscript @@@ {{2, 3}} Out[125]= {Superscript[2,3]} However theRead more