|  |  7.5.10.0. makeUg2 Procedure from libraryncalg.lib(see  ncalg_lib).
 
Example:Usage:
makeUg2([p]), p an optional int (field characteristic)
Return:
ring
Purpose:
set up the U(g_2) in variables (x(i),y(i),Ha,Hb) for i=1..6 over the field of char p
Note:
activate this ring with the setringcommandthe variables are ordered as x(1),...x(6),y(1),...,y(6),Ha,Hb.
 
 See also:
 makeUgl;
 makeUsl.|  | LIB "ncalg.lib";
def a = makeUg2();
a;
==> // coefficients: QQ considered as a field
==> // number of vars : 14
==> //        block   1 : ordering dp
==> //                  : names    x(1) x(2) x(3) x(4) x(5) x(6) y(1) y(2) y(\
   3) y(4) y(5) y(6) Ha Hb
==> //        block   2 : ordering C
==> // noncommutative relations: ...
setring a;
// ...  56  noncommutative relations
 | 
 
 |