f[s ∪ t] = f[s] ∪ f[t]
En Lean4, la imagen de un conjunto s por una función f se representa por f '' s
; es decir,
1 |
f '' s = {y | ∃ x, x ∈ s ∧ f x = y} |
Demostrar con Lean4 que
1 |
f '' (s ∪ t) = f '' s ∪ f '' t |
Para ello, completar la siguiente teoría de Lean4:
1 2 3 4 5 6 7 8 |
import Mathlib.Data.Set.Function variable {α β : Type _} variable (f : α → β) variable (s t : Set α) open Set example : f '' (s ∪ t) = f '' s ∪ f '' t := by sorry |