Skip to content
Snippets Groups Projects
Commit 680b21c4 authored by Ralf Jung's avatar Ralf Jung
Browse files

add version of Qp_lower_bound that returns less-than facts

parent e80f1433
No related branches found
No related tags found
1 merge request!186add version of Qp_lower_bound that returns less-than facts
......@@ -790,6 +790,12 @@ Proof.
apply Qp_eq; simpl. unfold Qcdiv. ring.
Qed.
Lemma Qp_lower_bound_lt (q1 q2 : Qp) : q : Qp, q < q1 q < q2.
Proof.
destruct (Qp_lower_bound q1 q2) as (qmin & q1' & q2' & [-> ->]).
exists qmin. split; eapply Qp_lt_sum; eauto.
Qed.
Lemma Qp_cross_split p a b c d :
(a + b = p c + d = p
ac ad bc bd, ac + ad = a bc + bd = b ac + bc = c ad + bd = d)%Qp.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment