Zulip Chat Archive

Stream: mathlib4

Topic: type alias nightmare for AddAut.conj


Antoine Chambert-Loir (Apr 12 2025 at 22:17):

The definition of docs#AddAut.conj_symm_apply is

(AddEquiv.symm (conj g)) h = -g + h + g

but it seems to me that it misses one Additive.toMul, doesn't it?

This reflects in the definition of docs#AddAction.stabilizer_vadd_eq_stabilizer_map_conj
which also misses one.

Eric Wieser (Apr 12 2025 at 22:31):

Yes, this should be (Additive.toMul <| conj g).symm h = -g + h + g

Antoine Chambert-Loir (Apr 12 2025 at 22:41):

OK, I'll make a PR.

Antoine Chambert-Loir (Apr 12 2025 at 22:55):

#23978


Last updated: May 02 2025 at 03:31 UTC