File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -210,6 +210,16 @@ nonrec theorem ContinuousWithinAt.div (hf : ContinuousWithinAt f s a)
210210theorem ContinuousOn.div (hf : ContinuousOn f s) (hg : ContinuousOn g s) (h₀ : ∀ x ∈ s, g x ≠ 0 ) :
211211 ContinuousOn (f / g) s := fun x hx => (hf x hx).div (hg x hx) (h₀ x hx)
212212
213+ theorem ContinuousOn.comp_mul_left_div {f g : G₀ → G₀} {s t : Set G₀} {c : G₀}
214+ (hf : ContinuousOn f t) (hg : ContinuousOn g s) (hct : Set.MapsTo (fun x ↦ c * x) s t)
215+ (hne : ∀ x ∈ s, g x ≠ 0 ) : ContinuousOn (fun x ↦ f (c * x) / g x) s :=
216+ (hf.comp_mul_left hct).div hg hne
217+
218+ theorem ContinuousOn.comp_mul_right_div {f g : G₀ → G₀} {s t : Set G₀} {c : G₀}
219+ (hf : ContinuousOn f t) (hg : ContinuousOn g s) (hct : Set.MapsTo (fun x ↦ x * c) s t)
220+ (hne : ∀ x ∈ s, g x ≠ 0 ) : ContinuousOn (fun x ↦ f (x * c) / g x) s :=
221+ (hf.comp_mul_right hct).div hg hne
222+
213223/-- Continuity at a point of the result of dividing two functions continuous at that point, where
214224the denominator is nonzero. -/
215225nonrec theorem ContinuousAt.div (hf : ContinuousAt f a) (hg : ContinuousAt g a) (h₀ : g a ≠ 0 ) :
You can’t perform that action at this time.
0 commit comments