Re: How to separate a sum into terms
- To: mathgroup at smc.vnet.net
- Subject: [mg92040] Re: How to separate a sum into terms
- From: Albert Retey <awnl at gmx-topmail.de>
- Date: Thu, 18 Sep 2008 06:13:14 -0400 (EDT)
- References: <gaqf4g$doa$1@smc.vnet.net>
Slava Rychkov wrote:
> Hi!
>
> I want to separate a Mathematica expression written as a sum into
> separate terms
> E.g. for
>
> a+b-c+f[1]-g[a]/g[b]
>
> I want to get a list
>
> {a,b,-c,f[1],-g[a]/g[b]}
>
> Is there a simple way to do this?
Is
List@@(a+b-c+f[1]-g[a]/g[b])
simple enough?
hth,
albert