MathGroup Archive 2013

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

Search the Archive

Re: "Programming With Mathematica" Exercise help

  • To: mathgroup at smc.vnet.net
  • Subject: [mg130454] Re: "Programming With Mathematica" Exercise help
  • From: spamslayer19 at gmail.com
  • Date: Fri, 12 Apr 2013 02:16:45 -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: <kk5r6r$ric$1@smc.vnet.net>

In[1]:= z = 11;
a = 9;
Hold@z + 3 /. Hold@z -> a

Out[1]= 12

On Thursday, April 11, 2013 3:11:07 AM UTC-5, plank.i... at gmail.com wrote:
> I'm loving Paul Wellin's book "Programming with Mathematica: An Introduction" and am trying to diligently do all the exercises.  Most of them have answers in the back but I'm stuck on Section 4.2, Exercise 2 and there's no answer given.  It gives the following Mathematica code:
>
>
>
> z = 11;
>
> a = 9;
>
> z + 3 /. z -> a
>
>
>
> 14
>
>
>
> So "z+3" is being evaluated to 14 and then the substitution has no effect. He asks how to "use the Hold function in the compound expression to obtain a value of 12".  I don't seem to be able to get this to work.  My original thought was to hold z+3, but then the z in the replacement part gets evaluated so the replacement is actually 11->3 which doesn't match in the held z+3 expression.  In fact, if you replace "z+3" with Hold[11+3] then you'll end up with Hold[9+3].  Curiously, this works differently if you use replace.
>
>
>
> In:  Replace[Hold[11+3],11->9]
>
> Out: Replace[Hold[11+3],11->9]
>
>
>
> In:  Hold[11+3]/.11->9
>
> out: Hold[9+3]
>
>
>
> I thought these two were supposed to be equivalent so I'm a bit confused here.
>
>
>
> In any event, I've tried all the commonsense ideas I've had and then spent some time flailing about randomly with Hold's but nothing seems to work correctly.  Can anybody help me understand this?  Thanks!
>
>
>
> Darrell



  • Prev by Date: Re: "Programming With Mathematica" Exercise help
  • Next by Date: Re: Arranging disks (or any object for that matter) be arranged in a
  • Previous by thread: Re: "Programming With Mathematica" Exercise help
  • Next by thread: Re: "Programming With Mathematica" Exercise help