Demostraciones de "f[f⁻¹[u]] ⊆ u"
Demostrar con Lean4 y con Isabelle/HOL que \[ f[f⁻¹[u]] ⊆ u \]
Para ello, completar la siguiente teoría de Lean4:
import Mathlib.Data.Set.Function open Set variable {α β : Type _} variable (f : α → β) variable (u : Set β) example : f '' (f⁻¹' u) ⊆ u := by sorry
y la siguiente teoría de Isabelle/HOL:
theory Imagen_de_la_imagen_inversa imports Main begin lemma "f ` (f -` u) ⊆ u" sorry end