MathGroup Archive 2007

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

Search the Archive

Re: simple equation manipulation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72838] Re: simple equation manipulation
  • From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
  • Date: Mon, 22 Jan 2007 03:27:00 -0500 (EST)
  • Organization: The Open University, Milton Keynes, UK
  • References: <eovfe1$roo$1@smc.vnet.net>

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-6k^2(c+b))/k^2)//TraditionalForm

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

Regards,
Jean-Marc


  • Prev by Date: Re: Help with plotting and iterations
  • Next by Date: Re: simple equation manipulation
  • Previous by thread: Re: simple equation manipulation
  • Next by thread: Re: simple equation manipulation