How can the following be best accomplished in Mathematica?
In[1] := Solve[f[2,3]==5,f ∈ {Plus,Minus,Divide}]
Out[1] := Plus
|
How can the following be best accomplished in Mathematica?
| |||
|
feedback
|
|
The desired expression syntax can be transformed into a set of
Sample use:
The advantage of this approach is that the full power of
| |||||||||
feedback
|
|
Please tell me if this does what you want:
(* Out[]= {Plus} *)
| |||||||
feedback
|
|
I'm not aware of a built-in function, but it's not hard to write one yourself. Here is one approach that you can use:
By the way, the correct operator for
| |||
|
feedback
|
MinusandSubtract, FYI. – Mr.Wizard Oct 30 '11 at 5:09