Re: list of pair

William Sit <[email protected]>
Newsgroups gmane.comp.mathematics.axiom.general
Organization City College of New York
Message-ID <[email protected]>


Francois Maltey wrote:

> I try to create a cartesian product :
> 
>  [[10,1],[10,2],[10,3],[10,4],[10,5],[10,6],
>   [20,1],[20,2],[20,3],[20,4],[20,5],[20,6],
>   [30,1],[30,2],[30,3],[30,4],[30,5],[30,6]]
> 
> but I can't !

(1) -> concat [[makeprod(10*i,j)$Product(PI,PI) for i in 1..3] for j in 1..4]

   (1)
   [(10,1), (20,1), (30,1), (10,2), (20,2), (30,2), (10,3), (20,3), (30,3),
    (10,4), (20,4), (30,4)]
                          Type: List Product(PositiveInteger,PositiveInteger)

Is this what you want? Note that Product uses tuple (a,b) whereas [a,b] is a
List.

William
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.