Si f es inyectiva, entonces f[s] ∩ f[t] ⊆ f[s ∩ t]
Demostrar con Lean4 y con Isabelle/HOL que si \(f\) es inyectiva, entonces \[ f[s] ∩ f[t] ⊆ f[s ∩ t] \]
Para ello, completar la siguiente teoría de Lean4:
import Mathlib.Data.Set.Function open Set Function variable {α β : Type _} variable (f : α → β) variable (s t : Set α) example (h : Injective f) : f '' s ∩ f '' t ⊆ f '' (s ∩ t) := by sorry
y la siguiente teoría de Isabelle/HOL:
theory Imagen_de_la_interseccion_de_aplicaciones_inyectivas imports Main begin lemma assumes "inj f" shows "f ` s ∩ f ` t ⊆ f ` (s ∩ t)" sorry end