1 Dec 2013 16:36:46 +
From: Jon Hough
To:"programm...@jsoftware.com"
Subject: [Jprogramming] J and Group Theory
Message-ID:
Content-Type: text/plain; charset="iso-8859-1"
Hi,
I saw in the J labs the example for the group Z_4 (cyclic group of order 4).
I am now try
Exactly. So simple.Thanks!
> Date: Wed, 11 Dec 2013 11:43:15 -0500
> From: klet...@thomasnet.com
> To: programm...@jsoftware.com
> Subject: Re: [Jprogramming] J and Group Theory
>
> Is this what you need?
>
>#:i.4
> 0 0
> 0 1
> 1 0
> 1 1
>
Is this what you need?
#:i.4
0 0
0 1
1 0
1 1
'a b c d'=: #:i.4
a
0 0
b
0 1
c
1 0
d
1 1
On Wed, Dec 11, 2013 at 11:36 AM, Jon Hough wrote:
> Hi,
>
>
> I saw in the J labs the example for the group Z_4 (cyclic group of order
> 4).
>
>
>
> I am now trying to ape this method to c
Hi,
I saw in the J labs the example for the group Z_4 (cyclic group of order 4).
I am now trying to ape this method to create the group Z_2 x Z_2 (direct
product of cyclic group order 2 with itself).
This is what I have done so far:
a =: 0 0
b =: 0 1
c =: 1 0
d =: 1 1
f =: