How can the following be best accomplished in Mathematica?

 In[1] := Solve[f[2,3]==5,f ∈ {Plus,Minus,Divide}]

Out[1] := Plus
link|improve this question

2  
In fact you can achieve much more than this stackoverflow.com/questions/3947937/… – belisarius Oct 30 '11 at 4:18
the linked question was already among my favs o__O ... thx for the link! – Cetin Sert Oct 30 '11 at 4:26
3  
I am not sure what you intended, but it is possible that you are confusing Minus and Subtract, FYI. – Mr.Wizard Oct 30 '11 at 5:09
feedback

3 Answers

up vote 8 down vote accepted

The desired expression syntax can be transformed into a set of Solve expressions:

fSolve[expr_, f_ ∈ functions_List] :=
  Map[Solve[(expr /. f -> #) && f == #, f] &, functions] // Flatten

Sample use:

In[6]:= fSolve[f[2,3] == 5, f ∈ {Plus, Subtract, Divide}]
Out[6]= {f -> Plus}

In[7]:= fSolve[f[4,2] == 2, f ∈ {Plus, Subtract, Divide}]
Out[7]= {f -> Subtract, f -> Divide}

The advantage of this approach is that the full power of Solve remains available for more complex expressions, e.g.

In[8]:= fSolve[D[f[x], x] < f[x], f ∈ {Log, Exp}]
Out[8]= {f -> ConditionalExpression[Log, x Log[x]∈Reals && x>E^ProductLog[1]]}

In[9]:= fSolve[D[f[x], x] <= f[x], f ∈ {Log, Exp}]
Out[9]= {f -> ConditionalExpression[Log, x Log[x]∈Reals && x>=E^ProductLog[1]],
         f -> ConditionalExpression[Exp, E^x ∈ Reals]}
link|improve this answer
2  
Also very nice solution, good integration with standard Solve – magma Oct 30 '11 at 9:26
1  
Very nice. I wish I'd thought of that. +1 – Mr.Wizard Oct 30 '11 at 9:57
feedback

Please tell me if this does what you want:

findFunction[expr_, head_ ∈ {ops__}] :=
    Quiet@Pick[{ops}, expr /. head -> # & /@ {ops}]

findFunction[f[2, 3] == 5, f ∈ {Plus, Minus, Divide}]
(* Out[]= {Plus} *)
link|improve this answer
2  
By the way, I know the answer is returned as a list, but since it is conceivable that more than one function will match, I think it should not return only the first one. – Mr.Wizard Oct 30 '11 at 5:04
@ Mr Nice solution! – magma Oct 30 '11 at 9:21
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:

Clear@correctOperatorQ;
correctOperatorQ[expr_, value_, 
  operators_] := (expr == value) /. Head[expr] -> # & /@ operators

By the way, the correct operator for 2-3 is Subtract, not Minus. The result for your example:

correctOperatorQ[f[2, 3], 5, {Plus,Subtract,Divide}]
Out[1]={True, False, False}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.