Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flocq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Flocq
flocq
Commits
9ce3350a
Commit
9ce3350a
authored
Mar 28, 2012
by
Guillaume Melquiond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prove canonic_exp_{le,ge}_bpow.
parent
3cc94cb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
src/Core/Fcore_generic_fmt.v
src/Core/Fcore_generic_fmt.v
+23
-0
No files found.
src/Core/Fcore_generic_fmt.v
View file @
9ce3350a
...
...
@@ -1505,6 +1505,29 @@ now apply Zlt_le_succ.
now
apply
valid_exp
.
Qed
.
Lemma
canonic_exp_le_bpow
:
forall
(
x
:
R
)
(
e
:
Z
),
x
<>
R0
->
(
Rabs
x
<
bpow
e
)
%
R
->
(
canonic_exp
x
<=
fexp
e
)
%
Z
.
Proof
.
intros
x
e
Zx
Hx
.
apply
monotone_exp
.
now
apply
ln_beta_le_bpow
.
Qed
.
Lemma
canonic_exp_ge_bpow
:
forall
(
x
:
R
)
(
e
:
Z
),
(
bpow
(
e
-
1
)
<=
Rabs
x
)
%
R
->
(
fexp
e
<=
canonic_exp
x
)
%
Z
.
Proof
.
intros
x
e
Hx
.
apply
monotone_exp
.
rewrite
(
Zsucc_pred
e
).
apply
Zlt_le_succ
.
now
apply
ln_beta_gt_bpow
.
Qed
.
Variable
rnd
:
R
->
Z
.
Context
{
valid_rnd
:
Valid_rnd
rnd
}
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment