Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
+ notation `- 1` in scopes `ereal_dual_scope` and `ereal_scope`
- in `pseudometric_normed_Zmodule.v`:
+ lemma `le0_ball0`
- in `theories/landau.v`:
+ lemma `littleoE0`

### Changed

Expand Down
5 changes: 5 additions & 0 deletions theories/landau.v
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,11 @@ Lemma littleoE (tag : unit) (F : filter_on T)
littleo_def F f h -> the_littleo tag F phF f h = f.
Proof. by move=> /asboolP?; rewrite /the_littleo /insubd insubT. Qed.

Lemma littleoE0 (tag : unit) (F : filter_on T)
(phF : phantom (set (set T)) F) f h :
~ littleo_def F f h -> the_littleo tag F phF f h = 0.
Proof. by move=> ?; rewrite /the_littleo /insubd insubN//; apply/asboolP. Qed.

Canonical the_littleo_littleo (tag : unit) (F : filter_on T)
(phF : phantom (set_system T) F) f h := [littleo of the_littleo tag F phF f h].

Expand Down
Loading