Pointwise operations of finsets #
This file defines pointwise algebraic operations on finsets.
Main declarations #
For finsets s
and t
:
0
(Finset.zero
): The singleton{0}
.1
(Finset.one
): The singleton{1}
.-s
(Finset.neg
): Negation, finset of all-x
wherex ∈ s
.s⁻¹
(Finset.inv
): Inversion, finset of allx⁻¹
wherex ∈ s
.s + t
(Finset.add
): Addition, finset of allx + y
wherex ∈ s
andy ∈ t
.s * t
(Finset.mul
): Multiplication, finset of allx * y
wherex ∈ s
andy ∈ t
.s - t
(Finset.sub
): Subtraction, finset of allx - y
wherex ∈ s
andy ∈ t
.s / t
(Finset.div
): Division, finset of allx / y
wherex ∈ s
andy ∈ t
.s +ᵥ t
(Finset.vadd
): Scalar addition, finset of allx +ᵥ y
wherex ∈ s
andy ∈ t
.s • t
(Finset.smul
): Scalar multiplication, finset of allx • y
wherex ∈ s
andy ∈ t
.s -ᵥ t
(Finset.vsub
): Scalar subtraction, finset of allx -ᵥ y
wherex ∈ s
andy ∈ t
.a • s
(Finset.smulFinset
): Scaling, finset of alla • x
wherex ∈ s
.a +ᵥ s
(Finset.vaddFinset
): Translation, finset of alla +ᵥ x
wherex ∈ s
.
For α
a semigroup/monoid, Finset α
is a semigroup/monoid.
As an unfortunate side effect, this means that n • s
, where n : ℕ
, is ambiguous between
pointwise scaling and repeated pointwise addition; the former has (2 : ℕ) • {1, 2} = {2, 4}
, while
the latter has (2 : ℕ) • {1, 2} = {2, 3, 4}
. See note [pointwise nat action].
Implementation notes #
We put all instances in the locale Pointwise
, so that these instances are not available by
default. Note that we do not mark them as reducible (as argued by note [reducible non-instances])
since we expect the locale to be open whenever the instances are actually used (and making the
instances reducible changes the behavior of simp
.
Tags #
finset multiplication, finset addition, pointwise addition, pointwise multiplication, pointwise subtraction
0
/1
as finsets #
Lift a ZeroHom
to Finset
via image
Equations
- Finset.imageZeroHom f = { toFun := Finset.image ⇑f, map_zero' := ⋯ }
Instances For
Lift a OneHom
to Finset
via image
.
Equations
- Finset.imageOneHom f = { toFun := Finset.image ⇑f, map_one' := ⋯ }
Instances For
Finset negation/inversion #
The pointwise negation of finset -s
is defined as {-x | x ∈ s}
in locale Pointwise
.
Equations
- Finset.neg = { neg := Finset.image Neg.neg }
Instances For
The pointwise inversion of finset s⁻¹
is defined as {x⁻¹ | x ∈ s}
in locale Pointwise
.
Equations
- Finset.inv = { inv := Finset.image Inv.inv }
Instances For
Alias of the reverse direction of Finset.inv_nonempty_iff
.
Alias of the forward direction of Finset.inv_nonempty_iff
.
Scalar addition/multiplication of finsets #
The pointwise sum of two finsets s
and t
: s +ᵥ t = {x +ᵥ y | x ∈ s, y ∈ t}
.
Equations
- Finset.vadd = { vadd := Finset.image₂ fun (x1 : α) (x2 : β) => x1 +ᵥ x2 }
Instances For
The pointwise product of two finsets s
and t
: s • t = {x • y | x ∈ s, y ∈ t}
.
Equations
- Finset.smul = { smul := Finset.image₂ fun (x1 : α) (x2 : β) => x1 • x2 }
Instances For
If a finset u
is contained in the scalar sum of two sets s +ᵥ t
, we can find two
finsets s'
, t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' +ᵥ t'
.
If a finset u
is contained in the scalar product of two sets s • t
, we can find two finsets
s'
, t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' • t'
.
Translation/scaling of finsets #
The translation of a finset s
by a vector a
: a +ᵥ s = {a +ᵥ x | x ∈ s}
.
Equations
- Finset.vaddFinset = { vadd := fun (a : α) => Finset.image fun (x : β) => a +ᵥ x }
Instances For
The scaling of a finset s
by a scalar a
: a • s = {a • x | x ∈ s}
.
Equations
- Finset.smulFinset = { smul := fun (a : α) => Finset.image fun (x : β) => a • x }
Instances For
Finset addition/multiplication #
The pointwise addition of finsets s + t
is defined as {x + y | x ∈ s, y ∈ t}
in
locale Pointwise
.
Equations
- Finset.add = { add := Finset.image₂ fun (x1 x2 : α) => x1 + x2 }
Instances For
The pointwise multiplication of finsets s * t
and t
is defined as {x * y | x ∈ s, y ∈ t}
in locale Pointwise
.
Equations
- Finset.mul = { mul := Finset.image₂ fun (x1 x2 : α) => x1 * x2 }
Instances For
If a finset u
is contained in the sum of two sets s + t
, we can find two finsets
s'
, t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' + t'
.
If a finset u
is contained in the product of two sets s * t
, we can find two finsets s'
,
t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' * t'
.
Lift an AddHom
to Finset
via image
Equations
- Finset.imageAddHom f = { toFun := Finset.image ⇑f, map_add' := ⋯ }
Instances For
Lift a MulHom
to Finset
via image
.
Equations
- Finset.imageMulHom f = { toFun := Finset.image ⇑f, map_mul' := ⋯ }
Instances For
Finset subtraction/division #
The pointwise subtraction of finsets s - t
is defined as {x - y | x ∈ s, y ∈ t}
in locale Pointwise
.
Equations
- Finset.sub = { sub := Finset.image₂ fun (x1 x2 : α) => x1 - x2 }
Instances For
The pointwise division of finsets s / t
is defined as {x / y | x ∈ s, y ∈ t}
in locale
Pointwise
.
Equations
- Finset.div = { div := Finset.image₂ fun (x1 x2 : α) => x1 / x2 }
Instances For
If a finset u
is contained in the sum of two sets s - t
, we can find two finsets
s'
, t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' - t'
.
If a finset u
is contained in the product of two sets s / t
, we can find two finsets s'
,
t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' / t'
.
Instances #
Repeated pointwise multiplication (not the same as pointwise repeated multiplication!) of a
Finset
. See note [pointwise nat action].
Instances For
Repeated pointwise multiplication/division (not the same as pointwise repeated
multiplication/division!) of a Finset
. See note [pointwise nat action].
Instances For
Finset α
is an AddSemigroup
under pointwise operations if α
is.
Equations
- Finset.addSemigroup = Function.Injective.addSemigroup Finset.toSet ⋯ ⋯
Instances For
Finset α
is a Semigroup
under pointwise operations if α
is.
Equations
- Finset.semigroup = Function.Injective.semigroup Finset.toSet ⋯ ⋯
Instances For
Finset α
is an AddCommSemigroup
under pointwise operations if α
is.
Equations
- Finset.addCommSemigroup = Function.Injective.addCommSemigroup Finset.toSet ⋯ ⋯
Instances For
Finset α
is a CommSemigroup
under pointwise operations if α
is.
Equations
- Finset.commSemigroup = Function.Injective.commSemigroup Finset.toSet ⋯ ⋯
Instances For
Finset α
is an AddZeroClass
under pointwise operations if α
is.
Equations
- Finset.addZeroClass = Function.Injective.addZeroClass Finset.toSet ⋯ ⋯ ⋯
Instances For
Finset α
is a MulOneClass
under pointwise operations if α
is.
Equations
- Finset.mulOneClass = Function.Injective.mulOneClass Finset.toSet ⋯ ⋯ ⋯
Instances For
The singleton operation as an AddMonoidHom
.
Equations
- Finset.singletonAddMonoidHom = { toFun := Finset.singletonAddHom.toFun, map_zero' := ⋯, map_add' := ⋯ }
Instances For
The coercion from Finset
to set
as an AddMonoidHom
.
Equations
- Finset.coeAddMonoidHom = { toFun := CoeTC.coe, map_zero' := ⋯, map_add' := ⋯ }
Instances For
The coercion from Finset
to Set
as a MonoidHom
.
Equations
- Finset.coeMonoidHom = { toFun := CoeTC.coe, map_one' := ⋯, map_mul' := ⋯ }
Instances For
Lift an add_monoid_hom
to Finset
via image
Equations
- Finset.imageAddMonoidHom f = { toFun := (Finset.imageAddHom f).toFun, map_zero' := ⋯, map_add' := ⋯ }
Instances For
Lift a MonoidHom
to Finset
via image
.
Equations
- Finset.imageMonoidHom f = { toFun := (Finset.imageMulHom f).toFun, map_one' := ⋯, map_mul' := ⋯ }
Instances For
Finset α
is an AddMonoid
under pointwise operations if α
is.
Equations
- Finset.addMonoid = Function.Injective.addMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a Monoid
under pointwise operations if α
is.
Equations
- Finset.monoid = Function.Injective.monoid Finset.toSet ⋯ ⋯ ⋯ ⋯
Instances For
Alias of Finset.nsmul_empty
.
Finset α
is an AddCommMonoid
under pointwise operations if α
is.
Equations
- Finset.addCommMonoid = Function.Injective.addCommMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a CommMonoid
under pointwise operations if α
is.
Equations
- Finset.commMonoid = Function.Injective.commMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a subtraction monoid under pointwise operations if α
is.
Equations
- Finset.subtractionMonoid = Function.Injective.subtractionMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a division monoid under pointwise operations if α
is.
Equations
- Finset.divisionMonoid = Function.Injective.divisionMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a commutative subtraction monoid under pointwise operations if α
is.
Equations
- Finset.subtractionCommMonoid = Function.Injective.subtractionCommMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Finset α
is a commutative division monoid under pointwise operations if α
is.
Equations
- Finset.divisionCommMonoid = Function.Injective.divisionCommMonoid Finset.toSet ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Scalar subtraction of finsets #
The pointwise subtraction of two finsets s
and t
: s -ᵥ t = {x -ᵥ y | x ∈ s, y ∈ t}
.
Equations
- Finset.vsub = { vsub := Finset.image₂ fun (x1 x2 : β) => x1 -ᵥ x2 }
Instances For
If a finset u
is contained in the pointwise subtraction of two sets s -ᵥ t
, we can find two
finsets s'
, t'
such that s' ⊆ s
, t' ⊆ t
and u ⊆ s' -ᵥ t'
.
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
An additive action of an additive monoid α
on a type β
gives an additive action
of Finset α
on Finset β
Equations
- Finset.addAction = AddAction.mk ⋯ ⋯
Instances For
A multiplicative action of a monoid α
on a type β
gives a multiplicative action of
Finset α
on Finset β
.
Equations
- Finset.mulAction = MulAction.mk ⋯ ⋯
Instances For
An additive action of an additive monoid on a type β
gives an additive action
on Finset β
.
Equations
- Finset.addActionFinset = Function.Injective.addAction Finset.toSet ⋯ ⋯
Instances For
A multiplicative action of a monoid on a type β
gives a multiplicative action on Finset β
.
Equations
- Finset.mulActionFinset = Function.Injective.mulAction Finset.toSet ⋯ ⋯
Instances For
The size of s + s
is at least the size of s
, version with left-cancellative addition.
See card_le_card_add_self'
for the version with right-cancellative addition.
The size of s * s
is at least the size of s
, version with left-cancellative multiplication.
See card_le_card_mul_self'
for the version with right-cancellative multiplication.
The size of s + s
is at least the size of s
, version with right-cancellative addition.
See card_le_card_add_self
for the version with left-cancellative addition.
The size of s * s
is at least the size of s
, version with right-cancellative multiplication.
See card_le_card_mul_self
for the version with left-cancellative multiplication.
See Finset.card_nsmul_mono
for a version that works for the empty set.
See Finset.card_pow_mono
for a version that works for the empty set.
See Finset.Nonempty.card_nsmul_mono
for a version that works for zero scalars.
See Finset.Nonempty.card_pow_mono
for a version that works for zero powers.
If the left cosets of t
by elements of s
are disjoint (but not necessarily
distinct!), then the size of t
divides the size of s +ᵥ t
.
If the left cosets of t
by elements of s
are disjoint (but not necessarily distinct!), then
the size of t
divides the size of s • t
.
If the right cosets of s
by elements of t
are disjoint (but not necessarily
distinct!), then the size of s
divides the size of s + t
.
If the right cosets of s
by elements of t
are disjoint (but not necessarily distinct!), then
the size of s
divides the size of s * t
.
If the left cosets of t
by elements of s
are disjoint (but not necessarily
distinct!), then the size of t
divides the size of s + t
.
If the left cosets of t
by elements of s
are disjoint (but not necessarily distinct!), then
the size of t
divides the size of s * t
.
Equations
- Set.instFintypeZero = Set.fintypeSingleton 0
Equations
- Set.instFintypeOne = Set.fintypeSingleton 1