Mathematica: Splitting a function into a list of terms

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
TenFold
Messages
2
Reaction score
0
Hi,

I need to split an expression into a list of terms, i.e. an expression like:
a+b-c-d+...
into:
{a,b,-c,-d,...}.

Can you help? Thanks in advance.
 
Physics news on Phys.org
Maybe it's not too slick, but I came up with this:

myString = "a+b-c-d";
If[StringTake[myString, 1] != "-", myString = "+" <> myString,];
list = StringSplit[myString, {"+" -> "1", "-" -> "-1"}];
listout = Range[Length
  • /2];
    For[i = 1, i <= Length
    • /2, i++,
      listout[] = ToExpression[list[[2 i - 1]]]*ToExpression[list[[2 i]]]];
      listout

      which gives {a,b,-c,-d}.
 
String methods are probably not the best for this problem.

If you look at the FullForm[a+b-c-d] you see that it's
Plus[a, b, Times[-1, c], Times[-1, d]]
So all you need to do is make the Plus become a List.
This can be done using Apply, which has the short hand of @@.
So, the following should return True
List@@(a+b-c-d) == {a,b,-c,-d}

See http://stackoverflow.com/q/7697614/421225 for more discussion and different options.