Library verre

Require Import Cring ssreflect ssrfun ssrbool eqtype ssrnat finset bigop.
Require Import seq choice fintype tuple div zmodp ssralg ssrnum.


Local Open Scope ring_scope.
Import GRing.Theory.

Section Verre.

(* Comme Coq ne connait rien en géométrie on va poser des hypothèses          *)

(* Le corps des coordonnées                                                   *)
Variable R : rcfType.

(* Le nombre Pi                                                               *)

Variable Pi : R.

Hypothesis NZPi : Pi != 0.

(* La racine carrée                                                           *)

Definition sqrt (x : R) := Num.sqrt x.

(* La racine cubique                                                          *)

Variable sqrt3 : R -> R.
Hypothesis sqrt3E : forall x, 0 <= x -> (sqrt3 x) ^+ 3 = x.

(* Le rayon du verre                                                          *)

Variable r : R.

Hypothesis NZr : r != 0.

(* La hauteur du verre                                                        *)

Variable h : R.

Hypothesis NZh : h != 0.

(* Formule du volume pour un cylindre                                         *)

Definition lvol h1 := Pi * r ^+ 2 * h1.

(* Le coefficient pour un cône                                                *)

Definition ccoef := r / h.

(* Formule du volume pour un cône                                             *)

Definition cvol h1 := Pi/ 3%:R * ccoef ^+ 2 * h1 ^+ 3.

(* Rapport entre le volume d'un cylindre et d'un cone                         *)

Fact lcrap : cvol h / lvol h = 1 / 3%:R.

(* La hauteur pour avoir la moitié du volume                                   *)

Definition chalf := h / sqrt3 2%:R.

Fact chalfV : cvol chalf = cvol h / 2%:R.

(* Le coefficient pour un paraboloïde                                          *)

Definition pcoef := h / r ^+ 2.

(* Formule du volume pour un paraboloïde                                       *)

Definition pvol h1 := Pi/ (2%:R * pcoef) * h1 ^+ 2.

(* Rapport entre le volume d'un cylindre et d'un paraboloïde                   *)

Fact lprap : pvol h / lvol h = 1 / 2%:R.

(* La hauteur pour avoir la moitié du volume                                   *)

Definition phalf := h / sqrt 2%:R.

Fact phalfV : pvol phalf = pvol h / 2%:R.

End Verre.

This page has been generated by coqdoc