Commit 2023-06-01 05:16 bc20bc99
View on Github →feat: port Analysis.NormedSpace.LpSpace (#4465) Notes Zulip thread :
- There are both
CoeOut
andCoeFun
instances forlp E p
. This is consistent with mathlib3, but it seems strange and I would expect it to cause problems. - It seems there is some defeq abuse (identifiying
PreLp E
with∀ i, E i
in the aforementionedCoeOut
instance, for example) happening here which is rather convenient, but it's possible it may cause problems. (this abuse was also present in mathlib3) - What should the name of this file be?
LpSpace
seems wrong semantically, butlpSpace
doesn't seem allowable by our file name conventions.