f⁻¹[A ∪ B] = f⁻¹[A] ∪ f⁻¹[B]
Demostrar con Lean4 que \(f⁻¹[A ∪ B] = f⁻¹[A] ∪ f⁻¹[B]\).
Para ello, completar la siguiente teoría de Lean4:
1 2 3 4 5 6 7 8 9 10 |
import Mathlib.Data.Set.Function open Set variable {α β : Type _} variable (f : α → β) variable (A B : Set β) example : f ⁻¹' (A ∪ B) = f ⁻¹' A ∪ f ⁻¹' B := by sorry |