Menu Close

Día: 17 noviembre 2022

Si f es par y g es impar, entonces f ∘ g es par

La función f de ℝ en ℝ es par si, para todo x, f(-x) = f(x) y es impar si, para todo x, f(-x) -f(x).

Demostrar que si f es par y g es impar, entonces f ∘ g es par.

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

import data.real.basic
variables (f g :   )
 
def par (f :   ) : Prop    :=  x, f x = f (-x)
def impar  (f :   ) : Prop :=  x, f x = -f (-x)
 
example
  (hf : par f)
  (hg : impar g)
  : par (f  g) :=
sorry