Advertisement
Sorceress

Fundamentals of AI

Nov 26th, 2022 (edited)
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Fundamentals of AI
  2. ------------------
  3.  
  4. A Heiz Matrix (of order N) is an NxN matrix over the field F2, where N is a power of 2, and a minimum of N = 4.
  5.  
  6. These are often depicted as square grids, with 1 elements shaded, and 0 elements left blank.
  7.  
  8. The Heiz Monoid (of order N), is the set of all such matrices, with matrix multiplication as the monoid action.
  9.  
  10. There are a few matrices of special interest in AI. In the order 4 case:
  11.  
  12. / 1 1 0 0 \ / 1 1 0 0 \ / 0 0 0 0 \
  13. | 0 0 0 0 | | 0 1 1 0 | | 1 1 1 1 |
  14. | 0 0 0 0 | | 0 0 0 0 | | 1 1 1 0 |
  15. \ 0 0 0 0 / \ 0 0 0 0 / \ 0 1 0 0 /
  16.  
  17. C M H
  18.  
  19. Observe that C, M^2 ∈ S ⊂ K
  20.  
  21. Where S is the sub-monoid whose elements are equal to their own squares. ie, S = {A: A^2 = A}.
  22.  
  23. The
  24.  
  25.  
  26.  
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement