En los retículos, x ⊔ (x ⊓ y) = x

Demostrar con Lean4 que en los retículos se verifica que
\[ x ⊔ (x ⊓ y) = x \]

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

Demostración en lenguaje natural


En la demostración se usarán los siguientes lemas
\begin{align}
&x ≤ y → y ≤ x → x = y \tag{L1} \\
&x ⊓ y ≤ x \tag{L2} \\
&x ≤ x \tag{L3} \\
&x ≤ x ⊔ y \tag{L4} \\
&x ≤ z → y ≤ z → x ⊔ y ≤ z \tag{L5}
\end{align}

Por L1, basta demostrar las siguientes relaciones:
\begin{align}
&x ⊔ (x ⊓ y) ≤ x \tag{1} \\
&x ≤ x ⊔ (x ⊓ y) &&\text{[que se tiene por L4]}
\end{align}

Para demostrar (1), por L5, basta probar las relaciones:
\begin{align}
&x ≤ x &&\text{[que se tiene por L3]} \\
&x ⊓ y ≤ x &&\text{[que se tiene por L2]}
\end{align}

Demostraciones con Lean4

Demostraciones interactivas

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

Referencias

Escribe un comentario