MathGroup Archive 2005

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

Search the Archive

Re: question about HoldForm

  • To: mathgroup at smc.vnet.net
  • Subject: [mg60786] Re: [mg60777] question about HoldForm
  • From: Andrzej Kozlowski <andrzej at yhc.att.ne.jp>
  • Date: Thu, 29 Sep 2005 05:40:54 -0400 (EDT)
  • References: <200509280541.BAA08384@smc.vnet.net>
  • Reply-to: Andrzej Kozlowski <andrzej at akikoz.net>
  • Sender: owner-wri-mathgroup at wolfram.com

On 28 Sep 2005, at 14:41, Ruth Lazkoz wrote:

>
> Hi,
>
> I have this expression
>
> x = 2; HoldForm[x^2 + 4x + 4]
>
> Is there a way to operate on HoldForm so that I get (x^2+2)^2? If I  
> cut
> a paste the result and operate on it I obviously get 16.
>
> Thanks,
>
> Ruth
>
>
>

Do you mean (x+2)^2?
Assuming so one possible way is something like this:


x = 2; v = HoldForm[x^2 + 4*x + 4];


Block[{x}, HoldForm[Evaluate[v /. HoldForm[u_] :> Factor[u]]]]


HoldForm[(x + 2)^2]

Andrzej Kozlowski



  • Prev by Date: Re: Bug in Mathematica ?
  • Next by Date: Sorting Strings: How and Why so f$&!ing hard?
  • Previous by thread: question about HoldForm
  • Next by thread: Re: question about HoldForm