Zulip Chat Archive
Stream: new members
Topic: Why is is_subfield not a Prop?
Abhimanyu Pallavi Sudhir (Jan 12 2019 at 15:08):
I want to define
variables {L : Type} def subfields : set (set L) := {K' : set L | is_subfield K'}
But I run into a problem because is_subfield
is somehow a Type
, not a Prop
. Why is this/how is this possible, and how can I fix the problem?
Chris Hughes (Jan 12 2019 at 15:09):
By mistake. It should be changed.
Abhimanyu Pallavi Sudhir (Jan 12 2019 at 15:18):
Do you know how I can circumvent the problem?
Mario Carneiro (Jan 12 2019 at 15:18):
you can use nonempty (is_subfield K')
Chris Hughes (Jan 12 2019 at 15:19):
Kevin Buzzard (Jan 12 2019 at 16:41):
You can now also just update mathlib :-)
Last updated: Dec 20 2023 at 11:08 UTC