MathGroup Archive 2007

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

Search the Archive

Re: simple equation manipulation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72847] Re: [mg72828] simple equation manipulation
  • From: Andrzej Kozlowski <akoz at mimuw.edu.pl>
  • Date: Mon, 22 Jan 2007 04:03:12 -0500 (EST)
  • References: <200701211101.GAA29079@smc.vnet.net>

On 21 Jan 2007, at 12:01, Andrew McCracken wrote:

> Hi
>
> I have:
> ( (a - 6k^2(c+b))
> /         k^2)
>
> I want:
> a/k^2 - 6(c+b)
> Using mathematica, what command does this?
>
> Cheers,
> Andrew
>


In[1]:=
Apart[(a - 6*k^2*(b + c))/k^2]

Out[1]=
a/k^2 - 6*(b + c)

Andrzej Kozlowski


  • Prev by Date: Re: Profile (Wolfram Workbench)
  • Next by Date: Re: Newbie question - saving file in command-line
  • Previous by thread: Re: simple equation manipulation
  • Next by thread: Re: simple equation manipulation