"Source: Text/Module/Multilinear.text";
"Line: 1790";
"Date: Fri Sep 26 12:10:11 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Module/Multilinear.text, line: 1790
// Example: H63E27 ()
print "Example: H63E27";
ei := GetEchoInput();
SetEchoInput(true);
K := GF(541);
V := VectorSpace(K, 10);
U := VectorSpace(K, 5);
mult := function(x)
  M := Matrix(3, 3, Eltseq(x[1])[2..10]);
  v := VectorSpace(K, 3)!(Eltseq(x[2])[[1,3,5]]);
  return Eltseq(v*M) cat [0,0];
end function;
t := Tensor([V, U, U], mult);
t;
IsFullyNondegenerate(t);
Image(t);
s, H := FullyNondegenerateTensor(t);
s;
H;
SetEchoInput(ei);
