Is there a "compound matrix" method for matrices?

asked 0 years ago

more_weight gravatar image

I'm surprised that if A is a matrix that there isn't a A.compound_matrix(r) method.

The rth compound matrix can be constructed as

Cr = matrix(A.base_ring(), binomial(A.nrows(), r), binomial(A.ncols(), r), A.minors(r))

Writing a function to do this is trivial. However, it's such an important construction that I'm surprised it's not built-in.

Is it possible that I'm overlooking another method that builds the rth compound matrix?

Preview: (hide)

Comments

The usual name is "exterior power". It seems this is not yet implement on morphisms. Using "git grep" on the code base finds these words about various kinds of modules.

FrédéricC gravatar imageFrédéricC ( 0 years ago )