Skip to main content

En ℝ, si y > x² entonces y > 0 ó y < -1

Demostrar con Lean4 que en \(ℝ\), \(y > x^2 ⊢ y > 0 ∨ y < -1\).

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

import Mathlib.Data.Real.Basic
import Mathlib.Tactic

variable {x y : }

example
  (h : y > x^2)
  : y > 0  y < -1 :=
by sorry

Read more…

Si ≤ es un preorden, entonces < es transitiva

Demostrar con Lean4 que si \(≤\) es un preorden, entonces \(<\) es transitiva.

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

import Mathlib.Tactic
variable {α : Type _} [Preorder α]
variable (a b c : α)

example : a < b  b < c  a < c :=
by sorry

Read more…

Si |x + 3| < 5, entonces -8 < x < 2

Demostrar con Lean4 que si \(|x + 3| < 5\), entonces \(-8 < x < 2\).

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

import Mathlib.Data.Real.Basic
variable (x y : )

example
  : |x + 3| < 5  -8 < x  x < 2 :=
by sorry

Read more…

En ℝ, x² + y² = 0 ↔ x = 0 ∧ y = 0

Demostrar con Lean4 que si \(x, y ∈ ℝ\), entonces \[ x^2 + y^2 = 0 ↔ x = 0 ∧ y = 0 \]

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

import Mathlib.Data.Real.Basic
import Mathlib.Tactic

variable {x y : }

example : x^2 + y^2 = 0  x = 0  y = 0 :=
by sorry

Read more…

En ℝ, si x ≤ y, entonces y ≰ x ↔ x ≠ y

Demostrar con Lean4 que si \(x\) e \(y\) son números reales tales que \(x ≤ y\), entonces \(y ≰ x ↔ x ≠ y\).

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

import Mathlib.Data.Real.Basic
variable {x y : }

example
  (h : x  y)
  : ¬y  x  x  y :=
by sorry

Read more…