bookshelf/common/Common/Data/Real/Set.lean

13 lines
241 B
Plaintext
Raw Normal View History

import Mathlib.Data.Real.Basic
namespace Real
/--
The Minkowski sum of two sets `s` and `t` is the set
`s + t = { a + b : a ∈ s, b ∈ t }`.
-/
def minkowski_sum (s t : Set ) :=
{ x | ∃ a ∈ s, ∃ b ∈ t, x = a + b }
end Real