f[s ∩ t] ⊆ f[s] ∩ f[t]

Demostrar con Lean4 que
\[ f[s ∩ t] ⊆ f[s] ∩ f[t]​ \]

Para ello, completar la siguiente teoría de Lean4:

1. Demostración en lenguaje natural

Sea tal que
\[ y ∈ f[s ∩ t] \]
Por tanto, existe un \(x\) tal que
\begin{align}
x ∈ s ∩ t \tag{1} \\
f(x) = y \tag{2}
\end{align}
Por (1), se tiene que
\begin{align}
x ∈ s \tag{3} \\
x ∈ t \tag{4}
\end{align}
Por (2) y (3), se tiene
\[ y ∈ f[s] \tag{5} \]
Por (2) y (4), se tiene
\[ y ∈ f[t] \tag{6} \]
Por (5) y (6), se tiene
\[ y ∈ f[s] ∩ f[t] \]

2. Demostraciones con Lean4

Se puede interactuar con las demostraciones anteriores en Lean 4 Web.

3. Demostraciones con Isabelle/HOL

Escribe un comentario