Mathematica Mathematica: Splitting a function into a list of terms

AI Thread Summary
To split an expression like a+b-c-d into a list of terms, one effective method is to use the FullForm of the expression, which reveals its structure as Plus[a, b, Times[-1, c], Times[-1, d]]. By applying the List function to this structure, the expression can be transformed into the desired format: {a, b, -c, -d}. An alternative approach involves string manipulation, but it is less efficient than using Mathematica's built-in functions. The discussion also references a Stack Overflow link for further options and insights. Utilizing Apply with the shorthand @@ is a straightforward solution for this problem.
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.
 

Similar threads

Replies
1
Views
1K
Replies
13
Views
2K
Replies
4
Views
2K
Replies
1
Views
2K
Replies
4
Views
2K
Back
Top