Module mathcomp.reals.reals
# An axiomatization of real numbers $\mathbb{R}$
This file provides a classical axiomatization of real numbers as a
discrete real archimedean field with in particular a theory of floor and
ceil.
```
realType == type of real numbers
The HB class is Real.
sup A == where A : set R with R : realType, the supremum of A when
it exists, 0 otherwise
inf A := - sup (- A)
```
The mixin corresponding to realType extends an archiFieldType with two
properties:
- when sup A exists, it is an upper bound of A (lemma sup_upper_bound)
- when sup A exists, there exists an element x in A such that
sup A - eps < x for any 0 < eps (lemma sup_adherent)
```
Rint == the set of real numbers that can be written as z%:~R,
i.e., as an integer
Rtoint r == r when r is an integer, 0 otherwise
floor_set x := [set y | Rtoint y /\ y <= x]
Rfloor x == the floor of x as a real number
range1 x := [set y |x <= y < x + 1]
Rceil x == the ceil of x as a real number, i.e., - Rfloor (- x)
```
```
@rational R == set of rational numbers of type R : realType
@irrational R == the complement of rational R
```
From HB Require Import structures.
From mathcomp Require Import boot order algebra.
#[warning="-warn-library-file-internal-analysis"]
From mathcomp Require Import unstable.
From mathcomp Require Import mathcomp_extra boolp classical_sets contra
set_interval.
Declare Scope real_scope.
Unset SsrOldRewriteGoalsOrder.
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
Import Order.TTheory GRing.Theory Num.Theory.
Delimit Scope real_scope with real.
Local Open Scope classical_set_scope.
Local Open Scope ring_scope.
Section subr_image.
Variable : numDomainType.
Implicit Types (E : set R) (x : R).
Lemma
has_ub_lbN
Source code
: has_ubound E <-> has_lbound (-%R @` E).Source code
Proof.
Lemma
has_lbound0
Source code
: has_lbound (@set0 R)Source code
Proof.
by exists 0. Qed.
Lemma
has_ubound0
Source code
: has_ubound (@set0 R)Source code
Proof.
by exists 0. Qed.
Lemma
ubound0
Source code
: ubound (@set0 R) = setT.Source code
Proof.
Lemma
lboundT
Source code
: lbound [set: R] = set0.Source code
Proof.
End subr_image.
Section has_bound_lemmas.
Variable : realDomainType.
Implicit Types E : set R.
Implicit Types x : R.
Lemma
has_ub_image_norm
Source code
: has_ubound (Num.norm @` E) -> has_ubound E.Source code
Proof.
Lemma
has_inf_supN
Source code
: has_sup (-%R @` E) <-> has_inf E.Source code
Proof.
Lemma
has_supPn
Source code
{} : E !=set0 ->Source code
~ has_sup E <-> (forall , exists2 , E y & x < y).
Proof.
End has_bound_lemmas.
.
mixin
Source code
Source code
Record
Source code
Source code
ArchimedeanField_isReal
Source code
Source code
Num
Source code
.ArchiRealField R := {Source code
sup_upper_bound_subdef : forall : set R,
has_sup E -> ubound E (supremum 0 E) ;
sup_adherent_subdef : forall ( : set R) (
eps
Source code
: R),Source code
0 < eps -> has_sup E -> exists2 : R, E e & (supremum 0 E - eps) < e
}.
#[short
Source code
(Source code
type=realType
Source code
)Source code
.
structure
Source code
Source code
Definition
Source code
Source code
Real
Source code
of ArchimedeanField_isReal RSource code
& Num.ArchiRealField R & Num.RealClosedField R}.
Bind Scope ring_scope with Real.sort.
Definition
sup
Source code
{ : realType} := @supremum _ R 0.Source code
Definition
inf
Source code
{ : realType} ( : set R) := - sup (-%R @` E).Source code
Lemma
sup_upper_bound
Source code
{ : realType} ( : set R):Source code
has_sup E -> ubound E (sup E).
Proof.
Lemma
sup_adherent
Source code
{ : realType} ( : set R) (Source code
eps
Source code
: R) : 0 < eps ->Source code
has_sup E -> exists2 : R, E e & (sup E - eps) < e.
Proof.
Section IsInt.
Context { : realFieldType}.
Definition
Rint_pred
Source code
:= fun : R => `[< exists , x == z%:~R >].Source code
Arguments Rint_pred _ /.
Definition
Rint
Source code
:= [qualify a | Rint_pred x].Source code
Lemma
Rint_def
Source code
: (x \is a Rint) = (`[< exists , x == z%:~R >]).Source code
Proof.
by []. Qed.
Lemma
RintP
Source code
: reflect (exists , x = z%:~R) (x \in Rint).Source code
Lemma
RintC
Source code
: z%:~R \is a Rint.Source code
Proof.
Lemma
Rint0
Source code
: 0 \is a Rint.Source code
Lemma
Rint1
Source code
: 1 \is a Rint.Source code
Hint Resolve Rint0 Rint1 RintC : core.
Lemma
Rint_subring_closed
Source code
: subring_closed Rint.Source code
Proof.
.
instance
Source code
Source code
Definition
Source code
Source code
GRing
Source code
.isSubringClosed.Build R Rint_predSource code
Rint_subring_closed.
Lemma
Rint_ler_addr1
Source code
( : R) : x \is a Rint -> y \is a Rint ->Source code
(x + 1 <= y) = (x < y).
Proof.
Lemma
Rint_ltr_addr1
Source code
( : R) : x \is a Rint -> y \is a Rint ->Source code
(x < y + 1) = (x <= y).
Proof.
End IsInt.
Arguments Rint_pred _ _ /.
Section ToInt.
Context { : realType}.
Implicit Types x y : R.
Definition
Rtoint
Source code
( : R) : int :=Source code
if insub x : {? | x \is a Rint} is Some Px then
xchoose (asboolP _ (tagged Px))
else 0.
Lemma
RtointK
Source code
( : R): x \is a Rint -> (Rtoint x)%:~R = x.Source code
Proof.
Lemma
Rtointz
Source code
( : int): Rtoint z%:~R = z.Source code
Lemma
Rtointn
Source code
( : nat): Rtoint n%:R = n%:~R.Source code
Lemma
inj_Rtoint
Source code
: {in Rint &, injective Rtoint}.Source code
Lemma
RtointN
Source code
: x \is a Rint -> Rtoint (- x) = - Rtoint x.Source code
End ToInt.
Section RealDerivedOps.
Variable : realType.
Implicit Types x y : R.
Definition
floor_set
Source code
:= [set : R | (y \is a Rint) && (y <= x)].Source code
Definition
Rfloor
Source code
: R := (Num.floor x)%:~R.Source code
Definition
range1
Source code
( : R) := [set | x <= y < x + 1].Source code
Definition
Rceil
Source code
: R := (Num.ceil x)%:~R.Source code
End RealDerivedOps.
Section RealLemmas.
Context { : realType}.
Implicit Types (A B : set R) (r : R).
Lemma
sup_out
Source code
: ~ has_sup A -> sup A = 0Source code
Proof.
Lemma
sup0
Source code
: sup (@set0 R) = 0Source code
Proof.
Lemma
sup1
Source code
: sup [set r] = rSource code
Proof.
Lemma
ub_le_sup
Source code
{} : has_ubound A -> ubound A (sup A).Source code
Proof.
move=> ubE; apply/ubP=> x x_in_A; move: (x) (x_in_A).
by apply/ubP/sup_upper_bound=> //; split; first by exists x.
Qed.
by apply/ubP/sup_upper_bound=> //; split; first by exists x.
Qed.
Lemma
sup_ub_strict
Source code
: has_ubound A ->Source code
~ A (sup A) -> A `<=` [set | r < sup A].
Proof.
Lemma
sup_total
Source code
{} : has_sup A -> down A r \/ sup A <= r.Source code
Proof.
Lemma
ge_sup
Source code
{} : A !=set0 -> (ubound A) r -> sup A <= r.Source code
Proof.
move=> hasA leAr; set y := sup A; pose z := (r + y) / 2%:R.
have Dz: 2%:R * z = r + y by rewrite mulrC divfK// pnatr_eq0.
have ubA : has_sup A by split => //; exists r.
have [/downP [t At lezt] | leyz] := sup_total z ubA.
rewrite -(lerD2l r) -Dz -mulr2n -[leRHS]mulr_natl.
rewrite ler_pM2l ?ltr0Sn //; apply/(le_trans lezt).
by move/ubP : leAr; exact.
rewrite -(lerD2r y) -Dz -mulr2n -[leLHS]mulr_natl.
by rewrite ler_pM2l ?ltr0Sn.
Qed.
have Dz: 2%:R * z = r + y by rewrite mulrC divfK// pnatr_eq0.
have ubA : has_sup A by split => //; exists r.
have [/downP [t At lezt] | leyz] := sup_total z ubA.
rewrite -(lerD2l r) -Dz -mulr2n -[leRHS]mulr_natl.
rewrite ler_pM2l ?ltr0Sn //; apply/(le_trans lezt).
by move/ubP : leAr; exact.
rewrite -(lerD2r y) -Dz -mulr2n -[leLHS]mulr_natl.
by rewrite ler_pM2l ?ltr0Sn.
Qed.
Lemma
sup_setU
Source code
: has_sup B ->Source code
(forall , A a -> B b -> a <= b) -> sup (A `|` B) = sup B.
Proof.
move=> [B0 [l Bl]] AB; apply/eqP; rewrite eq_le; apply/andP; split.
- apply: ge_sup => [|x [Ax|]]; first by apply: subset_nonempty B0 => ?; right.
by case: B0 => b Bb; rewrite (le_trans (AB _ _ Ax Bb))// ub_le_sup//; exists l.
- by move=> Bx; rewrite ub_le_sup //; exists l.
- apply: ge_sup => // b Bb; apply: ub_le_sup; last by right.
by exists l => x [Ax|Bx]; [rewrite (le_trans (AB _ _ Ax Bb)) // Bl|exact: Bl].
Qed.
- apply: ge_sup => [|x [Ax|]]; first by apply: subset_nonempty B0 => ?; right.
by case: B0 => b Bb; rewrite (le_trans (AB _ _ Ax Bb))// ub_le_sup//; exists l.
- by move=> Bx; rewrite ub_le_sup //; exists l.
- apply: ge_sup => // b Bb; apply: ub_le_sup; last by right.
by exists l => x [Ax|Bx]; [rewrite (le_trans (AB _ _ Ax Bb)) // Bl|exact: Bl].
Qed.
Lemma
sup_gt
Source code
: A !=set0 ->Source code
(r < sup A -> exists2 , A y & r < y)%R.
Proof.
Section SupInterchange.
Context { : Type} ( : X -> Y -> R).
Implicit Types (x : X) (y : Y).
Let
row
Source code
:= range (S x).Source code
Let
col
Source code
:= range (S ^~ y).Source code
Let
rows
Source code
:= range (sup \o row).Source code
Let
cols
Source code
:= range (sup \o col).Source code
Lemma
interchange_sup
Source code
: (forall , has_sup (row x)) -> has_sup rows ->Source code
sup rows = sup cols.
Proof.
move=> row_sup rows_sup.
have col_nonempty y : col y !=set0.
by case: rows_sup => -[_ [x _ _]] _; eexists; exact/imageT.
have col_bound u : ubound (col u) (sup rows).
move=> r [t _ <-]; apply: le_trans.
- have /sup_upper_bound := row_sup t.
by apply; exists u.
- have /sup_upper_bound := rows_sup.
by apply; exists t.
have col_le_rows y : sup (col y) <= sup rows.
by apply: ge_sup; [exact: col_nonempty|exact: col_bound].
have cols_sup : has_sup cols.
split.
- case: rows_sup => -[_ [x _ _]] _.
case: (row_sup x) => -[_ [y _ _]] _.
by exists (sup (col y)), y.
- by exists (sup rows) => _ [y _ <-]; exact: col_le_rows.
apply/eqP; rewrite eq_le; apply/andP; split.
- apply: ge_sup; first by case: rows_sup.
move=> _ [x _ <-].
apply: ge_sup; first by case: (row_sup x).
move=> _ [y _ <-]; apply: le_trans.
suff col_y_sup : has_sup (col y).
move: col_y_sup => /sup_upper_bound.
by apply; exists x.
split; first exact: col_nonempty.
by exists (sup rows).
move: cols_sup => /sup_upper_bound.
by apply; exists y.
- apply: ge_sup; first by case: cols_sup.
by move=> _ [y _ <-]; exact: col_le_rows.
Qed.
have col_nonempty y : col y !=set0.
by case: rows_sup => -[_ [x _ _]] _; eexists; exact/imageT.
have col_bound u : ubound (col u) (sup rows).
move=> r [t _ <-]; apply: le_trans.
- have /sup_upper_bound := row_sup t.
by apply; exists u.
- have /sup_upper_bound := rows_sup.
by apply; exists t.
have col_le_rows y : sup (col y) <= sup rows.
by apply: ge_sup; [exact: col_nonempty|exact: col_bound].
have cols_sup : has_sup cols.
split.
- case: rows_sup => -[_ [x _ _]] _.
case: (row_sup x) => -[_ [y _ _]] _.
by exists (sup (col y)), y.
- by exists (sup rows) => _ [y _ <-]; exact: col_le_rows.
apply/eqP; rewrite eq_le; apply/andP; split.
- apply: ge_sup; first by case: rows_sup.
move=> _ [x _ <-].
apply: ge_sup; first by case: (row_sup x).
move=> _ [y _ <-]; apply: le_trans.
suff col_y_sup : has_sup (col y).
move: col_y_sup => /sup_upper_bound.
by apply; exists x.
split; first exact: col_nonempty.
by exists (sup rows).
move: cols_sup => /sup_upper_bound.
by apply; exists y.
- apply: ge_sup; first by case: cols_sup.
by move=> _ [y _ <-]; exact: col_le_rows.
Qed.
End SupInterchange.
End RealLemmas.
#[deprecated(since="mathcomp-analysis 1.14.0", note="Renamed `ub_le_sup`.")]
Notation
sup_ubound
Source code
:= ub_le_sup (only parsing).Source code
#[deprecated(since="mathcomp-analysis 1.14.0", note="Renamed `ge_sup`.")]
Notation
sup_le_ub
Source code
:= ge_sup (only parsing).Source code
#[deprecated(since="1.17.0", note="use `interchange_sup` instead")]
Notation
__admitted__interchange_sup
Source code
:= interchange_sup (only parsing).Source code
Section sup_sum.
Context { : realType}.
Lemma
sup_sumE
Source code
( : set R) :Source code
has_sup A -> has_sup B -> sup [set x + y | in A & in B] = sup A + sup B.
Proof.
move=> /[dup] supA [[a Aa] ubA] /[dup] supB [[b Bb] ubB].
have ABsup : has_sup [set x + y | in A & in B].
split; first by exists (a + b), a => //; exists b.
case: ubA ubB => p up [q uq]; exists (p + q) => ? [r Ar [s Bs] <-].
by apply: lerD; [exact: up | exact: uq].
apply: le_anti; apply/andP; split.
apply: ge_sup; first by case: ABsup.
by move=> ? [p Ap [q Bq] <-]; apply: lerD; exact: ub_le_sup.
rewrite leNgt -subr_gt0; apply/negP.
set eps := (_ + _ - _) => epos.
have e2pos : 0 < eps / 2%:R by rewrite divr_gt0// ltr0n.
have [r Ar supBr] := sup_adherent e2pos supA.
have [s Bs supAs] := sup_adherent e2pos supB.
have := ltrD supBr supAs.
rewrite -addrACA -opprD -splitr subKr; apply/negP; rewrite -leNgt.
by apply: sup_upper_bound => //; exists r => //; exists s.
Qed.
have ABsup : has_sup [set x + y | in A & in B].
split; first by exists (a + b), a => //; exists b.
case: ubA ubB => p up [q uq]; exists (p + q) => ? [r Ar [s Bs] <-].
by apply: lerD; [exact: up | exact: uq].
apply: le_anti; apply/andP; split.
apply: ge_sup; first by case: ABsup.
by move=> ? [p Ap [q Bq] <-]; apply: lerD; exact: ub_le_sup.
rewrite leNgt -subr_gt0; apply/negP.
set eps := (_ + _ - _) => epos.
have e2pos : 0 < eps / 2%:R by rewrite divr_gt0// ltr0n.
have [r Ar supBr] := sup_adherent e2pos supA.
have [s Bs supAs] := sup_adherent e2pos supB.
have := ltrD supBr supAs.
rewrite -addrACA -opprD -splitr subKr; apply/negP; rewrite -leNgt.
by apply: sup_upper_bound => //; exists r => //; exists s.
Qed.
Lemma
inf_sumE
Source code
( : set R) :Source code
has_inf A -> has_inf B -> inf [set x + y | in A & in B] = inf A + inf B.
Proof.
move/has_inf_supN => ? /has_inf_supN ?; rewrite /inf.
rewrite [X in - sup X = _](_ : _ =
[set x + y | in [set - x | in A ] & in [set - x | in B]]); last first.
by rewrite sup_sumE // -opprD.
rewrite eqEsubset; split => /= t [] /= x []a Aa.
case => b Bb <- <-; exists (- a); first by exists a.
by exists (- b); [exists b|rewrite opprD].
move=> <- [y] [b Bb] <- <-; exists (a + b); last by rewrite opprD.
by exists a => //; exists b.
Qed.
rewrite [X in - sup X = _](_ : _ =
[set x + y | in [set - x | in A ] & in [set - x | in B]]); last first.
by rewrite sup_sumE // -opprD.
rewrite eqEsubset; split => /= t [] /= x []a Aa.
case => b Bb <- <-; exists (- a); first by exists a.
by exists (- b); [exists b|rewrite opprD].
move=> <- [y] [b Bb] <- <-; exists (a + b); last by rewrite opprD.
by exists a => //; exists b.
Qed.
End sup_sum.
Section InfTheory.
Variables ( : realType).
Implicit Types E : set R.
Implicit Types x : R.
Lemma
inf_adherent
Source code
(Source code
eps
Source code
: R) : 0 < eps ->Source code
has_inf E -> exists2 , E e & e < inf E + eps.
Proof.
move=> + /has_inf_supN supNE => /sup_adherent /(_ supNE)[e NEx egtsup].
exists (- e); first by case: NEx => x Ex <-{}; rewrite opprK.
by rewrite ltrNl -mulN1r mulrDr !mulN1r opprK.
Qed.
exists (- e); first by case: NEx => x Ex <-{}; rewrite opprK.
by rewrite ltrNl -mulN1r mulrDr !mulN1r opprK.
Qed.
Lemma
inf_out
Source code
: ~ has_inf E -> inf E = 0.Source code
Proof.
move=> ninfE; rewrite -oppr0 -(@sup_out _ (-%R @` E)) => // supNE; apply: ninfE.
exact/has_inf_supN.
Qed.
exact/has_inf_supN.
Qed.
Lemma
inf0
Source code
: inf (@set0 R) = 0.Source code
Proof.
Lemma
inf1
Source code
: inf [set x] = x.Source code
Proof.
Lemma
ge_inf
Source code
: has_lbound E -> lbound E (inf E).Source code
Proof.
Lemma
inf_lb_strict
Source code
: has_lbound E ->Source code
~ E (inf E) -> E `<=` [set | inf E < r].
Proof.
Lemma
lb_le_inf
Source code
: nonempty E -> (lbound E) x -> x <= inf E.Source code
Lemma
has_infPn
Source code
: nonempty E ->Source code
~ has_inf E <-> (forall , exists2 , E y & y < x).
Proof.
Lemma
inf_setU
Source code
( : set R) : has_inf A ->Source code
(forall , A a -> B b -> a <= b) -> inf (A `|` B) = inf A.
Proof.
move=> hiA AB; congr (- _).
rewrite image_setU setUC sup_setU //; first exact/has_inf_supN.
by move=> _ _ [] b Bb <-{} [] a Aa <-{}; rewrite lerNl opprK; apply AB.
Qed.
rewrite image_setU setUC sup_setU //; first exact/has_inf_supN.
by move=> _ _ [] b Bb <-{} [] a Aa <-{}; rewrite lerNl opprK; apply AB.
Qed.
Lemma
inf_lt
Source code
( : set R) ( : R) : S !=set0 ->Source code
(inf S < x -> exists2 , S y & y < x)%R.
Proof.
End InfTheory.
#[deprecated(since="mathcomp-analysis 1.14.0", note="Renamed `ge_inf`.")]
Notation
inf_lbound
Source code
:= ge_inf (only parsing).Source code
Section FloorTheory.
Variable : realType.
Implicit Types (x y : R) (i : int).
Lemma
has_sup_floor_set
Source code
: has_sup (floor_set x).Source code
Proof.
split; [exists (- (Num.bound (-x))%:~R) | exists (Num.bound x)%:~R].
rewrite /floor_set/mkset rpredN rpred_int /= lerNl.
case: (ger0P (-x)) => [/archi_boundP/ltW//|].
by move/ltW/le_trans; apply; rewrite ler0z.
apply/ubP=> y /andP[_] /le_trans; apply.
case: (ger0P x)=> [/archi_boundP/ltW|] //.
by move/ltW/le_trans; apply; rewrite ler0z.
Qed.
rewrite /floor_set/mkset rpredN rpred_int /= lerNl.
case: (ger0P (-x)) => [/archi_boundP/ltW//|].
by move/ltW/le_trans; apply; rewrite ler0z.
apply/ubP=> y /andP[_] /le_trans; apply.
case: (ger0P x)=> [/archi_boundP/ltW|] //.
by move/ltW/le_trans; apply; rewrite ler0z.
Qed.
Lemma
sup_in_floor_set
Source code
: (floor_set x) (sup (floor_set x)).Source code
Proof.
have /(sup_adherent ltr01) [y Fy] := has_sup_floor_set x.
have /sup_upper_bound /ubP /(_ _ Fy) := has_sup_floor_set x.
rewrite le_eqVlt=> /orP[/eqP<-//| lt_yFx].
rewrite ltrBlDr -ltrBlDl => lt1_FxBy.
pose e := sup (floor_set x) - y; have := has_sup_floor_set x.
move/sup_adherent=> -/(_ e) []; first by rewrite subr_gt0.
move=> z Fz; rewrite /= subKr => lt_yz.
have /sup_upper_bound /ubP /(_ _ Fz) := has_sup_floor_set x.
rewrite -(lerD2r (-y)) => /le_lt_trans /(_ lt1_FxBy).
case/andP: Fy Fz lt_yz=> /RintP[yi -> _].
case/andP=> /RintP[zi -> _]; rewrite -rmorphB /= ltrz1 ltr_int.
rewrite lt_neqAle => /andP[ne_yz le_yz].
rewrite -[_-_]gez0_abs ?subr_ge0 // ltz_nat ltnS leqn0.
by rewrite absz_eq0 subr_eq0 eq_sym (negbTE ne_yz).
Qed.
have /sup_upper_bound /ubP /(_ _ Fy) := has_sup_floor_set x.
rewrite le_eqVlt=> /orP[/eqP<-//| lt_yFx].
rewrite ltrBlDr -ltrBlDl => lt1_FxBy.
pose e := sup (floor_set x) - y; have := has_sup_floor_set x.
move/sup_adherent=> -/(_ e) []; first by rewrite subr_gt0.
move=> z Fz; rewrite /= subKr => lt_yz.
have /sup_upper_bound /ubP /(_ _ Fz) := has_sup_floor_set x.
rewrite -(lerD2r (-y)) => /le_lt_trans /(_ lt1_FxBy).
case/andP: Fy Fz lt_yz=> /RintP[yi -> _].
case/andP=> /RintP[zi -> _]; rewrite -rmorphB /= ltrz1 ltr_int.
rewrite lt_neqAle => /andP[ne_yz le_yz].
rewrite -[_-_]gez0_abs ?subr_ge0 // ltz_nat ltnS leqn0.
by rewrite absz_eq0 subr_eq0 eq_sym (negbTE ne_yz).
Qed.
Lemma
isint_Rfloor
Source code
: Rfloor x \is a Rint.Source code
Lemma
RfloorE
Source code
: Rfloor x = (Num.floor x)%:~R.Source code
Proof.
by []. Qed.
Lemma
mem_rg1_floor
Source code
: (range1 (Num.floor x)%:~R) x.Source code
Proof.
Lemma
mem_rg1_Rfloor
Source code
: (range1 (Rfloor x)) x.Source code
Proof.
Lemma
Rfloor_le
Source code
: Rfloor x <= x.Source code
Proof.
Lemma
lt_succ_Rfloor
Source code
: x < Rfloor x + 1.Source code
Proof.
Lemma
range1z_inj
Source code
: (range1 i1%:~R) x -> (range1 i2%:~R) x -> i1 = i2.Source code
Proof.
Lemma
range1rr
Source code
: (range1 x) x.Source code
Lemma
range1zP
Source code
: Rfloor x = i%:~R <-> (range1 i%:~R) x.Source code
Proof.
Lemma
Rfloor_natz
Source code
: Rfloor i%:~R = i%:~R :> R.Source code
Lemma
Rfloor0
Source code
: Rfloor 0 = 0 :> RSource code
Lemma
Rfloor1
Source code
: Rfloor 1 = 1 :> RSource code
Lemma
le_Rfloor
Source code
: {homo (@Rfloor R) : / x <= y}.Source code
Lemma
Rfloor_ge_int
Source code
( : int) : (i%:~R <= x)= (i%:~R <= Rfloor x).Source code
Proof.
Lemma
Rfloor_lt_int
Source code
( : int) : (x < i%:~R) = (Rfloor x < i%:~R).Source code
Proof.
Lemma
Rfloor_le0
Source code
: x <= 0 -> Rfloor x <= 0.Source code
Lemma
Rfloor_lt0
Source code
: x < 0 -> Rfloor x < 0.Source code
Proof.
Lemma
ltr_add_invr
Source code
: y < x -> exists , y + k.+1%:R^-1 < x.Source code
Proof.
End FloorTheory.
Section CeilTheory.
Variable : realType.
Implicit Types x y : R.
Lemma
isint_Rceil
Source code
: Rceil x \is a Rint.Source code
Lemma
Rceil0
Source code
: Rceil 0 = 0 :> R.Source code
Lemma
Rceil_ge
Source code
: x <= Rceil x.Source code
Lemma
le_Rceil
Source code
: {homo (@Rceil R) : / x <= y}.Source code
Lemma
Rceil_ge0
Source code
: 0 <= x -> 0 <= Rceil x.Source code
Lemma
RceilE
Source code
: Rceil x = (Num.ceil x)%:~R.Source code
Proof.
by []. Qed.
End CeilTheory.
Section Sup.
Context { : realType}.
Implicit Types A B : set R.
Lemma
le_down
Source code
: A `<=` down A.Source code
Proof.
Lemma
downK
Source code
: down (down A) = down A.Source code
Proof.
Lemma
has_sup_down
Source code
: has_sup (down A) <-> has_sup A.Source code
Proof.
split=> -[nzA nzubA].
case: nzA => x /downP[y yS le_xy]; split; first by exists y.
case: nzubA=> u /ubP ubA; exists u; apply/ubP=> z zS.
by apply/ubA; apply/downP; exists z.
case: nzA => x xA; split; first by exists x; apply/le_down.
case: nzubA => u /ubP ubA; exists u; apply/ubP=> y /downP [].
by move=> z zA /le_trans; apply; apply/ubA.
Qed.
case: nzA => x /downP[y yS le_xy]; split; first by exists y.
case: nzubA=> u /ubP ubA; exists u; apply/ubP=> z zS.
by apply/ubA; apply/downP; exists z.
case: nzA => x xA; split; first by exists x; apply/le_down.
case: nzubA => u /ubP ubA; exists u; apply/ubP=> y /downP [].
by move=> z zA /le_trans; apply; apply/ubA.
Qed.
Lemma
sup_le
Source code
: A `<=` down B -> nonempty A -> has_sup B ->Source code
sup A <= sup B.
Proof.
move=> le_AB nz_A hs_B; have hs_A: has_sup A.
split=> //; case: hs_B => _ [x ubx].
exists x; apply/ubP=> y /le_AB /downP[z zB le_yz].
by apply/(le_trans le_yz); move/ubP: ubx; apply.
rewrite leNgt -subr_gt0; apply/negP => lt_sup.
case: (sup_adherent lt_sup hs_A )=> x /le_AB xdB.
rewrite subKr => lt_Bx; case/downP: xdB => z zB.
move/(lt_le_trans lt_Bx); rewrite ltNge.
by move/ubP : (sup_upper_bound hs_B) => ->.
Qed.
split=> //; case: hs_B => _ [x ubx].
exists x; apply/ubP=> y /le_AB /downP[z zB le_yz].
by apply/(le_trans le_yz); move/ubP: ubx; apply.
rewrite leNgt -subr_gt0; apply/negP => lt_sup.
case: (sup_adherent lt_sup hs_A )=> x /le_AB xdB.
rewrite subKr => lt_Bx; case/downP: xdB => z zB.
move/(lt_le_trans lt_Bx); rewrite ltNge.
by move/ubP : (sup_upper_bound hs_B) => ->.
Qed.
Lemma
inf_le
Source code
: -%R @` B `<=` down (-%R @` A) -> nonempty B -> has_inf A ->Source code
inf A <= inf B.
Proof.
Lemma
supS
Source code
: A !=set0 -> has_sup B -> A `<=` B -> sup A <= sup B.Source code
Proof.
Lemma
infS
Source code
: has_inf A -> B !=set0 -> B `<=` A -> inf A <= inf B.Source code
Proof.
by move=> infA B0 AB; rewrite /inf lerN2 supS//;
[exact/nonemptyN|exact/has_inf_supN|exact/image_subset].
Qed.
[exact/nonemptyN|exact/has_inf_supN|exact/image_subset].
Qed.
Lemma
le_supP
Source code
: has_sup A -> sup A <= x <-> ubound A x.Source code
Proof.
Lemma
gt_sup
Source code
: has_sup A -> sup A < x -> forall , A y -> y < x.Source code
Proof.
Lemma
sup_down
Source code
: sup (down A) = sup A.Source code
Proof.
Lemma
lt_sup_imfset
Source code
{ : Type} ( : T -> R) :Source code
has_sup [set | exists , y = F x] ->
l < sup [set | exists , y = F x] ->
exists2 , l < F x & F x <= sup [set | exists , y = F x].
Proof.
set P := [set | _] => hs; rewrite -subr_gt0.
move=> /sup_adherent/(_ hs)[_ [x ->]]; rewrite subKr=> lt_lFx.
by exists x => //; move/ubP : (sup_upper_bound hs) => -> //; exists x.
Qed.
move=> /sup_adherent/(_ hs)[_ [x ->]]; rewrite subKr=> lt_lFx.
by exists x => //; move/ubP : (sup_upper_bound hs) => -> //; exists x.
Qed.
Lemma
lt_inf_imfset
Source code
{ : Type} ( : T -> R) :Source code
has_inf [set | exists , y = F x] ->
inf [set | exists , y = F x] < l ->
exists2 , F x < l & inf [set | exists , y = F x] <= F x.
Proof.
This is a specialization of the lemma `ub_le_sup` exploiting the fact
that `sup` is 0 when there is no supremum.
Lemma sup_ge0
Source code
: (forall , A x -> 0 <= x) -> 0 <= sup A.Source code
Proof.
Lemma
inf_ge0
Source code
: (forall , A x -> 0 <= x) -> 0 <= inf A.Source code
Proof.
Lemma
has_sup_wpZl
Source code
( : R) : 0 <= a -> has_sup A ->Source code
has_sup [set a * x | in A ].
Proof.
Lemma
gt0_has_supZl
Source code
( : R) : 0 < a -> has_sup [set a * x | in A ] ->Source code
has_sup A.
Proof.
move=> a0 [[_ [x Ax _]] [b ub]]; split; first by exists x.
by exists (b / a) => y Ay; rewrite ler_pdivlMr// mulrC ub//; exists y.
Qed.
by exists (b / a) => y Ay; rewrite ler_pdivlMr// mulrC ub//; exists y.
Qed.
Lemma
ge0_supZl
Source code
( : R) : 0 <= a -> sup [set a * x | in A ] = a * sup A.Source code
Proof.
rewrite le_eqVlt => /predU1P[<-|an0].
have [->|A0] := eqVneq A set0; first by rewrite image_set0 sup0 mulr0.
suff -> : [set 0 * x | in A] = [set 0] by rewrite sup1 mul0r.
under eq_fun do rewrite mul0r.
by rewrite set_cst (negbTE A0).
have [->|A0] := eqVneq A set0; first by rewrite image_set0 sup0 mulr0.
have [[[x Ax] ubA]|not_ex_sup] := pselect (has_sup A); last first.
rewrite !sup_out ?mulr0//.
by apply: contra_not not_ex_sup; exact: gt0_has_supZl.
apply/eqP; rewrite eq_le; apply/andP; split.
apply: ge_sup; first by exists (a * x), x.
by move=> _ [x0 Axo <-]; rewrite ler_pM2l// ub_le_sup.
rewrite -ler_pdivlMl// ge_sup//; first exact/set0P.
move=> x0 Ax0; rewrite ler_pdivlMl// ub_le_sup//; last by exists x0.
have [x1 ubx1] := ubA.
by exists (a * x1) => _ [x2 Ax2 <-]; rewrite ler_pM2l// ubx1.
Qed.
have [->|A0] := eqVneq A set0; first by rewrite image_set0 sup0 mulr0.
suff -> : [set 0 * x | in A] = [set 0] by rewrite sup1 mul0r.
under eq_fun do rewrite mul0r.
by rewrite set_cst (negbTE A0).
have [->|A0] := eqVneq A set0; first by rewrite image_set0 sup0 mulr0.
have [[[x Ax] ubA]|not_ex_sup] := pselect (has_sup A); last first.
rewrite !sup_out ?mulr0//.
by apply: contra_not not_ex_sup; exact: gt0_has_supZl.
apply/eqP; rewrite eq_le; apply/andP; split.
apply: ge_sup; first by exists (a * x), x.
by move=> _ [x0 Axo <-]; rewrite ler_pM2l// ub_le_sup.
rewrite -ler_pdivlMl// ge_sup//; first exact/set0P.
move=> x0 Ax0; rewrite ler_pdivlMl// ub_le_sup//; last by exists x0.
have [x1 ubx1] := ubA.
by exists (a * x1) => _ [x2 Ax2 <-]; rewrite ler_pM2l// ubx1.
Qed.
Lemma
ge0_infZl
Source code
( : R) : 0 <= a -> inf [set a * x | in A] = a * inf A.Source code
Proof.
Lemma
inf_pos
Source code
: inf [set : R | 0 < r] = 0.Source code
Proof.
Lemma
has_sup_Mn
Source code
: has_sup A -> has_sup [set x *+n | in A].Source code
Proof.
Lemma
sup_Mn
Source code
: sup [set x *+n | in A ] = sup A *+ n.Source code
Proof.
End Sup.
#[deprecated(since="mathcomp-analysis 1.14.0", note="Renamed `inf_le`.")]
Notation
le_inf
Source code
:= inf_le (only parsing).Source code
#[deprecated(since="mathcomp-analysis 1.14.0", note="Renamed `sup_le`.")]
Notation
le_sup
Source code
:= sup_le (only parsing).Source code
Lemma
int_lbound_has_minimum
Source code
( : set int) : B !=set0 -> lbound B i ->Source code
exists , B j /\ forall , B k -> j <= k.
Proof.
move=> [i0 Bi0] lbBi; have [n i0in] : exists , i0 - i = n%:Z.
by exists `|i0 - i|%N; rewrite gez0_abs // subr_ge0; exact: lbBi.
elim: n i lbBi i0in => [i lbBi /eqP|n ih i lbBi i0in1].
by rewrite subr_eq0 => /eqP i0i; exists i0; split =>// k Bk; rewrite i0i lbBi.
have i0i1n : i0 - (i + 1) = n by rewrite opprD addrA i0in1 -addn1 PoszD addrK.
have [?|/not_forallP] := pselect (lbound B (i + 1)); first exact: (ih (i + 1)).
move=> /contrapT[x /not_implyP[Bx i1x]]; exists x; split => // k Bk.
rewrite (le_trans _ (lbBi _ Bk)) //.
by move/negP : i1x; rewrite -ltNge ltzD1.
Qed.
by exists `|i0 - i|%N; rewrite gez0_abs // subr_ge0; exact: lbBi.
elim: n i lbBi i0in => [i lbBi /eqP|n ih i lbBi i0in1].
by rewrite subr_eq0 => /eqP i0i; exists i0; split =>// k Bk; rewrite i0i lbBi.
have i0i1n : i0 - (i + 1) = n by rewrite opprD addrA i0in1 -addn1 PoszD addrK.
have [?|/not_forallP] := pselect (lbound B (i + 1)); first exact: (ih (i + 1)).
move=> /contrapT[x /not_implyP[Bx i1x]]; exists x; split => // k Bk.
rewrite (le_trans _ (lbBi _ Bk)) //.
by move/negP : i1x; rewrite -ltNge ltzD1.
Qed.
Lemma
nat_has_minimum
Source code
( : set nat) : A !=set0 ->Source code
exists , A j /\ forall , A k -> (j <= k)%N.
Proof.
Section rat_in_itvoo.
Let
bound_div
Source code
( : archiRealFieldType) ( : R) : nat :=Source code
if y < 0 then 0%N else Num.bound (y / x).
Let
archi_bound_divP
Source code
( : archiRealFieldType) ( : R) :Source code
0 < x -> y < x *+ bound_div x y.
Proof.
move=> x0; have [y0|y0] := leP 0 y; last by rewrite /bound_div y0 mulr0n.
rewrite /bound_div (ltNge y 0) y0/= -mulr_natl -ltr_pdivrMr//.
by rewrite archi_boundP// (divr_ge0 _(ltW _)).
Qed.
rewrite /bound_div (ltNge y 0) y0/= -mulr_natl -ltr_pdivrMr//.
by rewrite archi_boundP// (divr_ge0 _(ltW _)).
Qed.
Lemma
rat_in_itvoo
Source code
( : archiRealFieldType) ( : R) :Source code
x < y -> exists , ratr q \in `]x, y[.
Proof.
move=> xy; move: (xy); rewrite -subr_gt0.
move=> /(archi_bound_divP 1); set n := bound_div _ _ => nyx.
have [m1 m1nx] : exists , m1.+1%:~R > x *+ n.
have := archi_bound_divP (x *+ n) ltr01; set p := bound_div _ _ => nxp.
have [x0|x0] := ltP 0 x.
exists p.-1; rewrite prednK // lt0n; apply: contraPN nxp => /eqP ->.
by apply/negP; rewrite -leNgt mulrn_wge0 // ltW.
by exists 0%N; rewrite (le_lt_trans _ ltr01) // mulrn_wle0.
have [m2 m2nx] : exists , m2.+1%:~R > - x *+ n.
have := archi_bound_divP (- x *+ n) ltr01; set p := bound_div _ _ => nxp.
have [x0|x0] := ltP 0 x.
by exists O; rewrite (le_lt_trans _ ltr01) // nmulrn_rle0// oppr_lt0.
exists p.-1; rewrite prednK // -(ltr_nat R) (le_lt_trans _ nxp) //.
by rewrite mulrn_wge0 // oppr_ge0.
have : exists , -(m2.+1 : int) <= m <= m1.+1 /\ m%:~R - 1 <= x *+ n < m%:~R.
have m2m1 : - (m2.+1 : int) < m1.+1.
by rewrite -(ltr_int R) (lt_trans _ m1nx)// rmorphN /= ltrNl // -mulNrn.
pose B := [set : int | m%:~R > x *+ n].
have m1B : B m1.+1 by [].
have m2B : lbound B (- m2.+1%:~R).
move=> i; rewrite /B /= -(opprK (x *+ n)) -ltrNl -mulNrn => nxi.
rewrite -(mulN1r m2.+1%:~R) mulN1r -lerNl.
by have := lt_trans nxi m2nx; rewrite intz -mulrNz ltr_int => /ltW.
have [m [Bm infB]] := int_lbound_has_minimum (ex_intro _ _ m1B) m2B.
have mN1B : ~ B (m - 1).
by move=> /infB; apply/negP; rewrite -ltNge ltrBlDr ltzD1.
exists m; split; [apply/andP; split|apply/andP; split] => //.
- by move: m2B; rewrite /lbound /= => /(_ _ Bm); rewrite intz.
- exact: infB.
- by rewrite leNgt; apply/negP; rewrite /B /= intrD in mN1B.
move=> [m [/andP[m2m mm1] /andP[mnx nxm]]].
have [/andP[a b] c] : x *+ n < m%:~R <= 1 + x *+ n /\ 1 + x *+ n < y *+ n.
split; [apply/andP; split|] => //; first by rewrite -lerBlDl.
by move: nyx; rewrite mulrnDl -ltrBrDr mulNrn.
have n_gt0 : n != 0%N by apply: contraTN nyx => /eqP ->; rewrite mulr0n ltr10.
exists (m%:Q / n%:Q); rewrite in_itv /= fmorph_div/= ratr_nat ratr_int.
rewrite ltr_pdivlMr ?ltr_pdivrMr ?ltr0n ?lt0n// !mulr_natr nxm/=.
apply: (le_lt_trans b c).
Qed.
move=> /(archi_bound_divP 1); set n := bound_div _ _ => nyx.
have [m1 m1nx] : exists , m1.+1%:~R > x *+ n.
have := archi_bound_divP (x *+ n) ltr01; set p := bound_div _ _ => nxp.
have [x0|x0] := ltP 0 x.
exists p.-1; rewrite prednK // lt0n; apply: contraPN nxp => /eqP ->.
by apply/negP; rewrite -leNgt mulrn_wge0 // ltW.
by exists 0%N; rewrite (le_lt_trans _ ltr01) // mulrn_wle0.
have [m2 m2nx] : exists , m2.+1%:~R > - x *+ n.
have := archi_bound_divP (- x *+ n) ltr01; set p := bound_div _ _ => nxp.
have [x0|x0] := ltP 0 x.
by exists O; rewrite (le_lt_trans _ ltr01) // nmulrn_rle0// oppr_lt0.
exists p.-1; rewrite prednK // -(ltr_nat R) (le_lt_trans _ nxp) //.
by rewrite mulrn_wge0 // oppr_ge0.
have : exists , -(m2.+1 : int) <= m <= m1.+1 /\ m%:~R - 1 <= x *+ n < m%:~R.
have m2m1 : - (m2.+1 : int) < m1.+1.
by rewrite -(ltr_int R) (lt_trans _ m1nx)// rmorphN /= ltrNl // -mulNrn.
pose B := [set : int | m%:~R > x *+ n].
have m1B : B m1.+1 by [].
have m2B : lbound B (- m2.+1%:~R).
move=> i; rewrite /B /= -(opprK (x *+ n)) -ltrNl -mulNrn => nxi.
rewrite -(mulN1r m2.+1%:~R) mulN1r -lerNl.
by have := lt_trans nxi m2nx; rewrite intz -mulrNz ltr_int => /ltW.
have [m [Bm infB]] := int_lbound_has_minimum (ex_intro _ _ m1B) m2B.
have mN1B : ~ B (m - 1).
by move=> /infB; apply/negP; rewrite -ltNge ltrBlDr ltzD1.
exists m; split; [apply/andP; split|apply/andP; split] => //.
- by move: m2B; rewrite /lbound /= => /(_ _ Bm); rewrite intz.
- exact: infB.
- by rewrite leNgt; apply/negP; rewrite /B /= intrD in mN1B.
move=> [m [/andP[m2m mm1] /andP[mnx nxm]]].
have [/andP[a b] c] : x *+ n < m%:~R <= 1 + x *+ n /\ 1 + x *+ n < y *+ n.
split; [apply/andP; split|] => //; first by rewrite -lerBlDl.
by move: nyx; rewrite mulrnDl -ltrBrDr mulNrn.
have n_gt0 : n != 0%N by apply: contraTN nyx => /eqP ->; rewrite mulr0n ltr10.
exists (m%:Q / n%:Q); rewrite in_itv /= fmorph_div/= ratr_nat ratr_int.
rewrite ltr_pdivlMr ?ltr_pdivrMr ?ltr0n ?lt0n// !mulr_natr nxm/=.
apply: (le_lt_trans b c).
Qed.
End rat_in_itvoo.
Section rational.
Context { : realType}.
Definition
rational
Source code
: set R := ratr @` [set: rat].sup : forall {R : realType}, set R -> R sup is not universe polymorphic Arguments sup {R} A%_classical_set_scope sup is transparent Expands to: Constant mathcomp.reals.reals.sup Declared in library mathcomp.reals.reals, line 137, characters 11-14
Source code
Lemma
rationalP
Source code
( : R) :Source code
rational r <-> exists ( : int) ( : nat), r = a%:~R / b%:R.
Proof.
Definition
irrational
Source code
: set R := ~` rational.inf : forall {R : realType}, set R -> R inf is not universe polymorphic Arguments inf {R} E%_classical_set_scope inf is transparent Expands to: Constant mathcomp.reals.reals.inf Declared in library mathcomp.reals.reals, line 138, characters 11-14
Source code
Lemma
irrationalE
Source code
: irrational = \bigcap_( : rat) ~` (ratr @` [set q]).Source code
Proof.
apply/seteqP; split => [r/= rE q _/=|r/= rE [q] _ qr]; last first.
by apply: (rE q Logic.I) => /=; exists q.
by apply: contra_not rE => -[_ -> <-{r}]; exists q.
Qed.
by apply: (rE q Logic.I) => /=; exists q.
by apply: contra_not rE => -[_ -> <-{r}]; exists q.
Qed.
End rational.