Si R es un anillo y a, b ∈ R, entonces a – b = a + -b
Demostrar con Lean4 que si \(R\) es un anillo y \(a, b \in R\), entonces
\[a – b = a + -b\]
Para ello, completar la siguiente teoría de Lean4:
1 2 3 4 5 6 7 |
import Mathlib.Algebra.Ring.Defs variable {R : Type _} [Ring R] variable (a b : R) example : a - b = a + -b := sorry |
Read More «Si R es un anillo y a, b ∈ R, entonces a – b = a + -b»