Skip to content

Instantly share code, notes, and snippets.

View homeostasie's full-sized avatar
✍️
Working from home

Thomas homeostasie

✍️
Working from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am homeostasie on github.
  • I am thom986 (https://keybase.io/thom986) on keybase.
  • I have a public key ASBWmEPjRwECLx3FZ_HChJCFeUQHPBohb42LhiJ6u1X3Jgo

To claim this, I am signing this object:

;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
#!/usr/bin/env python
# Fonction factorielle
def factorielle(n):
res = 1;
while(n >= 2):
res = res*n
n = n - 1
return res
@homeostasie
homeostasie / complexe-algebrique.py
Created September 28, 2014 21:42
complexe-algebrique.py
#!/usr/bin/env python
# Pour les complexes, on définit j comme le complexe tel que j² = -1
j=complex(0,1) ;
# Série A - Données
print(" -------------------------- SÉRIE A ----")
print(" ----- Données -----")
@homeostasie
homeostasie / second-degre-script.py
Created September 28, 2014 21:40
second-degre-script.py
# Script python qui calul un discriminant
# et affiche les solutions de l'équation rentrée.
#!/usr/bin/env python
# Import modules
import math
# a*x**2 + b*x + c un trinôme du second degré.
print("Soit une équation de la forme : ax^2 + bx + c = 0")
@homeostasie
homeostasie / second-degre-fonctions.py
Created September 28, 2014 21:39
second-degre-fonctions.py
#!/usr/bin/env python
# Import modules
import math
import numpy
import matplotlib.pyplot as plt # import plot
def trinome(a,b,c,x):
return (a*x**2 + b*x + c)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Leçon 15 - AIRES ET PÉRIMÈTRES

1 - Aires d'une figure

a - Définition :

La surface d'une figure est l'intérieur d'une figure. Une unité étant choisie, l'aire d'une figure est la mesure de la surface. On peut par exemple utiliser un quadrillage et choisir le carreau comme unité.

b - Aires de figures usuelles

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Short Sectioned Assignment
% LaTeX Template
% Version 1.0 (5/5/12)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Frits Wenneker (http://www.howtotex.com)

Leçon 15 - AIRES ET PÉRIMÈTRES

1 - Aires d'une figure

Définition :

La surface d'une figure et l'intérieur d'une figure. Une unité étant choisie, l'aire d'une figure est la mesure de la surface. On peut par exemple utiliser un quadrillage et choisir le cjoris le bossearreau comment unité

Leçon 10 - CERCLE ET TRIANGLE