| u/y applies the dyad u between the items of y .  
Thus: 
 
   m=: i. 3 2
   m;(+/m);(+/"1 m);(+/2 3 4)
+---+---+-----+-+
|0 1|6 9|1 5 9|9|
|2 3|   |     | |
|4 5|   |     | |
+---+---+-----+-+
m/y inserts successive verbs from the gerund m 
between items of y, extending m cyclically 
as required.  Thus, +`*/i.6 is 0+1*2+3*4+5 . 
 |  | If x and y are numeric lists, then x */ y 
is their multiplication table.  Thus: 
 
   1 2 3 */ 4 5 6 7
 4  5  6  7
 8 10 12 14
12 15 18 21
In general, each cell of x is applied to the entire 
of y .  
Thus x u/ y is equivalent to x u"(lu,_) y where lu 
is the left rank of u . 
 The case */ is called outer product in tensor analysis.
 
 |