MathGroup Archive 2008

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Re: How to separate a sum into terms
  • Next by Date: Variable names in Mathematica
  • Previous by thread: Re: How to separate a sum into terms
  • Next by thread: Re: How to separate a sum into terms