Difference between revisions of "Ist product table.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Normalise sequential blank lines)
(Update function See also links and function index membership)
 
(3 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
     [product_table_left,product_table_right]=ist_product_table(mult)
 
     [product_table_left,product_table_right]=ist_product_table(mult)
  
==Arguments==
+
==Parameters==
  
     mult      - multiplicity of the spin in question
+
     mult      - multiplicity, the number of energy levels
 +
                of the spin in question
  
 
==Outputs==
 
==Outputs==
Line 15: Line 16:
 
   product_table_left(n,m,k)=trace(T{n}*T{m}*T{k}')/...
 
   product_table_left(n,m,k)=trace(T{n}*T{m}*T{k}')/...
 
                             sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}'))
 
                             sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}'))
   
+
 
   product_table_right(n,m,k)=trace(T{m}*T{n}*T{k}')/...
 
   product_table_right(n,m,k)=trace(T{m}*T{n}*T{k}')/...
                             sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}'));
+
                             sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}')));
  
corresponding to Eq 7.18 of the first edition of IK's book (normalisation is missing in the book, that's a typo).
+
corresponding to the IST expansion of the left and right multiplicative action by T{n} on T{m}, as given in Eq 7.18 of the first edition of IK's book (normalisation is missing in the book, that's a typo). Numbering translation between single and double index is given by [[lm2lin.m]] and [[lin2lm.m]].
  
 
==Notes==
 
==Notes==
These are expensive tables: disk cache is created and used automatically.
+
These are expensive tables: disk cache is created and used automatically. The smallest and most frequently used case is hard-coded.
  
 
==See also==
 
==See also==
[[irr_sph_ten.m]], [[pauli.m]]
+
[[irr_sph_ten.m]], [[pauli.m]], [[lm2lin.m]], [[lin2lm.m]], [[add_spins.m]], [[cg_fast.m]], [[clebsch_gordan.m]], [[comm.m]], [[hilb2liouv.m]], [[lorentz.m]], [[mat2sphten.m]], [[multipack.m]], [[perm_group.m]], [[rocomm.m]], [[rwalk.m]], [[sle_operators.m]], [[sorensen.m]], [[spher_harmon.m]], [[sphten2mat.m]], [[stev2sph.m]], [[stevens.m]], [[superop.m]], [[twospinist.m]], [[wigner.m]], [[wigner_3j.m]], [[wigner_6j.m]], [[Kernel_utilities]]
 
 
[[Kernel_utilities#SU.282.29.2C_SO.283.29.2C_and_other_groups|SU(2), SO(3), and other groups]]
 
  
 
''Version 2.8, authors: [[Ilya Kuprov]]''
 
''Version 2.8, authors: [[Ilya Kuprov]]''

Latest revision as of 19:38, 6 June 2026

Structure coefficient tables for the associative envelopes of su(mult) algebras.

Syntax

    [product_table_left,product_table_right]=ist_product_table(mult)

Parameters

    mult      - multiplicity, the number of energy levels
                of the spin in question

Outputs

Output contains the structure coefficients in the following conventions:

 product_table_left(n,m,k)=trace(T{n}*T{m}*T{k}')/...
                           sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}'))

 product_table_right(n,m,k)=trace(T{m}*T{n}*T{k}')/...
                            sqrt(trace(T{k}*T{k}')*trace(T{m}*T{m}')));

corresponding to the IST expansion of the left and right multiplicative action by T{n} on T{m}, as given in Eq 7.18 of the first edition of IK's book (normalisation is missing in the book, that's a typo). Numbering translation between single and double index is given by lm2lin.m and lin2lm.m.

Notes

These are expensive tables: disk cache is created and used automatically. The smallest and most frequently used case is hard-coded.

See also

irr_sph_ten.m, pauli.m, lm2lin.m, lin2lm.m, add_spins.m, cg_fast.m, clebsch_gordan.m, comm.m, hilb2liouv.m, lorentz.m, mat2sphten.m, multipack.m, perm_group.m, rocomm.m, rwalk.m, sle_operators.m, sorensen.m, spher_harmon.m, sphten2mat.m, stev2sph.m, stevens.m, superop.m, twospinist.m, wigner.m, wigner_3j.m, wigner_6j.m, Kernel_utilities

Version 2.8, authors: Ilya Kuprov