Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marianna Rapoport
iris-coq
Commits
2e98600d
Commit
2e98600d
authored
Oct 04, 2016
by
Zhen Zhang
Browse files
Add lemmas about Qp and fraction
parent
5c27499c
Changes
2
Show whitespace changes
Inline
Side-by-side
algebra/frac.v
View file @
2e98600d
...
...
@@ -35,3 +35,6 @@ Global Instance frac_full_exclusive : Exclusive 1%Qp.
Proof
.
move
=>
y
/
Qcle_not_lt
[]
/=.
by
rewrite
-{
1
}(
Qcplus_0_r
1
)
-
Qcplus_lt_mono_l
.
Qed
.
Lemma
invalid_plus_q
:
∀
(
q
:
Qp
),
¬
✓
(
1
+
q
)%
Qp
.
Proof
.
intros
q
H
.
by
apply
(
Qp_ge_1
q
).
Qed
.
prelude/numbers.v
View file @
2e98600d
...
...
@@ -566,3 +566,10 @@ Proof.
exists
(
mk_Qp
(
q2
-
q1
/
2
%
Z
)
Hq2'
).
split
;
[
by
rewrite
Qp_div_2
|].
apply
Qp_eq
;
simpl
.
ring
.
Qed
.
Lemma
Qp_ge_1
(
q
:
Qp
)
:
¬
((
1
+
q
)%
Qp
≤
1
%
Qp
)%
Qc
.
Proof
.
intros
Hle
.
apply
(
Qcplus_le_mono_l
q
0
1
)
in
Hle
.
apply
Qcle_ngt
in
Hle
.
by
destruct
q
.
Qed
.
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