MathGroup Archive 2001

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

Search the Archive

Re: how to list all arrange of n! to a table

  • To: mathgroup at smc.vnet.net
  • Subject: [mg27714] Re: how to list all arrange of n! to a table
  • From: Erk Jensen <Erk.Jensen at cern.ch>
  • Date: Tue, 13 Mar 2001 03:52:34 -0500 (EST)
  • Organization: CERN http://www.cern.ch
  • References: <98ht0v$mnt@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

zeno69 wrote:
> 
> if n = 3 then list
> 123
> 321
> 132
> 231
> 213
> 312
> to access or excel

In[]:= Permutations[{1,2,3}]//TableForm
Out[]//TableForm=
 1 2 3
 1 3 2
 2 1 3
 2 3 1
 3 1 2
 3 2 1
-- 
 Dr.-Ing. Erk JENSEN                    mailto:Erk.Jensen at cern.ch
 CERN  PS/RF  L19510          http://jensene.home.cern.ch/jensene
 CH-1211 Geneva 23                      Tel.:     +41 22 76 74298
 Switzerland                            Fax.:     +41 22 76 78510


  • Prev by Date: Re: ReadList query
  • Next by Date: Re: how to list all arrange of n! to a table
  • Previous by thread: Re: how to list all arrange of n! to a table
  • Next by thread: Re: how to list all arrange of n! to a table