Unbundled subfields (deprecated) #
This file is deprecated, and is no longer imported by anything in mathlib other than other deprecated files, and test files. You should not need to import it.
This file defines predicates for unbundled subfields. Instead of using this file, please use
Subfield
, defined in FieldTheory.Subfield
, for subfields of fields.
Main definitions #
IsSubfield (S : Set F) : Prop
: the predicate that S
is the underlying set of a subfield
of the field F
. The bundled variant Subfield F
should be used in preference to this.
Tags #
IsSubfield, subfield
IsSubfield (S : Set F)
is the predicate saying that a given subset of a field is
the set underlying a subfield. This structure is deprecated; use the bundled variant
Subfield F
to model subfields of a field.
Instances For
Field.closure s
is the minimal subfield that includes s
.
Equations
- Field.closure S = {x : F | ∃ y ∈ Ring.closure S, ∃ z ∈ Ring.closure S, y / z = x}