Ticket #2809 (closed defect: duplicate)
G2 fundamental weights were the negative of what they should be.
| Reported by: | bump | Owned by: | mhansen |
|---|---|---|---|
| Priority: | major | Milestone: | sage-duplicate/invalid/wontfix |
| Component: | combinatorics | Keywords: | |
| Cc: | sage-combinat | Author(s): | |
| Report Upstream: | Reviewer(s): | ||
| Merged in: | Work issues: |
Description
In combinat/root_system.py, the fundamental weights for the various root systems are entered by hand. For G2, the fundamental weights were the negatives of what they should be.
diff -r 80b506b8e07c sage/combinat/root_system.py
--- a/sage/combinat/root_system.py Tue Apr 01 19:18:55 2008 -0700
+++ b/sage/combinat/root_system.py Sat Apr 05 08:40:46 2008 -0700
@@ -788,11 +788,11 @@ class AmbientLattice_g(AmbientLattice_ge
"""
EXAMPLES:
sage: CartanType(['G',2]).root_system().ambient_lattice().fundamental_weights()
- [(-1, 0, 1), (-2, 1, 1)]
+ [(1, 0, -1), (2, -1, -1)]
"""
return [ c0*self._term(0)+c1*self._term(1)+c2*self._term(2) \
for [c0,c1,c2] in
- [[-1,0,1],[-2,1,1]]]
+ [[1,0,-1],[2,-1,-1]]]
def WeylDim(type, coeffs):
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

