Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new criterion to compute indicators of 2-modular Brauer characters #5013

Merged
merged 1 commit into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion lib/ctbl.gi
Original file line number Diff line number Diff line change
Expand Up @@ -3920,7 +3920,8 @@ InstallMethod( IndicatorOp,
"for a Brauer character table and <n> = 2",
[ IsBrauerTable, IsHomogeneousList, IsPosInt ],
function( modtbl, ibr, n )
local indicator, princ, i, ordtbl, irr, ordindicator, fus, j, odd;
local indicator, princ, i, real, ordtbl, irr, ordindicator, dec, j, fus,
odd;

indicator:= [];

Expand All @@ -3947,6 +3948,32 @@ InstallMethod( IndicatorOp,
indicator[i]:= Unknown();
fi;
od;

# We use a criterion described in [GowWillems95, Lemma 1.2].
# The 2-modular restriction of an orthogonal (indicator '+')
# ordinary character preserves a quadratic form.
# If the trivial character is not a constituent of this restriction
# then any real constituent of this restriction that occurs with odd
# multiplicity has indicator +.
# (This argument determines for example the 2-modular indicators
# of solvable groups.)
real:= PositionsProperty( ibr, x -> x = ComplexConjugate( x ) );
if ForAny( indicator, IsUnknown ) then
ordtbl:= OrdinaryCharacterTable( modtbl );
ordindicator:= Indicator( ordtbl, 2 );
dec:= DecompositionMatrix( modtbl );
for i in [ 1 .. Length( dec ) ] do
if ordindicator[i] = 1 and dec[i][1] = 0 then
for j in Filtered( real, x -> IsOddInt( dec[i, x] ) ) do
if IsUnknown( indicator[j] ) then
indicator[j]:= 1;
else
Assert( 1, indicator[j] = 1 );
fi;
od;
fi;
od;
fi;
else
ordtbl:= OrdinaryCharacterTable( modtbl );
irr:= Irr( ordtbl );
Expand Down
4 changes: 2 additions & 2 deletions tst/testinstall/ctbl.tst
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ gap> Indicator( t, 2 );
[ 1, 1, 1, 1, 1 ]
gap> Indicator( t mod 3, 2 );
[ 1, 1, 1, 1 ]
gap> ForAny( Indicator( t mod 2, 2 ), IsUnknown );
true
gap> Indicator( t mod 2, 2 );
[ 1, 1 ]

##
gap> STOP_TEST( "ctbl.tst" );