Skip to content

Commit 59a0fbd

Browse files
committed
fix
1 parent fe97828 commit 59a0fbd

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

theories/derive.v

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -788,13 +788,14 @@ by rewrite prod_normE/= !normrZ !normfV !normr_id !mulVf ?gt_eqF// maxxx ltr1n.
788788
Qed.
789789

790790
Lemma bilinear_eqo (U V' W' : normedModType R) (f : {bilinear U -> V' -> W'}) :
791-
continuous (fun p => f p.1 p.2) -> (fun p => f p.1 p.2) =o_ 0 id.
791+
continuous (fun p => f p.1 p.2) -> (fun p => f p.1 p.2) =o_ (0 : U * V') id.
792792
Proof.
793793
move=> fc; have [_ /posnumP[k] fschwarz] := bilinear_schwarz fc.
794794
apply/eqoP=> _ /posnumP[e]; near=> x; rewrite (le_trans (fschwarz _ _))//.
795795
rewrite ler_pM ?pmulr_rge0 //; last by rewrite num_le_max /= lexx orbT.
796796
rewrite -ler_pdivlMl //.
797-
suff : `|x| <= k%:num ^-1 * e%:num by apply: le_trans; rewrite num_le_max /= lexx.
797+
suff : `|x| <= k%:num ^-1 * e%:num.
798+
by apply: le_trans; rewrite num_le_max /= lexx.
798799
near: x; rewrite !near_simpl; apply/nbhs_le_nbhs_norm.
799800
by exists (k%:num ^-1 * e%:num) => //= ? /=; rewrite /= distrC subr0 => /ltW.
800801
Unshelve. all: by end_near. Qed.
@@ -803,7 +804,7 @@ Fact dbilin (U V' W' : normedModType R) (f : {bilinear U -> V' -> W'}) p :
803804
continuous (fun p => f p.1 p.2) ->
804805
continuous (fun q => (f p.1 q.2 + f q.1 p.2)) /\
805806
(fun q => f q.1 q.2) \o shift p = cst (f p.1 p.2) +
806-
(fun q => f p.1 q.2 + f q.1 p.2) +o_ 0 id.
807+
(fun q => f p.1 q.2 + f q.1 p.2) +o_ (0 : U * V') id.
807808
Proof.
808809
move=> fc; split=> [q|].
809810
by apply: (@continuousD _ _ _ (fun q => f p.1 q.2) (fun q => f q.1 p.2));

0 commit comments

Comments
 (0)