MathGroup Archive 1999

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

Search the Archive

Re: Multiple Integrals

  • To: mathgroup at smc.vnet.net
  • Subject: [mg20025] Re: [mg19989] Multiple Integrals
  • From: "David Park" <djmp at earthlink.net>
  • Date: Sat, 25 Sep 1999 02:40:49 -0400
  • Sender: owner-wri-mathgroup at wolfram.com

George,

The Sequence command will do the trick for you.

Integrate[1, {x[1], 0, 1}, 
  Sequence @@ Table[{x[n], k[n - 1], x[n - 1]}, {n, 2, 4}]]

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/

>Hello everybody,
>
>I am trying to evaluate multiple integrals of the following form:
>
>Integrate[1,
>  {x[1], 0, 1},
>  {x[2], k[1], x[1]},
>  {x[3], k[2], x[2]},
>  {x[4], k[3], x[3]}  ]
>
>
>This works! However, when I try to compactify this in the following
>manner
>
> Integrate[1,
>  {x[1], 0, 1},
>  Table[{x[n], k[n - 1], x[n - 1]}, {n, 2, 4}]  ]
>
>
>it doesn't work. I think I got something with the Table wrong. Why?
>
>Can anyone help?. Please answer to my home mailbox:
>george at netvision.net.il
>
>Thank you,
>
>George Szpiro
>
>
>
>
>
>



  • Prev by Date: initstate problems
  • Next by Date: Re: MathLink String type
  • Previous by thread: Re: Multiple Integrals
  • Next by thread: Multiple Integrals