User Portlet User Portlet

Discussions
If `Plus` is given a single argument it just returns the argument. In[1]:= Plus[3] Out[1]= 3 So if the single argument is a pattern, the unchanged pattern will be returned. Therefore: In[2]:= MatchQ[u*w, Times[a_, Plus[b_]]] ...