LiE
1 program
Added 2026-03-13T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Lie algebra system, LiE computer algebra system
Provenance: commit d0c6b9fc08 · authored 2026-03-13T04:31:13+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Representation theory of G2
Provenance: commit d0c6b9fc08 · authored 2026-03-13T04:31:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# LiE: Representation theory computations for G2
setdefault G2;
# Dimensions of fundamental representations of G2
d1 = dim([1,0]); # First fundamental (7-dimensional)
d2 = dim([0,1]); # Second fundamental (14-dimensional, adjoint)
print(d1); # 7
print(d2); # 14
# Decompose tensor product of two copies of 7-dimensional rep
# 7 x 7 = 1 + 7 + 14 + 27
t = tensor([1,0],[1,0]);
print(t);