MathGroup Archive 2013

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

Search the Archive

Re: Hold & Evaluate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg129902] Re: Hold & Evaluate
  • From: Ray Koopman <koopman at sfu.ca>
  • Date: Mon, 25 Feb 2013 02:18:37 -0500 (EST)
  • 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: <kgc52u$gaq$1@smc.vnet.net>

On Feb 23, 8:31 pm, =A9er=FDch Jakub <Ser... at panska.cz> wrote:
> Dear mathgroup,
> I would like to generate sequence in the form:
>
> 1/1.2, 2/2.3, 3/3.4, 4/4.5, etc.
>
> It is very simple by a Table function:
>
> Table[n/(n + 0.1 (n + 1)), {n, 1, 15}]
>
> but as there are real numbers in denominators,
> Mathematica evaluates all and generates something like:
>
> {0.833333, 0.869565, 0.882353, 0.888889, 0.892857, 0.895522, etc.}
>
> How to evaluate numerators and denominators separately
> and print the sequence in that "fraction like" form?
>
> I tested:
>
> #[[1]]/#[[2]] & /@ Table[{n, n + 0.1 (n + 1)}, {n, 1, 15}]
> and than used Hold[] and Evaluate[]:
>
> Hold[Evaluate[#[[1]]]/Evaluate[#[[2]]]] & /@
>  Table[{n, n + 0.1 (n + 1)}, {n, 1, 15}]
>
> But it doesn't work as the Hold has "veto" power over any evaluation.
>
> Thanks in advance for any idea, how to do it
>
> Jakub

Table[SequenceForm[n, "/", n + .1(n+1)], {n,15}]

{1/1.2, 2/2.3, 3/3.4, 4/4.5, 5/5.6, 6/6.7, 7/7.8, 8/8.9,
9/10., 10/11.1, 11/12.2, 12/13.3, 13/14.4, 14/15.5, 15/16.6}



  • Prev by Date: Re: Mathematica and Lisp
  • Next by Date: Re: Hold & Evaluate
  • Previous by thread: Re: Hold & Evaluate
  • Next by thread: Re: Hold & Evaluate