home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / cogeng / 359 next >
Encoding:
Text File  |  1992-12-22  |  9.9 KB  |  241 lines

  1. Newsgroups: comp.cog-eng
  2. Path: sparky!uunet!tijc02!jdw255
  3. From: jdw255@tijc02.uucp (John Wilson       )
  4. Subject: Speculation on the mind's data structures
  5. Message-ID: <1992Dec22.153529.29450@tijc02.uucp>
  6. Organization: Siemens Industrial Automation, Johnson City TN
  7. Distribution: net
  8. Date: Tue, 22 Dec 92 15:35:29 GMT
  9. Lines: 230
  10.  
  11.  
  12.  
  13.                                   The Minds Eye
  14.  
  15.               This is speculation on the mechanics of data structures used
  16.          by minds to think.  From what I have read, memory and processing
  17.          elements of the mind are interspersed and show confusing signs of
  18.          locality of reference combined with global knowledge.  Compactness
  19.          and massive parallel processing are also remarked upon in the
  20.          literature.  Data seems to reside in general areas, not in any
  21.          specific spot.  I am speculating that these traits can be explained
  22.          by an encoding scheme which creates an eye's viewpoint.
  23.               What if the mind consists of a virtual space full of four
  24.          dimensional objects.  How would the information which defines this
  25.          space be stored?  How would processing elements look into this space?
  26.          How would objects be manipulated?  Four dimensional objects would
  27.          consist of three spacial dimensions and one time dimension.  How would
  28.          the time dimension be handled?
  29.               Four dimensions are hard to experiment with, so most of my work
  30.          has been done in two dimensions with the expectation that it scales
  31.          upwards.  The experiments consisted of creating a one dimensional
  32.          array from a two dimensional space which could be both stored and
  33.          manipulated by parallel processing elements (PE's).  In figure 1
  34.          sensor readings are given that a point of light would have at various
  35.          distances.  The value 6561 was chosen to make the numbers work out
  36.          nicely.  At a distance of 0 one sensor would be affected and it would
  37.          receive all the light.  At a distance of 8 seventeen sensors would be
  38.          affected and would show a normal distribution of values adding up to
  39.          6561.
  40.               Figures 2, 5, and 8 are diagrams which are converted to vectors
  41.          in figures 3, 6, and 9 respectively.  These vectors are converted to
  42.          bar charts in figures 4, 7, and 10.  The 50 element vectors hold
  43.          information about a 450 point space.  As the dimensions go up the
  44.          compaction ratio also goes up.  If the space is too crowded then
  45.          information access becomes more difficult.  Adding or removing points
  46.          is accomplished by adding or subtracting appropriate values from
  47.          figure 1 to a substring of the vector.  Rotation of an object requires
  48.          addition and subtraction of constants to bring some points closer while
  49.          moving others away.  Comparisions would be done by comparing
  50.          substrings of vectors and might involve rotation or movement in the
  51.          virtual space.
  52.               Here are my speculative answers to my speculative questions!
  53.          The information which defines the virtual space is stored as one
  54.          dimensional vectors representing a viewpoint into the space.  PE's
  55.          look into this space by finding and processing subvectors.  These
  56.          subvectors contain the information about the points the PE's are
  57.          interested in.  Objects are manipulated by adding and subtracting
  58.          values from appropriate subvectors.  The time dimension would be
  59.          handled by keeping old copies of the current vectors.  Copies could be
  60.          reduced in size to save space.  This would cause some information to
  61.          be lost.
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.          FIGURE 1
  79.  
  80.          0                                6561
  81.          1                           2187 2187 2187
  82.          2                       729 1458 2187 1458 729
  83.          3                   243 729 1458 1701 1458 729 243
  84.          4                81 324 810 1296 1539 1296 810 324  81
  85.          5            27 135 405 810 1215 1377 1215 810 405 135  27
  86.          6         9  54 189 450 810 1134 1269 1134 810 450 189  54  9
  87.          7      3 21  84 231 483 798 1071 1179 1071 798 483 231  84 21 3
  88.          8    1 8 36 112 266 504 784 1016 1107 1016 784 504 266 112 36 8 1
  89.  
  90.  
  91.          FIGURE 2
  92.  
  93.             9   *         *        *         *          *
  94.             8
  95.             7       *          *        *         *
  96.             6
  97.             5
  98.             4
  99.             3
  100.             2
  101.             1
  102.             
  103.  
  104.          FIGURE 3
  105.  
  106.               242   506   786  1052  1277  1452  1569  1604  1525  1347 
  107.              1144  1016  1005  1074  1151  1206  1266  1368  1503  1611 
  108.              1641  1584  1476  1361  1284  1275  1334  1417  1455  1417 
  109.              1331  1257  1221  1214  1221  1254  1319  1380  1369  1261 
  110.              1107  1004   999  1053  1067   972   768   517   291   123 
  111.             
  112.  
  113.          FIGURE 4
  114.                    .           ...
  115.                   ...          ...                            
  116.                  ....         .....     .                     
  117.                  ....         .....    ...       .            
  118.                  .....       .......  .....     ...           
  119.                 ......      ................   .....          
  120.                 ......     .........................          
  121.                 .......   ..........................          
  122.                ........  ............................  ..     
  123.                ..........................................     
  124.                ...........................................    
  125.               .............................................   
  126.              ...............................................  
  127.              ................................................ 
  128.             ................................................. 
  129.             ..................................................
  130.             
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.          FIGURE 5
  145.  
  146.             9
  147.             8    *
  148.             7        *
  149.             6             *
  150.             5                  *
  151.             4                      *
  152.             3                          *
  153.             2                              *
  154.             1
  155.             
  156.  
  157.          FIGURE 6
  158.  
  159.               104   265   507   805  1100  1338  1499  1582  1584  1499 
  160.              1372  1284  1301  1366  1380  1290  1218  1260  1404  1512 
  161.              1548  1620  1701  1674  1566  1539  1782  1782  1458  1458 
  162.              1701  2187  1458   729     0     0     0     0     0     0 
  163.                 0     0     0     0     0     0     0     0     0     0 
  164.             
  165.  
  166.          FIGURE 7
  167.                                            .
  168.                                       ..   .                  
  169.                                   ..  ..  ..                  
  170.                    ..            ...  ..  ..                  
  171.                    ..          .........  ..                  
  172.                   ....         ..............                 
  173.                   ....    .   ...............                 
  174.                  ......  ..   ...............                 
  175.                  ........... ................                 
  176.                  ............................                 
  177.                 .............................                 
  178.                ..............................                 
  179.                ...............................                
  180.               ................................                
  181.              .................................                
  182.             ..................................                
  183.             
  184.  
  185.          FIGURE 8
  186.  
  187.             9
  188.             8
  189.             7                 *       *
  190.             6         *      * *     *
  191.             5    *   * *    *   *   *
  192.             4   * * *   *  *     * *
  193.             3  *   *     *        *
  194.             2 *
  195.             1
  196.             
  197.  
  198.          FIGURE 9
  199.  
  200.              1080  2646  4941  5589  6111  5940  6696  6822  6804  6129 
  201.              5913  5790  6042  5889  5730  5505  5550  5661  5715  6024 
  202.              6453  7209  7329  7002  5868  4728  3447  2367  1383   699 
  203.               285    93    21     3     0     0     0     0     0     0 
  204.                 0     0     0     0     0     0     0     0     0     0 
  205.             
  206.  
  207.  
  208.  
  209.  
  210.          FIGURE 10
  211.                                   .                           
  212.                                  ..                           
  213.                                  ...                          
  214.                    ..            ...                          
  215.                   ...            ...                          
  216.                   ...           ....                          
  217.                 . ....          ....                          
  218.                 . ....  .       ....                          
  219.                 . ....  .      .....                          
  220.                 ....... .      .....                          
  221.                 ....... ..     ......                         
  222.                 ..........     ......                         
  223.                 ...........   .......                         
  224.                 ...........  ........                         
  225.                ............  ........                         
  226.                ............ .........                         
  227.                ......................                         
  228.               .......................                         
  229.               ........................                        
  230.               .........................                       
  231.              ..........................                       
  232.              ...........................                      
  233.              ............................                     
  234.             .............................                     
  235.             ..............................                    
  236.             ...............................                   
  237.             ................................                  
  238.             
  239.         Best regards
  240.         John Wilson
  241.