doronshadmi
Penultimate Amazing
- Joined
- Mar 15, 2008
- Messages
- 13,320
jsfisher, please look at this:
By following 0x0,1x1 and 2x2 detailed examples, can you define 3x3 and 4x4 and then the general formula that returns the number of any KxK where K=0 to n, where n is a natural number?
Code:
0x0
(0)=()
1x1
A * .
(1) = (A)
(0) = ()
2X2
(AB,AB) (AB,A) (AB,B) (AB) (A,A) (B,B) (A,B) (A) (B) ()
A * * A * * A * . A * . A * * A . . A * . A * . A . . A . .
| | | | | | | | | | | | | | | | | | | |
B *_* B *_. B *_* B *_. B ._. B *_* B ._* B ._. B *_. B ._.
(2,2) = (AB,AB)
(2,1) = (AB,A),(AB,B)
(2,0) = (AB)
(1,1) = (A,A),(B,B),(A,B)
(1,0) = (A),(B)
(0,0) = ()
By following 0x0,1x1 and 2x2 detailed examples, can you define 3x3 and 4x4 and then the general formula that returns the number of any KxK where K=0 to n, where n is a natural number?
Last edited: