Skip to content

Commit 6e63ac2

Browse files
committed
docs
1 parent 8c70e6d commit 6e63ac2

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

Mathlib/Algebra/Group/Pointwise/Finset/Basic.lean

-7
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ For finsets `s` and `t`:
2626
* `s * t` (`Finset.mul`): Multiplication, finset of all `x * y` where `x ∈ s` and `y ∈ t`.
2727
* `s - t` (`Finset.sub`): Subtraction, finset of all `x - y` where `x ∈ s` and `y ∈ t`.
2828
* `s / t` (`Finset.div`): Division, finset of all `x / y` where `x ∈ s` and `y ∈ t`.
29-
* `s +ᵥ t` (`Finset.vadd`): Scalar addition, finset of all `x +ᵥ y` where `x ∈ s` and `y ∈ t`.
30-
* `s • t` (`Finset.smul`): Scalar multiplication, finset of all `x • y` where `x ∈ s` and
31-
`y ∈ t`.
32-
* `s -ᵥ t` (`Finset.vsub`): Scalar subtraction, finset of all `x -ᵥ y` where `x ∈ s` and
33-
`y ∈ t`.
34-
* `a • s` (`Finset.smulFinset`): Scaling, finset of all `a • x` where `x ∈ s`.
35-
* `a +ᵥ s` (`Finset.vaddFinset`): Translation, finset of all `a +ᵥ x` where `x ∈ s`.
3629
3730
For `α` a semigroup/monoid, `Finset α` is a semigroup/monoid.
3831
As an unfortunate side effect, this means that `n • s`, where `n : ℕ`, is ambiguous between

Mathlib/Algebra/Group/Pointwise/Finset/Scalar.lean

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,7 @@ This file defines pointwise algebraic operations on finsets.
1313
## Main declarations
1414
1515
For finsets `s` and `t`:
16-
* `0` (`Finset.zero`): The singleton `{0}`.
17-
* `1` (`Finset.one`): The singleton `{1}`.
18-
* `-s` (`Finset.neg`): Negation, finset of all `-x` where `x ∈ s`.
19-
* `s⁻¹` (`Finset.inv`): Inversion, finset of all `x⁻¹` where `x ∈ s`.
20-
* `s + t` (`Finset.add`): Addition, finset of all `x + y` where `x ∈ s` and `y ∈ t`.
21-
* `s * t` (`Finset.mul`): Multiplication, finset of all `x * y` where `x ∈ s` and `y ∈ t`.
22-
* `s - t` (`Finset.sub`): Subtraction, finset of all `x - y` where `x ∈ s` and `y ∈ t`.
23-
* `s / t` (`Finset.div`): Division, finset of all `x / y` where `x ∈ s` and `y ∈ t`.
16+
2417
* `s +ᵥ t` (`Finset.vadd`): Scalar addition, finset of all `x +ᵥ y` where `x ∈ s` and `y ∈ t`.
2518
* `s • t` (`Finset.smul`): Scalar multiplication, finset of all `x • y` where `x ∈ s` and
2619
`y ∈ t`.

0 commit comments

Comments
 (0)