Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. In[1]:= Needs["Combinatorica`"]
  2.  
  3. General::compat: Combinatorica Graph and Permutations functionality has been superseded by
  4. preloaded functionality. The package now being loaded may conflict with this. Please see
  5. the Compatibility Guide for details.
  6.  
  7. In[2]:= Tableaux[3]
  8. Out[2]= {{{1, 2, 3}}, {{1, 3}, {2}}, {{1, 2}, {3}}, {{1}, {2}, {3}}}
  9.  
  10. In[3]:= Tableaux[{3}]
  11. Out[3]= {{{1, 2, 3}}}
  12.  
  13. In[4]:= Tableaux /@ IntegerPartitions[3]
  14. Out[4]= {{{{1, 2, 3}}}, {{{1, 3}, {2}}, {{1,
  15. 2}, {3}}}, {{{1}, {2}, {3}}}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement