MathGroup Archive 2013

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

Search the Archive

Re: Simplify an expression with respect to one of many variables

  • To: mathgroup at smc.vnet.net
  • Subject: [mg130400] Re: Simplify an expression with respect to one of many variables
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Tue, 9 Apr 2013 04:05:00 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20130408040556.866506AEB@smc.vnet.net>

Just Simplify (or FullSimplify) after you take the derivative.


expr = z^(d x) (1 + a x + b y) (2 - c x)^3 (1 + 2 s x + t)^3;


(D[expr, x] // Simplify) ==
   (expr // Simplify[D[#, x]] &) ==
   Simplify[D[expr, x]] ==
   Simplify@D[#, x] &@expr


True



Bob Hanlon


On Mon, Apr 8, 2013 at 12:05 AM, YI LIU <liuyi.feier at gmail.com> wrote:

> To all in the group,
>
> I have an expression with around 10 variables. I would like to simplify
> the expression after derivative with respect to one of the 10 variables.
> Let's say x.
> However, I didnt find an option for that from Simplify fn.
>
> Any suggestion?
>
> Thanks
>
>


  • Prev by Date: ChartStyle in BoxWhiskerChart
  • Next by Date: How can I force mathematica to collect a symbol from a polynomial
  • Previous by thread: Re: Simplify an expression with respect to one of many
  • Next by thread: ChartStyle in BoxWhiskerChart