Equation Threading: Why the default behavior?
问题 I recently rediscovered a small package by Roman Maeder that tells Mathematica to automatically thread arithmetic and similar functions over expressions such as x == y. Link to Maeder's package. First, to demonstrate, here's an example given by Maeder: In[1]:= Needs["EqualThread`"] Now proceed to use the threading behavior to solve the following equation for x 'by hand': In[7]:= a == b Log[2 x] In[8]:= %/b Out[8]:= a/b == Log[2 x] Now exponentiate: In[9]:= Exp[%] Out[9]= E^(a/b) == 2 x And