lemma
proved
sub
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.RecogSpec.Core on GitHub at line 78.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
actionJ_convex_on_interp -
goldenDivision_lt_one -
bimodal_ratio_lt_phi_nine -
nobleGasZFull -
duhamelKernelDominatedConvergenceAt_of_forcing -
galerkinNS_hasDerivAt_duhamelRemainder_mode -
sat_eval_time -
Gate -
P_vs_NP_resolved -
RecognitionComplete -
Validation -
hierarchy_problem_dissolution -
hasDerivAt_Jcost -
hasDerivAt_Jlog -
dAlembert_contDiff_nat -
dAlembert_to_ODE_general -
ode_cos_uniqueness -
representation_formula -
dAlembert_contDiff_nat -
dAlembert_to_ODE_general -
ode_cos_uniqueness -
representation_formula -
aczel_classification_conditional -
dAlembert_first_deriv_of_contDiff -
dAlembert_second_deriv_at_zero_of_contDiff -
hasDerivAt_JcostDeriv -
Jcost_strictConvexOn_pos -
differentiableAt_Jcost -
dAlembert_continuous_of_log_curvature -
dAlembert_to_ODE_general_theorem -
dAlembert_to_ODE_theorem -
ode_cosh_uniqueness_contdiff -
ode_zero_uniqueness -
dAlembert_to_ODE_theorem -
Jcost_deriv -
Jcost_continuous_pos -
Jcost_log_second_deriv_normalized -
logUtility_limit_eq_two -
biodiversityScalingCert -
species_area_exponent_pos
formal source
75 PhiClosed φ (x + y) :=
76 (phiSubfield φ).add_mem hx hy
77
78lemma sub (hx : PhiClosed φ x) (hy : PhiClosed φ y) :
79 PhiClosed φ (x - y) :=
80 (phiSubfield φ).sub_mem hx hy
81
82lemma neg (hx : PhiClosed φ x) : PhiClosed φ (-x) :=
83 (phiSubfield φ).neg_mem hx
84
85lemma mul (hx : PhiClosed φ x) (hy : PhiClosed φ y) :
86 PhiClosed φ (x * y) :=
87 (phiSubfield φ).mul_mem hx hy
88
89lemma inv (hx : PhiClosed φ x) : PhiClosed φ x⁻¹ :=
90 (phiSubfield φ).inv_mem hx
91
92lemma div (hx : PhiClosed φ x) (hy : PhiClosed φ y) :
93 PhiClosed φ (x / y) :=
94 (phiSubfield φ).div_mem hx hy
95
96lemma pow (hx : PhiClosed φ x) (n : ℕ) : PhiClosed φ (x ^ n) := by
97 simpa using (phiSubfield φ).pow_mem hx n
98
99lemma pow_self (φ : ℝ) (n : ℕ) : PhiClosed φ (φ ^ n) :=
100 pow (self φ) n
101
102lemma inv_self (φ : ℝ) : PhiClosed φ (φ⁻¹) :=
103 inv (self φ)
104
105lemma inv_pow_self (φ : ℝ) (n : ℕ) : PhiClosed φ ((φ ^ n)⁻¹) :=
106 inv (pow_self φ n)
107
108lemma of_nat (φ : ℝ) (n : ℕ) : PhiClosed φ (n : ℝ) := by