Open
Description
Discussed things with @lgoettgens and @frankluebeck today: it would be useful to have support for sub-root-system (root-sub-systems?)
Concretely, the idea would be to have something like this pseudocode:
julia> rs = root_system([(:A, 2), (:F, 4)])
Root system of rank 6
of type A2 x F4
julia> sr = simple_roots(rs)
6-element Vector{RootSpaceElem}:
a_1
a_2
a_3
a_4
a_5
a_6
julia> sub_rs, emb = sub(rs, [sr[1], sr[3]])
...
where sub_rs
would be a root system and emb
a function sub_rs -> rs
which allows effective computation of images and preimages.