summary refs log tree commit diff stats
path: root/src/org/uni_notes
diff options
context:
space:
mode:
authorCrystal <crystal@wizard.tower>2023-10-11 22:49:01 +0100
committerCrystal <crystal@wizard.tower>2023-10-11 22:49:01 +0100
commita565af2ec831e21dc4cd38911cbbdefc7387320b (patch)
tree7ec0c944f023641c703dc0a14c6c3843528d6fa0 /src/org/uni_notes
downloadwww-a565af2ec831e21dc4cd38911cbbdefc7387320b.tar.gz
Finally, an update
Diffstat (limited to 'src/org/uni_notes')
-rwxr-xr-xsrc/org/uni_notes/algebra1.org496
-rwxr-xr-xsrc/org/uni_notes/alsd1.org33
-rwxr-xr-xsrc/org/uni_notes/analyse1.org477
-rwxr-xr-xsrc/org/uni_notes/architecture1.org370
4 files changed, 1376 insertions, 0 deletions
diff --git a/src/org/uni_notes/algebra1.org b/src/org/uni_notes/algebra1.org
new file mode 100755
index 0000000..4afc389
--- /dev/null
+++ b/src/org/uni_notes/algebra1.org
@@ -0,0 +1,496 @@
+#+title: Algebra 1
+#+AUTHOR: Crystal
+#+OPTIONS: ^:{}
+#+OPTIONS: num:nil
+#+EXPORT_FILE_NAME: ../../../uni_notes/algebra.html
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/colors.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/style.css"/>
+#+OPTIONS: html-style:nil
+#+OPTIONS: toc:nil
+
+* Contenu de la Matiére
+** Rappels et compléments (11H)
+- Logique mathématique et méthodes du raisonnement mathématique
+- Ensembles et Relations
+- Applications
+
+** Structures Algébriques (11H)
+- Groupes et morphisme de groupes
+- Anneaux et morphisme d'anneaux
+- Les corps
+
+** Polynômes et fractions rationnelles
+- Notion du polynôme à une indéterminée á coefficients dans un anneau
+- Opérations Algébriques sur les polynômes
+- Arithmétique dans l'anneau des polynômes
+- Polynôme dérivé et formule de Taylor
+- Notion de racine d'un polynôme
+- Notion de Fraction rationelle á une indéterminée
+- Décomposition des fractions rationelles en éléments simples
+
+* Premier cours : Logique mathématique et méthodes du raisonnement mathématique /Sep 25/ :
+
+Let *P* *Q* and *R* be propositions which can either be *True* or *False*. And let's also give the value *1* to each *True* proposition and *0* to each false one.
+
+/Ex:/
+- *5 ≥ 2* is a proposition, a correct one !!!
+- *The webmaster is a girl* is also a proposition, which is also correct.
+- *x is always bigger than 5* is *not* a proposition, because we CAN'T determine if it's correct or not as *x* changes.
+...etc
+
+In order to avoid repetition, and rewriting the proposition over and over, we just assign a capital letter to them such as *P Q* or *R*.
+
+So now we could write :
+*Let the proposition P be 5 ≥ 2, we notice that P is always True, therefor its validity is 1*
+
+We also have the opposite of *P*, which is *not(P)* but for simplicity we use *P̅* (A P with a bar on top, in case it doesn't load for you), now let's go back to the previous example:
+
+*Since we know that the proposition P is true, we can conclude that P̅ is false. As P and P̅ can NOT be true at the same time. It's like saying 5 is greater and also lesser than 2...doesn't make sense, does it ?*
+
+Now let's say we have two propositions, and we want to test the validity of their disjunction..... Okay what is this "disjunction" ? *Great Question Billy !!!* A disjunction is true if either propositions are true
+
+Ex:
+*Let proposition P be "The webmaster is asleep", and Q be "The reader loves pufferfishes". The disjunction of these two propositions can have 4 different values showed in this Table of truth (such a badass name):*
+
+| P | Q | Disjunction |
+|---+---+-------------|
+| 1 | 1 |           1 |
+| 1 | 0 |           1 |
+| 0 | 1 |           1 |
+| 0 | 0 |           0 |
+
+/What the hell is this ?/
+The first colomn is equivalent to saying : "The webmaster is asleep AND The reader loves pufferfishes"
+The second one means : "The webmaster is asleep AND The reader DOESN'T love pufferfishes (if you are in this case, then *I HATE YOU*)"
+The third one... /zzzzzzz/
+
+You got the idea !!!
+And since we are talking about a disjunction here, *one of the propositions* need to be true in order for this disjunction to be true.
+
+You may be wondering.... Crystal, can't we write a disjunction in magical math symbols ? And to this I respond with a big *YES*. A disjunction is symbolized by a *∨* . So the disjunction between proposition *P & Q* can be written this way : *P ∨ Q*
+
+What if, we want to test whether or not two propositions are true AT THE SAME TIME ? Long story short, we can, it's called a conjunction, same concept, as before, only this time the symbol is *P ∧ Q*, and is only true if *P* and *Q* are true. So we get a Table like this :
+
+| P | Q | P ∨ Q | P ∧ Q |
+|---+---+-------+-------|
+| 1 | 1 |     1 |     1 |
+| 1 | 0 |     1 |     0 |
+| 0 | 1 |     1 |     0 |
+| 0 | 0 |     0 |     0 |
+
+*Always remember: 1 means true and 0 means false*
+
+There are two more basics to cover here before going to some properties, the first one is implication symbolized by the double arrow *⇒*
+
+Implication is kinda hard for my little brain to explain, so I will just say what it means:
+
+*If P implies Q, this means that either Q, or the opposite of P are correct*
+
+or in math terms
+
+*P ⇒ Q translates to P̅ ∨ Q*
+Let's illustrate :
+
+| P | Q | P̅ | Q̅ | P ∨ Q | P ∧ Q | P ⇒ Q (P̅ ∨ Q) |
+|---+---+---+---+-------+-------+---------------|
+| 1 | 1 | 0 | 0 |     1 |     1 |             1 |
+| 1 | 0 | 0 | 1 |     1 |     0 |             0 |
+| 0 | 1 | 1 | 0 |     1 |     0 |             1 |
+| 0 | 0 | 1 | 1 |     0 |     0 |             1 |
+
+*If you look clearly, there is only one case where an implication is false. therefor you just need to find it, and blindly say that the others are correct. A rule of thumb is that: "A correct never implies a false", or  "If a 1 tries to imply a 0, the implication is a 0"*
+
+Aight, a last one and we are done!!! Equivalence, which is fairly easy, symbolized by a *⇔* symbol.
+
+A proposition is equivalent to another only when both of them have *the same value of truth* AKA: both true or both false. a little table will help demonstrate what i mean.
+
+| P | Q | P̅ | Q̅ | P ∨ Q | P ∧ Q | P ⇒ Q (P̅ ∨ Q) | P ⇔ Q |
+|---+---+---+---+-------+-------+---------------+-------|
+| 1 | 1 | 0 | 0 |     1 |     1 |             1 |     1 |
+| 1 | 0 | 0 | 1 |     1 |     0 |             0 |     0 |
+| 0 | 1 | 1 | 0 |     1 |     0 |             1 |     0 |
+| 0 | 0 | 1 | 1 |     0 |     0 |             1 |     1 |
+
+/Note: P implying Q is equivalent to P̅ implying Q̅, or: (P ⇒ Q) ⇔ (P̅ ⇒ Q̅)/
+
+** Properties:
+*** *Absorption*:
+(P ∨ P) ⇔ P
+
+(P ∧ P) ⇔ P
+
+*** *Commutativity*:
+(P ∧ Q) ⇔ (Q ∧ P)
+
+(P ∨ Q) ⇔ (Q ∨ P)
+
+*** *Associativity*:
+P ∧ (Q ∧ R) ⇔ (P ∧ Q) ∧ R
+
+P ∨ (Q ∨ R) ⇔ (P ∨ Q) ∨ R
+
+*** *Distributivity*:
+P ∧ (Q ∨ R) ⇔ (P ∧ Q) ∨ (P ∧ R)
+
+P ∨ (Q ∧ R) ⇔ (P ∨ Q) ∧ (P ∨ R)
+
+*** *Neutral element*:
+/We define proposition *T* to be always *true* and *F* to be always *false*/
+
+P ∧ T ⇔ P
+
+P ∨ F ⇔ P
+*** *Negation of a conjunction & a disjunction*:
+Now we won't use bars here because my lazy ass doesn't know how, so instead I will use not()!!!
+
+not(*P ∧ Q*) ⇔ P̅ ∨ Q̅
+
+not(*P ∨ Q*) ⇔ P̅ ∧ Q̅
+
+*A rule I really like to use here is: Break and Invert. Basically you break the bar into the three characters of the propositions, so you get not(P) not(∧ or ∨) /NOT AN ACTUAL MATH WRITING. DONT USE IT ANYWHERE ELSE OTHER THAN YOUR BRAIN/ and not(Q)*
+
+*** *Transitivity*:
+[(P ⇒ Q) (Q ⇒ R)] ⇔ P ⇒ R
+
+*** *Contraposition*:
+(P ⇒ Q) ⇔ (Q̅ ⇒ P̅)
+
+*** God only knows what this property is called:
+/If/
+
+(P ⇒ Q) is true
+
+and
+
+(Q̅ ⇒ Q) is true
+
+then
+
+Q is always true
+
+** Some exercices I found online :
+
+*** USTHB 2022/2023 Section B :
+
+**** Exercice 1: Démontrer les équivalences suivantes:
+1. (P ⇒ Q) ⇔ (Q̅ ⇒ P̅)
+
+   Basically we are asked to prove contraposition, so here we have ( P ⇒ Q ) which is equivalent to P̅ ∨ Q *By definition : (P ⇒ Q) ⇔  (P̅ ∨ Q)*
+
+
+   So we end up with : *(P̅ ∨ Q) ⇔ (Q̅ ⇒ P̅)*, now we just do the same with the second part of the contraposition. *(Q̅ ⇒ P̅) ⇔ (Q ∨ P̅)* therefor :
+
+
+   *(Q ∨ P̅) ⇔ (P̅ ∨ Q)*, which is true because of commutativity
+
+2. not(P ⇒ Q) ⇔  P ∧ Q̅
+
+
+Okaaaay so, let's first get rid of the implication, because I don't like it : *not(P̅ ∨ Q)*
+
+
+Now that we got rid of it, we can negate the whole disjunction *not(P̅ ∨ Q) ⇔ (P ∧ Q̅)*. Which is the equivalence we needed to prove
+
+3. P ⇒ (Q ∧ R) ⇔ (P ⇒ Q) ∧ (P ⇒ R)
+
+   One might be tempted to replace P with P̅ to get rid of the implication...sadly this isnt it. All we have to do here is resort to *Distributivity*, because yeah, we can distribute an implication across a {con/dis}junction
+
+4. P ∧ (Q ∨ R) ⇔ (P ∧ Q) ∨ (P ∧ R)
+
+   Literally the same as above 🩷
+
+
+**** Exercice 2: Dire si les propositions suivantes sont vraies ou fausses, et les nier:
+
+1. ∀x ∈ ℝ ,∃y ∈ ℝ*+, tels que e^x = y
+
+   For each x from the set of Real numbers, there exists a number y from the set of non-zero positive Real numbers that satisfies the equation : e^x = y
+
+
+"The function f(x)=e^x is always positive and non-null", the very definition of an exponential function !!!!
+
+
+*So the proposition is true*
+
+
+2. ∃x ∈ ℝ, tels que x^2 < x < x^3
+
+
+We just need to find a value that satisifies this condition...thankfully its easy....
+
+x² < x < x³ , we divide the three terms by x so we get :
+
+
+x < 1 < x² , or :
+
+
+*x < 1* ; *1 < x²* ⇔  *x < 1* ; *1 < x* /We square root both sides/
+
+
+We end up with a contradiction, therefor its wrong
+
+
+3. ∀x ∈ ℝ, ∃y ∈ ℝ tels que y = 3x - 8
+
+
+I dont really understand this one, so let me translate it "For any value of x from the set of Real numbers, 3x - 8 is a Real number".... i mean....yeah, we are substracting a Real number from an other real number...
+
+*Since substraction is an  Internal composition law in ℝ, therefor all results of a substraction between two Real numbers is...Real*
+
+4. ∃x ∈ ℕ, ∀y ∈ ℕ, x > y ⇒ x + y < 8
+
+   "There exists a number x from the set of Natural numbers such as for all values of y from the set of Natural numbers, x > y implies x + y < 8"
+
+
+Let's get rid of the implication :
+
+∃x ∈ ℕ, ∀y ∈ ℕ, (y > x) ∨ (x + y < 8) /There exists a number x from the set of Natural numbers such as for all values of y from the set of Natural numbers y > x OR x + y < 8/
+
+This proposition is true, because there exists a value of x that satisfies this condition, it's *all numbers under 8* let's take 3 as an example:
+
+
+*x = 3 , if y > 3 then the first condition is true ; if y < 3 then the second one is true*
+
+
+Meaning that the two propositions CAN NOT BE WRONG TOGETHER, either one is wrong, or the other
+
+
+y > x
+
+
+*y - x > 0*
+
+
+y + x < 8
+
+
+*y < 8 - x* /This one is always true for all values of x below 8, since we are working in the set ℕ/
+
+
+5. ∀x ∈ ℝ, x² ≥ 1 ⇔  x ≥ 1
+
+   ....This is getting stupid. of course it's true it's part of the definition of the power of 2
+
+
+* 2éme cours /Oct 2/
+
+** Quantifiers
+
+A propriety P can depend on a parameter x
+
+
+∀ is the universal quantifier which stands for "For any value of..."
+
+
+∃ is the existential quantifier which stands for "There exists at least one..."
+
+
+***** Example
+P(x) : x+1≥0
+
+P(X) is True or False depending on the values of x
+
+
+*** Proprieties
+**** Propriety Number 1:
+The negation of the universal quantifier is the existential quantifier, and vice-versa :
+
+- not(∀x ∈ E , P(x)) ⇔ ∃ x ∈ E, not(P(x))
+- not(∃x ∈ E , P(x)) ⇔ ∀ x ∈ E, not(P(x))
+
+***** Example:
+∀ x ≥ 1  x² > 5 ⇔ ∃ x ≥ 1 x² < 5
+**** Propriety Number 2:
+
+*∀x ∈ E, [P(x) ∧ Q(x)] ⇔ [∀ x ∈ E, P(x)] ∧ [∀ x ∈ E, Q(x)]*
+
+
+The propriety "For any value of x from a set E , P(x) and Q(x)" is equivalent to "For any value of x from a set E, P(x) AND for any value of x from a set E, Q(x)"
+***** Example :
+P(x) : sqrt(x) > 0 ;  Q(x) : x ≥ 1
+
+
+∀x ∈ ℝ*+, [sqrt(x) > 0 , x ≥ 1] ⇔ [∀x ∈ R*+, sqrt(x) > 0] ∧ [∀x ∈ R*+, x ≥ 1]
+
+
+*Which is true*
+**** Propriety Number 3:
+
+*∃ x ∈ E, [P(x) ∧ Q(x)] /⇒/ [∃ x ∈ E, P(x)] ∧ [∃ x ∈ E, Q(x)]*
+
+
+/Here its an implication and not an equivalence/
+
+***** Example of why it's NOT an equivalence :
+P(x) : x > 5  ;  Q(x) : x < 5
+
+
+Of course there is no value of x such as its inferior and superior to 5 at the same time, so obviously the proposition is false. However, the two propositions separated are correct on their own, because there is a value of x such as its superior to 5, and there is also a value of x such as its inferior to 5. This is why it's an implication and NOT AN EQUIVALENCE!!!
+**** Propriety Number 4:
+
+*[∀ x ∈ E, P(x)] ∨ [∀ x ∈ E, Q(x)] /⇒/ ∀x ∈ E, [P(x) ∨ Q(x)]*
+
+
+/Same here, implication and NOT en equivalence/
+
+
+** Multi-parameter proprieties :
+
+A propriety P can depend on two or more parameters, for convenience we call them x,y,z...etc
+
+***** Example :
+P(x,y): x+y > 0
+
+
+P(0,1) is a True proposition
+
+
+P(-2,-1) is a False one
+
+***** WARNING :
+
+∀x ∈ E, ∃y ∈ F , P(x,y)
+
+
+∃y ∈ F, ∀x ∈ E , P(x,y)
+
+
+Are different because in the first one y depends on x, while in the second one, it doesn't
+****** Example :
+∀ x ∈ ℕ , ∃ y ∈ ℕ y > x ------ True
+
+
+∃ y ∈ ℕ , ∀ x ∈ ℕ y > x ------ False
+
+**** Proprieties :
+1. not(∀x ∈ E ,∃y ∈ F P(x,y)) ⇔ ∃x ∈ E, ∀y ∈ F not(P(x,y))
+2. not(∃x ∈ E ,∀y ∈ F P(x,y)) ⇔ ∀x ∈ E, ∃y ∈ F not(P(x,y))
+
+** Methods of mathematical reasoning :
+*** Direct reasoning :
+
+To show that an implication P ⇒ Q is true, we suppose that P is true and we show that Q is true
+
+**** Example:
+Let a,b be two Real numbers, we have to prove that *a² + b² = 1 ⇒ |a + b| ≤ 2*
+
+
+We suppose that a²+b² = 1 and we prove that |a + b| ≤ 2
+
+
+a²+b²=1 ⇒  b² = 1 - a² ; a² = 1 - b²
+
+
+a²+b²=1 ⇒  1 - a² ≥ 0 ; 1 - b² ≥ 0
+
+
+a²+b²=1 ⇒  a² ≤ 1 ; b² ≤ 1
+
+
+a²+b²=1 ⇒ -1 ≤ a ≤ 1 ; -1 ≤ b ≤ 1
+
+
+a²+b²=1 ⇒ -2 ≤ a + b ≤ 2
+
+
+a²+b²=1 ⇒ |a + b| ≤ 2 *Which is what we wanted to prove, therefor the implication is correct*
+
+*** Reasoning by the Absurd:
+To prove that a proposition is True, we suppose that it's False and we must come to a contradiction
+
+
+And to prove that an implication P ⇒ Q is true using the reasoning by the absurd, we suppose that  P ∧ not(Q) is true, and then we come to a contradiction as well
+**** Example:
+Prove that this proposition is correct using the reasoning by the absurd : ∀x ∈ ℝ* , sqrt(1+x²) ≠ 1 + x²/2
+
+
+We assume that ∃ x ℝ* , sqrt(1+x²) = 1 + x²/2
+
+
+sqrt(1+x²) = 1 + x²/2 ; 1 + x² = (1+x²/2)² ; 1 + x² = 1 + x^4/4 + x²  ;  x^(4)/4 = 0 ... Which contradicts with our proposition, since x = 4 and we are working on the ℝ* set
+
+
+*** Reasoning by contraposition:
+If an implication P ⇒ Q is too hard to prove, we just have to prove not(Q) ⇒ not(P) is true !!! or in other words that both not(P) and not(Q) are true
+
+
+*** Reasoning by counter example:
+To prove that a proposition ∀x ∈ E, P(x) is false, all we have to do is find a single value of x from E such as not(P(x)) is true
+* 3eme Cours : /Oct 9/
+*** Reasoning by recurrence :
+P is a propriety dependent of *n ∈ ℕ*. If for n0 ∈ ℕ P(n0) is true, and if for n ≥ n0 (P(n) ⇒ P(n+1)) is true. Then P(n) is true for n ≥ n0
+
+**** Example:
+Let's prove that ∀ n ≥ 1 , (n,k=1)Σk = [n(n+1)]/2
+
+
+P(n) : (n,k=1)Σk = [n(n+1)]/2
+
+
+
+*Pour n = 1:* (1,k=1)Σk = 1 ; [n(n+1)]/2 = 1 . *So P(1) is true*
+
+
+
+For n ≥ 1. We assume that P(n) is true, OR : *(n, k=1)Σk = n(n+1)/2*. We now have to prove that P(n+1) is true, Or : *(n+1, k=1)Σk = (n+1)(n+2)/2*
+
+
+(n+1, k=1)Σk = 1 + 2 + .... + n + (n+1) ; (n+1, k=1)Σk = (n, k=1)Σk + (n+1) ; = n(n+1)/2 + (n+1) ; = [n(n+1) + 2(n+1)]/2 ; = *[(n+2)(n+1)]/2* /WHICH IS WHAT WE NEEDED TO FIND/
+
+
+*Conclusion: ∀n ≥ 1 , (n,k=1)Σk = n(n+1)/2*
+
+* 4eme Cours : Chapitre 2 : Sets and Operations
+** Definition of a set :
+A set is a collection of objects that share the sane propriety
+
+** Belonging, inclusion, and equality :
+a. Let E be a set. If x is an element of E, we say that x belongs to E we write *x ∈ E*, and if it doesn't, we write *x ∉ E*
+b. A set E is included in a set F if all elements of E are elements of F and we write *E ⊂ F ⇔ (∀x , x ∈ E ⇒ x ∈ F)*. We say that E is a subset of F, or a part of F. The negation of this propriety is : *E ⊄ F ⇔ ∃x , x ∈ E and x ⊄ F*
+c. E and F are equal if E is included in F and F is included in E, and we write *E = F ⇔ (E ⊂ F) et (F ⊂ E)*
+d. The empty set (symbolized by ∅) is a set without elements, and is included in all sets (by convention) : *∅ ⊂ E*
+
+** Intersections and reunions :
+*** Intersection:
+E ∩ F = {x / x ∈ E AND x ∈ F} ; x ∈ E ∩ F ⇔ x ∈ F AND x ∈ F
+
+
+x ∉ E ∩ F ⇔ x ∉ E OR x ∉ F
+
+*** Union:
+E ∪ F = {x / x ∈ E OR x ∈ F} ;  x ∈ E ∪ F ⇔ x ∈ F OR x ∈ F
+
+
+x ∉ E ∪ F ⇔ x ∉ E AND x ∉ F
+*** Difference between two sets:
+E\F(Which is also written as : E - F) = {x / x ∈ E and x ∉ F}
+*** Complimentary set:
+If F ⊂ E. E - F is the complimentary of F in E.
+
+
+FCE = {x /x ∈ E AND x ∉ F} *ONLY WHEN F IS A SUBSET OF E*
+*** Symentrical difference
+E Δ F = (E - F) ∪ (F - E) ; = (E ∪ F) - (E ∩ F)
+** Proprieties :
+Let E,F and G be 3 sets. We have :
+*** Commutativity:
+E ∩ F = F ∩ E
+E ∪ F = F ∪ E
+*** Associativity:
+E ∩ (F ∩ G) = (E ∩ F) ∩ G
+E ∪ (F ∪ G) = (E ∪ F) ∪ G
+*** Distributivity:
+E ∩ (F ∪ G) = (E ∩ F) ∪ (E ∩ G)
+E ∪ (F ∩ G) = (E ∪ F) ∩ (E ∪ G)
+*** Lois de Morgan:
+If E ⊂ G and F ⊂ G ;
+
+(E ∩ F)CG = ECG ∪ FCG ; (E ∪ F)CG = ECG ∩ FCG
+*** An other one:
+E - (F ∩ G) = (E-F) ∪ (E-G) ;  E - (F ∪ G) = (E-F) ∩ (E-G)
+*** An other one:
+E ∩ ∅ = ∅ ; E ∪ ∅ = E
+*** And an other one:
+E ∩ (F Δ G) = (E ∩ F) Δ (E ∩ G)
+*** And the last one:
+E Δ ∅ = E ; E Δ E = ∅
diff --git a/src/org/uni_notes/alsd1.org b/src/org/uni_notes/alsd1.org
new file mode 100755
index 0000000..2619592
--- /dev/null
+++ b/src/org/uni_notes/alsd1.org
@@ -0,0 +1,33 @@
+#+title: ALSD1
+#+AUTHOR: Crystal
+#+OPTIONS: ^:{}
+#+OPTIONS: num:nil
+#+EXPORT_FILE_NAME: ../../../uni_notes/alsd.html
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/colors.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/style.css"/>
+#+OPTIONS: html-style:nil
+#+OPTIONS: toc:nil
+
+* Contenu de la Matiére
+** Chapitre 1: Elements de Base
+- Algorithmique, procésseur, action.
+- Programme et languages de programmation.
+- Analyse des problémes.
+
+** Chapitre 2: Présentation du formalisme Algorithmique
+** Chapitre 3: Eléments de base du language C
+** Chapitre 4: Modularité( Fonction et Procédure )
+** Chapitre 5: Les structures des données statiques
+
+
+* Premier cours : Algorithmes /Oct 1/ :
+** Définition d'un algorithm :
+Un ensemble d'opérations ecrites dans le language naturel.
+
+*** Example d'un Algo : Résolution d'une équation du second ordre (ax²+bx+c=0)
+1. Si a=0 ET b=0 alors *l'équation n'est pas du 2nd ordre*.
+2. Si a=0 et b≠0 alors *x= -c/5* .
+3. Si a≠0 alors *calculer Δ= b²-4ac* :
+   a. Si Δ=0 alors *x=-b/2a*.
+   b. Si Δ<0 alors *l'équation n'as pas de solution*.
+   c. Si Δ>0 alors *x=[-b±sqrt(Δ)]/2a*
diff --git a/src/org/uni_notes/analyse1.org b/src/org/uni_notes/analyse1.org
new file mode 100755
index 0000000..e511781
--- /dev/null
+++ b/src/org/uni_notes/analyse1.org
@@ -0,0 +1,477 @@
+#+title: Analyse 1
+#+AUTHOR: Crystal
+#+OPTIONS: ^:{}
+#+OPTIONS: num:nil
+#+EXPORT_FILE_NAME: ../../../uni_notes/analyse.html
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/colors.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/style.css"/>
+#+OPTIONS: html-style:nil
+#+OPTIONS: toc:nil
+
+* Contenu de la Matiére
+** Chapitre 1 : Quelque propriétés de ℝ
+- Structure algébrique de ℝ
+- L'ordre dans ℝ
+- Majorant, minorant, borne superieure, borne inférieure
+
+** Chapitre 2 : Les suites numériques réelles
+- Définition : convergence, opérations sur les suites convergentes
+- Theoréme de convergence, Theoréme de ___ suites, sans suites, extension au limites infinies
+- Suites de cauchy, suites adjacentes et suites récurentes
+
+** Chapitre 3 : Limites et continuité des fonctions réelles d'une variable réelle
+- Les limites : définition, opérations sur les limites, les formes inditerminées
+- La continuité : définition, Theorémes fondamentaux
+- La continuité informe les fonctions Lepchitziennes
+
+** Chapitre 4 : La dérivabilité et son interprétation géometrique
+- Opérations sur les fonctions dérivales, Theoréme de Rolle, Theoréme des accroissements finis, régle de L'Hopital et formule de Taylor
+
+** Chapitre 5 : Les fonctions trigonométriques réciproques, fonctions hypérboliques réciproques
+- Comparaison asymptotique
+- Symbole de lamdau (lambda ?), et notions des fonctions équivalentes
+- Développements limites polynominaux (D.L) et opérations sur les D.L
+- Généralisations des D.L
+- Application au calcul de limite et l'étude des branches infinies
+
+
+* Premier cours : Quelque propriétés de ℝ /Sep 26/ :
+
+** La loi de composition interne dans E :
+@ : E x E ---> E
+    (x,y) ---> x @ y
+
+@ est une lois de composition interne seulement si :
+
+*∀ x,y ε E*
+
+
+*** *Example : Addition*
+Est ce que l'addition (+) est L.C.I dans ℕ  ?
+
+ℕ x ℕ ---> ℕ
+
+(x,y) ---> x + y ? /En gros : Pour que l'addition soit une L.C.I dans ℕ, il faut que: quand on additionne *n'importe quel* chiffre x et y de N, il faut que le résultat appertiens aussi a ℕ/
+
+∀ x,y ∈ ℕ , x + y ∈ ℕ /En gros: Pour TOUTE valeur de x et y appartenant a ℕ, leur somme est toujours dans ℕ/
+
+Donc : + est L.C.I dans ℕ
+
+*** *Example : soustraction*
+Est ce que la soustraction (-) est L.C.I dans ℕ?
+
+ℕ x ℕ ---> ℕ
+
+(x,y) ---> x - y ?
+
+
+∃ x , y ∈ ℕ , x - y ∉ ℕ /En gros: il existe au moins une valeur de x et y dans ℕ tel que leur différence n'est *PAS* dans ℕ . tel que : si x est 5, et y c'est 9. Leur différence est -4, qui appartiens pas a ℕ/
+
+** La loi de composition externe dans E :
+
+@ est L.C.E dans E, K est un corps
+
+K x E ---> E
+
+(a,x) ---> a @ x
+
+∀ (a , x) ∈ K x E , a @ x ∈ E
+
+** Groupes :
+/Soit E un ensemble, soit @ une L.C.I dans E/
+
+(E, @) est un groupe Si :
+
+*** Il contiens un élement neutre
+
+∀ x ∈ E ; ∃ e ∈ E
+
+x @ e = e @ x = x
+
+On appelle *e* élement neutre
+
+/Ex: (ℕ,+) accepte un élement neutre, qui est 0, parceque x + 0 = 0 + x = x....cependent (ℕ,+) n'est pas un groupe. La raison est dans la prochaine condition/
+
+*** Il contiens un élément symétrique
+
+∀ x ∈ E ; ∃ x' ∈ E ; x @ x' = x' @ x = e
+
+On appelle *x'* élèment symétrique
+
+/Dans l'example en haut, on remarque qu'il n'y ya pas de chiffre x' pour chaque chiffre x, qui est, l'hors de leur addition est egal a e (0), tout simplement car:/
+
+/x + x' = e ; x + x' = 0 ; x = -x'/
+
+*Or, Dans ℕ, on a pas de nombres négatifs*
+
+*** @ est cummutative :
+
+∀ (x , x') ∈ E x E ; x @ x' = x' @ x
+
+/L'addition est cummutative, la soustraction ne l'es pas. 5 + 3 ou 3 + 5 est pareil, mais 5 - 3 et 3 - 5 sont différents/
+
+** Anneaux :
+Soit E un ensemble, (E , @ , !) est un anneau si :
+*** (E ; @) est un groupe cummutatif
+*** ! est une loi associative :
+∀ x , y , z ∈ E
+
+(x ! y) ! z = x ! (y ! z)
+*** Distribution de ! par rapport à @ :
+∀ x , y , z ∈ E
+
+(x @ y) ! z = ( x ! z ) @ ( y ! z )
+*** L'existance d'un élèment neutre de ! :
+
+∀ x ∈ E , ∃ e ∈ E , x ! e = e ! x = x
+
+*** ! est cummutative :
+
+∀ x , y ∈ E , x ! y = y ! x
+
+** Corps :
+(E , @ , !) est un corps si les 5 conditions en haut sont vérifiées + cette condition :
+
+*** La symétrie :
+
+∀ x ∈ E ; ∃ x' ∈ E , x ! x' = x' ! x = e
+
+x' est l'élément symétrique de x par rapport à !
+(sauf élément neutre première lois )
+
+
+** Exercice : (ℝ, +, x) corps ou pas ?
+*** Est-ce un Anneau ?
+- (ℝ, +) est un groupe commutatif
+- x est une loi associative : (a x b) x c = a x (b x c)
+- On peut distribuer x par rapport a + : (a + b) x c = (a x c) + (b x c)
+- Il existe un élément neutre de x which is 1 : a x 1 = 1 x a = a
+- La multiplication est commutative : a x b = b x a
+
+Oui c'est un anneau
+*** Est-ce un corps ?
+- Oui : ∀ x ∈ ℝ\{e} ; x * x' = 1
+
+
+* 2nd cours :L'ordre dans ℝ, Majorant, minorant, borne superieure, borne inférieure /Oct 3/ :
+** L'ordre dans ℝ
+(ℝ, +, x) est un corps, Soit R une relation d'ordre dans ℝ si :
+
+1. R est antisymétrique :
+
+   ∀ x, y ℝ  ; (x R y et y R x) ⇒ (x = y)
+
+2. R est reflexive :
+
+  ∀ x ∈ ℝ ; x R x
+
+3. R est transitive :
+  ∀ x, y, z ∈ ℝ , (x R y and y R z) ⇒ x R z
+
+*** Exemples :
+**** Exemple numéro 1:
+(ℝ , +, x) est un corps. Est ce la relation < est une relation d'ordre dans ℝ ?
+
+
+Non, pourquoi ? parce que elle est pas réflexive : ∀ x ∈ ℝ, x < x **is obviously false**
+**** Exemple numéro 2:
+(ℝ , +, x) est un corps. Est ce la relation ≥ est une relation d'ordre dans ℝ ?
+
+1. (Antisymétrique) ∀ x, y ℝ ; (x ≥ y AND y ≥ x) ⇒ x = y  is true
+2. (Réflexive) ∀ x, y ℝ ; x ≥ x is true
+3. (Transitive) ∀ x, y, z ℝ ; (x ≥ y AND y ≥ z) ⇒ x ≥ z is also true
+
+** Majorant, minorant, borne supérieure, borne inférieure
+*** Majorant:
+Soit E un sous-ensemble de ℝ (E ⊆ ℝ)
+
+
+Soit a ∈ ℝ, a est un majorant de E Si :∀ x ∈ E , x ≤ a
+
+*** Minorant:
+Soit E un sous-ensemble de ℝ (E ⊆ ℝ)
+
+
+Soit b ∈ ℝ, b est un minorant de E Si :∀ x ∈ E , x ≥ b
+
+
+*** Borne supérieure:
+La borne supérieure est le plus petit des majorants /Sup(E) = Borne supérieure/
+
+*** Borne inférieure:
+La borne inférieure est le plus grand des minorant /Inf(E) = Borne inférieure/
+
+*** Maximum :
+E ⊆ ℝ, a est un maximum de E (Max(E)) Si : a ∈ E ; ∀x ∈ E, x ≤ a.
+*** Minimum :
+E ⊆ ℝ, b est un minimum de E (Min(E)) Si : b ∈ E ; ∀x ∈ E, x ≥ b.
+
+*** Remarques :
+A et B deux ensembles bornés (Minoré et Majoré) :
+1. A ∪ B est borné
+2. A ∩ B est borné
+3. Sup(A ∪ B)= Max(sup A, sup B)
+4. Inf(A ∩ B)= Min(inf A, inf B)
+5. Sup(A ∩ B)= Min(sup A, sup B) /Le plus petit des Supérieur de A et B/
+6. Inf(A ∩ B)= Max(inf A, inf B) /Le plus grand des inférieur de A et B/
+
+* 3rd cours :Les suites numériques /Oct 5/ :
+*** Définition :
+Soit (Un)n ∈ ℕ une suite numérique , (Un)n est une application de ℕ dans ℝ:
+
+
+ℕ ----> ℝ
+
+
+n ----> U(n) = Un
+
+1. (Un) ou (Un)n ∈ ℝ : une suite
+2. Un : terme général
+
+***** Exemple :
+U : ℕ* ----> ℝ
+
+
+    n  ----> 1/n
+
+
+    (Un) est une suite définit par Un = 1/n
+
+*** Définition N°2 :
+On peut définir une suite â partir d'une relation de récurrence entre deux termes successifs et le premier terme.
+***** Exemple :
+U(n+1) = Un /2
+
+
+U(1)= 1
+** Opérations sur les suites :
+*** La somme :
+Soient (Un) et (Vn) deux suites, la somme de (Un) et (Vn) est une suite de terme général Un + Vn
+*** Le produit :
+Soient (Un)n et (Vn)n deux suites alors (Un) x (Vn) est une autre suite de terme général Un x Vn
+*** Inverse d'une suite :
+Soit Un une suite de terme général Un alors l'inverse de (Un) est une autre suite (Vn) = 1/(Un) de terme général de Vn = 1/Un
+*** Produit d'une suite par un scalaire :
+Soit (Un) une suite de T.G Un
+
+
+∀ λ ∈ ℝ , λ(Un) n ∈ ℕ est une suite de T.G Vn= λUn
+
+** Suite bornée :
+Une suite (Un) est bornée si (Un) majorée et minorée
+** Suite majorée :
+Soit (Un) une suite
+
+
+U : (Un) est majorée par M ∈ ℝ ; ∀ n ∈ ℕ ; ∃ M ∈ ℝ , Un ≤ M
+
+** Suite minorée :
+Soit (Un) une suite
+
+
+U : (Un) est minorée par M ∈ ℝ ; ∀ n ∈ ℕ ; ∃ M ∈ ℝ , Un ≥ M
+
+** Suites monotones :
+*** Les suites croissantes :
+Soit (Un)n est une suite
+
+
+(Un) est croissante si : ∀ n ∈ ℕ ;  U(n+1) - Un ≥ 0  ⇔ Un+1 ≥ Un
+
+*** Les suites décroissantes :
+Soit (Un)n est une suite
+
+
+(Un) est décroissante si : ∀ n ∈ ℕ ;  U(n+1) - Un ≤ 0  ⇔ Un+1 ≤ Un
+
+
+* Série TD N°1 : /Oct 6/
+** Exo 1 :
+*** Ensemble A :
+
+A = {-1/n , n ∈ ℕ *}
+
+**** Borne inférieure
+∀ n ∈  ℕ*  , -1/n ≥ -1 . -1 est la borne inférieure de l'ensemble A
+
+**** Minimum :
+∀ n ∈  ℕ*  , -1/n ≥ -1 . -1 est le Minimum de l'ensemble A
+
+**** Borne supérieure :
+∀ n ∈  ℕ*  , -1/n ≤ 0 . 0 est la borne supérieure de l'ensemble A
+**** Maximum :
+L'ensemble A n'as pas de maximum
+*** Ensemble B :
+B = [-1 , 3[ ∩ ℚ
+**** Borne inférieure :
+Inf(B) = Max(inf([-1 , 3[) , inf(ℚ))
+
+
+Puisse que ℚ n'as pas de Borne inférieure, donc par convention c'est  *-∞*,
+
+
+*Inf(B) = -1*
+
+**** Borne supérieure :
+Sup(B) = Min(sup([-1 ,3[) , sup(ℚ))
+
+
+Puisse que ℚ n'as pas de Borne supérieure, donc par convention c'est  *+∞*,
+
+
+*Sup(B) = 3*
+
+**** Minimum :
+*Min(B) = -1*
+
+**** Maximum :
+L'ensemble B n'as pas de Maximum
+*** Ensemble C :
+C = {3n ,n ∈ ℕ}
+
+**** Borne inférieure :
+Inf(C) = 0
+
+**** Borne supérieure :
+Sup(C) = +∞
+**** Minimum :
+Min(C) = 0
+**** Maximum :
+L'ensemble C n'as pas de Maximum
+
+*** Ensemble D :
+D = {1 - 1/n , n ∈ ℕ*}
+**** Borne inférieure :
+Inf(D)= 0
+**** Borne supérieure :
+Sup(D)= 1
+**** Minimum :
+Min(D)= 0
+**** Maximum :
+L'ensemble D n'as pas de Maximum
+
+*** Ensemble E :
+E = { [2n + (-1)^n]/ n + 1 , n ∈ ℕ }
+
+
+*Les valeurs que E peut prendre sont : "(2n + 1)/(n+1)" Si n est pair, et "(2n - 1)/(n+1)" si n est impair*
+
+
+*On définit un ensemble F et G : F = { (2n + 1)/ (n+1) , n ∈ 2k},  G = { (2n - 1)/(n+1), n ∈ 2k+1}*
+
+
+*Donc E = F ∪ G*
+
+**** Borne inférieure :
+Inf(E) = Min(inf(F), inf(G))
+
+
+Inf(F) = 1 ; Inf(G) = -1
+
+
+*Inf(E)= -1*
+
+**** Borne supérieure :
+Sup(E) = Max(sup(F), sup(G))
+
+
+sup(F) = +∞ ; sup(G) = +∞
+
+
+*Sup(E)= +∞*
+**** Minimum :
+Min(E)= -1
+**** Maximum :
+E n'as pas de maximum
+** Exo 2 :
+*** Ensemble A :
+A = {x ∈ ℝ , 0 < x <√3}
+
+**** Borné
+*Oui*, Inf(A)= 0 ; Sup(A)=√3
+*** Ensemble B :
+B = { x ∈ ℝ , 1/2 < sin x <√3/2} ;
+**** Borné
+*∀ x ∈ B, sin x > 1/2 ∴ Inf(B)= 1/2*
+
+
+*∀ x ∈ B, sin x < √3/2 ∴ Sup(B)= √3/2*
+*** Ensemble C :
+C = {x ∈  ℝ , x³ > 3}
+**** Minoré
+*∀ x ∈ C, x³ > 3 ∴ Inf(C)= 3*
+*** Ensemble D :
+D = {x ∈ ℝ , e^x < 1/2}
+**** Borné
+*∀ x ∈ C, e^x > 0 ∴ Inf(C)= 0*
+
+
+*∀ x ∈ C, e^x < 1/2 ∴ Sup(C)= 1/2*
+*** Ensemble E :
+E = {x ∈ ℝ , ∃ p ∈ ℕ* : x = √2/p}
+**** Majoré
+p = √2/x . Donc : *Sup(E)=1*
+** Exo 3 :
+U0 = 3/2 ; U(n+1) = (Un - 1)² + 1
+*** Question 1 :
+Montrer que : ∀ n ∈ ℕ , 1 < Un < 2 .
+
+
+*(Un - 1)² ≥ 0 /Parce que c'est un carré/*
+
+
+*(Un - 1)² + 1 > 1* ; *U(n+1) ≥ 1*
+
+
+**** Raisonnement par récurrence :
+P(n) : ∀ n ∈ ℕ ; 1 < Un < 2
+
+
+P(0) est vraie : 1 < 3/2 < 2
+
+
+On suppose que P(n) est vraie et on vérifie P(n+1) pour une contradiction
+
+
+1< Un < 2 ; 0 < Un - 1 < 1 ; 0 < (Un - 1)² < 1 ; 1 < (Un - 1)² + 1< 2 ; *1 < U(n+1) < 2* Donc elle est correcte
+
+*** Question 2 :
+Montrer que (Un)n est strictement monotone :
+
+
+*U(n+1) - Un = (Un - 1)² + 1 - Un* ; *U(n+1) - Un = Un² + 1 - 2Un + 1 - Un* ; *U(n+1) - Un = Un² - 3Un + 2*
+
+
+On étudie *Un² - 3Un + 2* sur l'intervalle ]1, 2[ : Un² - 3Un + 2 = 0 est une équation du 2nd ordre, *Δ = 1* , elle accepte deux solutions : Un = 1 et Un = 2
+
+
+On déduit que *Un² - 3Un + 2* est négatif sur [1 , 2] et positif en dehors, donc *∀ 1 < Un < 2 , Un² - 3Un + 2 < 0* ; *∀ 1 < Un < 2 , U(n+1) - Un < 0* ; *∀ 1 < Un < 2 , U(n+1) < Un* Donc (Un)n est une suite strictement monotonne décroissante
+* 4th cours (Suite) : /Oct 10/
+** Les suites convergentes
+Soit (Un)n est une suite convergente si lim Un n--> +∞ = l
+*** Remarque :
+1. Un est une suite convergente alors Un est bornee
+2. Un est une suite convergente  lim Un n---> +∞ = l ⇔ lim |Un| n---> +∞ = |l|
+3. Un est une suite majoree et croissante ⇒ Un converge
+4. Un est une suite minoree et decroissante ⇒ Un converge
+5. Soient (Un) et (Vn) deux suites convergentes, alors
+   a. Un + Vn est convergente
+   b. Un * Vn est convergente
+   c. ∀λ ∈ ℝ , (λUn) converge
+6. Soit Un est une suite bornee et soit Vn une suite. lim Vn n->+∞ = 0 Alors lim Vn * Un n-> +∞ = 0
+** Theoreme d'encadrement
+Soient Un Vn et Wn trois suites ∀n ∈ ℕ, Un ≤ Vn ≤ Wn . et lim Un n->∞ = lim Wn n-> +∞  = l ⇒ lim Vn n-> +∞ = l
+** Suites arithmetiques
+Un est une suite arithmetique si : U(n+1) = Un + r ; r etant la raison de la suite
+*** Forme general
+*Un = U0 + nr* ; *Un = Up + (n - p)r*
+*** Somme des n premiers termes
+Un est une suite arithmetique, Sn = [(U0 + Un)(n + 1)]/2
+
+
+Sn = (n, k = 0)ΣUk est une somme partielle et lim Sn n->+∞ = k≥0ΣUk est une serie
+** Suites geometriques
+*** Forme general
+*Un = U0 x r^n*
+*** Somme des n premiers termes
+n ∈ ℕ\{1} Sn = U0 (1 - r^(n+1))/1-r
diff --git a/src/org/uni_notes/architecture1.org b/src/org/uni_notes/architecture1.org
new file mode 100755
index 0000000..3dde87d
--- /dev/null
+++ b/src/org/uni_notes/architecture1.org
@@ -0,0 +1,370 @@
+#+title: Architecture 1
+#+AUTHOR: Crystal
+#+OPTIONS: ^:{}
+#+OPTIONS: num:nil
+#+EXPORT_FILE_NAME: ../../../uni_notes/architecture.html
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/colors.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../src/css/style.css"/>
+#+OPTIONS: html-style:nil
+#+OPTIONS: toc:nil
+
+
+* Premier cours : Les systémes de numération /Sep 27/ :
+Un système de numération est une méthode pour représenter des nombres à l'aide de symboles et de règles. Chaque système, comme le décimal (base 10) ou le binaire (base 2), utilise une base définie pour représenter des valeurs numériques. Il est caractérisé par 3 entitiés mathématiques importantes:
+
+ 1. Une base (genre 10, ou 2)
+ 2. Un ensemble de chiffres
+ 3. Des régles de représentations des nombres
+
+*** *Examples :*
+/B10 est un systéme de numération caractérisé par:/
+- Base = 10
+- Un ensemble de chiffres : (0,1,2,3,4,5,6,7,8,9)
+
+/B16 est un autre systéme de numération caractérisé par:/
+- Base = 16
+- Un ensemble de chiffres : (0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F)
+
+  *Puisse-qu'on peut pas utiliser des nombres a deux chiffres, on utilise des lettres aprés 9, en leur donnant des valeurs tel que :*
+
+   A : 10 ; B : 11 ; C : 12 ; D : 13 ; E : 14 ; F : 15
+
+** Comment passer d'un systéme a base 10 a un autre
+
+On symbolise un chiffre dans la base x par : (Nombre)x
+
+*** Pour les chiffres entiers :
+*On fait une division successive, on prends le nombre 3257 comme exemple, on veut le faire passer d'une base décimale á une base 16:*
+
+
+(3257)10 ----> (?)16
+
+
+On dévise 3257 par 16, et les restants de la division serra la valeur en base16:
+
+3257/16 = 203 + *9* / 16
+
+203/16 = 12 + *B* / 16  /REMARQUE, 11 N'APPARTIENS PAS A L'ENSEMBLE DES CHIFFRES EN BASE16, CE QUI VEUT DIRE QU'ON LE REMPLACE PAR SON EQUIVALENT, DANS CE CAS LA: *B*/
+
+12/16 = 0 + *C* / 16 /Pareil ici, 12 n'existe pas, donc c'est C. Autre note : La division s'arréte quand le résultat de la division est nul/
+
+**** *Conclusion:*
+
+(3257)10 ----> (CB9)16
+
+*** Pour les chiffres non entiers :
+
+*On fait la division successive pour la partie entiére, et une multiplication successive pour la partie rationelle:*
+
+(3257,32)10 ----> (?)16
+
+On a déja la partie entiére donc on s'occupe de la partie aprés la virgule:
+
+0,32 x 16 = *5*,12
+
+0,12 x 16 = *1*,92
+
+0,92 x 16 = *E*,72 /On a pas de 15 donc c'est un E/
+
+0,72 x 16 = *B*,52
+
+0,52 x 16 = *8*,32
+
+0,32 x 16 = *5*,12
+
+...
+
+/On s'arréte quand on trouve un chiffre entier, et si on trouve pas, on s'arréte quand on remarque une répetition, dans ce cas la, la séquance 51EB8 vas se répéter indéfiniment, donc on se contente d'écrire la partie qui se répéte avec une barre en haut/
+
+
+(3257,32)10 ----> (CB9, _51EB8_)16
+
+
+* 2nd cours : Les systèmes de numération (Suite) /Oct 3/ :
+** Comment passer d'une base N a la base 10 :
+
+Prenons comme exemple le nombre (11210,0011)3 , chaque chiffre dans ce nombre a un rang qui commence par 0 au premier chiffre (a gauche de la virgule) et qui augmente d'un plus qu'on avance a gauche, et diminue si on part a droite. Dans ce cas la :
+
+
+(11210,0011)3 ; le 0 est de rang 0, le 1 est de rang 1, le 2 est de rang 2, le 1 est de rang 3, le 1 est de rang 4. Et si on part du coté de la virgule, 0 est de rang -1, 0 est de rang -2, le 1 est de rang -3, et le 1 est de rang -4.
+
+
+Et pour passer a la base 10, il suffit d'appliquer cette formule : *Chiffre x Base^(rang) + 2emeChiffre x Base^(rang)... etc*, donc dans notre example:
+
+
+/0 x 3° + 1 x 3¹ + 2 x 3² + 1 x 3³ + 1 x 3^4 + 0 x 3¯¹ + 0 x 3¯² + 1 x 3¯³ + 1 x 3^(-4) ≈ (129,05)10/
+
+
+** Comment passer d'une base N a une base N^(n) :
+
+Si il ya une relation entre une base et une autre, on peut directement transformer vers cette base.
+
+*** Exemple :
+Pour passer de la base 2 a la base 8 (8 qui est 2³) on découpe les chiffres 3 par 3
+
+
+(1 101 011, 011)2 ; Pour le dernier 1 qui est seul ~tout comme moi~ il suffit d'ajouter des 0 à gauche (car on peut) pour compléter le découpage.
+
+
+(001 101 011, 011)2; Next step c'est de dessiner le tableau de conversion de la base 2 a la base 8 ( un tableau a 3 bits )
+
+
+| N |   |   |   |
+|---+---+---+---|
+| 0 | 0 | 0 | 0 |
+| 1 | 0 | 0 | 1 |
+| 2 | 0 | 1 | 0 |
+| 3 | 0 | 1 | 1 |
+| 4 | 1 | 0 | 0 |
+| 5 | 1 | 0 | 1 |
+| 6 | 1 | 1 | 0 |
+| 7 | 1 | 1 | 1 |
+
+
+Pour remplir on a qu'a diviser les chiffres en deux, et mettre des 0 dans la première partie et des 1 dans la 2éme, et en faire de même pour les autres colonnes .
+
+
+Maintenant il suffit de trouver l'équivalent de la base2 en base8 :
+
+
+001 c'est 1 ; 101 c'est 5 ; 011 c'est 3 ; donc *(1101011,011)2 ---> (153,3)8*
+
+** L'arithmétique binaire :
+*** L'addition :
+0 + 0 = 0 On retiens 0
+
+
+1 + 0 = 1 On retiens 0
+
+
+0 + 1 = 1 On retiens 0
+
+
+1 + 1 = 0 On retiens 1
+
+
+1 + 1 + 1 = 1 On retiens 1
+
+
+Donc 0110 + 1101 = 10011
+
+*** La soustraction :
+0 - 0 = 0 On emprunt = 0
+
+
+1 - 0 = 1 On emprunt = 0
+
+
+0 - 1 = 1 On emprunt = 1
+
+
+1 - 1 = 0 On emprunt = 0
+
+
+** TP N°1 :
+*** Exo1:
+| Base 10  | Base 2           | Base 3        | Base 8 | Base 16 |
+|----------+------------------+---------------+--------+---------|
+| 22,75    | 10110,11         | 211, _20_     | 26,6   | F6,C    |
+| 684,125  | 1010101100,001   | 221100, _01_  | 1254,1 | 2AC,2   |
+| 3931,625 | 111101011011,101 | 1101121, _12_ | 7533,5 | F5B,A   |
+| 52,38    | 110100,011       | 1221,101      | 64,3   | 34,6147 |
+| 10,67    | 1010,101         | 23,5          | 12,5   | A,AB85  |
+
+**** (10110,11)2
+0 x 2° + 1 x 2¹ + 1 x 2² + 0 x 2³ + 1 x 2^(4) + 1 x 2¯¹ + 1 x 2¯² = (22.75)10
+
+
+***** (22,75)10 ----> (3)
+
+
+
+22/3 = 7 R *1* ; 7/3 = 2 R *1* ; 2/3 = 0 R *2*
+
+
+0,75 x 3 = *2*.25 ; 0,25 x 3 = *0*.75 .....
+
+
+(22,75)10 ----> (211, _20_)
+
+***** (10110,11)2 ----> (8)
+8 = 2³ ; (010 110,110)2 ----> (?)8
+
+
+En utilisant le tableau 3bits :
+
+
+010 : 2 ; 110 : 6 ; 110 : 6
+
+
+(10110,11)2 ----> (26,6)8
+
+***** (22,75)10 ----> (16)
+22/16 = 1 R *6* ; 1/16 : 0 R *F*
+
+
+0,75 x 16 = *C*
+
+
+(22,75)10 ----> (F6,C)16
+
+**** (1254,1)8
+4 x 8° + 5 x 8¹ + 2 x 8² + 1 x 8³ + 1 x 8¯¹ = (684,125)10
+
+***** (1254,1)8 ----> (?)2
+En utilisant le tableau 3bits :
+
+
+001 010 101 100,001 /We will get rid of the leading zeros/
+
+
+(1010101100,001)2
+
+***** (684,125)10 ----> (?)3
+684/3 = 228 R *0* ; 228/3 = 76 R *0* ; 76/3 = 25 R *1* ; 25/3 = 8 R *1* ; 8/3 = 2 R *2* ; 2/3 = 0 R *2*
+
+
+0,125 x 3 = *0*,375 ; 0,375 x 3 = *1*,125
+
+
+(221100, _01_)3
+
+***** (684,125)10 ----> (?)16
+684/16 = 42 R *C* ; 42/16 = 2 R *A* ; 2/16 0 R *2*
+
+
+0,125 x 16 = *2*
+
+
+(2AC,2)16
+
+**** (F5B,A)16
+11 x 16° + 5 x 16 + 15 x 16² + 10 x 16¯¹ = (3931,625)10
+***** (3931,625)10 ----> (8)
+3931/8 = 491 R *3* ; 491/8 = 61 R *3* ; 61/8 = 7 R *5* ; 7/8 = 0 R *7*
+
+
+0,625 x 8 = *5*
+
+
+(7533,5)8
+***** (7533,5)8 ----> (2)
+
+En utilisant le tableau 3bits
+
+(111 101 011 011,101)2
+
+***** (3931,625)10 ----> (3)
+3931/3 = 1310 R *1* ; 1310/3 = 436 R *2* ; 436/3 = 145 R *1* ; 145/3 = 48 R *1* ; 48/3 = 16 R *0* ; 16/3 = 5 R *1* ; 5/3 = 1 R *2* ; 1/3 = 0 R *1*
+
+
+0.625 x 3 = *1*,875 ; 0,875 x 3 = *2*,625
+
+
+(1101121, _12_)3
+
+**** (52,38)10
+52/2 = 26 R *0* ; 26/2 = 13 R *0* ; 13/2 = 6 R *1* ; 6/2 = 3 R *0* ; 3/2 = 1 R *1* ; 1/2 = 0 R *1*
+
+
+0,38 x 2 = *0*,76 ; 0,76 x 2 = *1*,52 ; 0,52 x 2 = *1*,04 ; 0,04 x 2 = *0*,08 ....
+
+
+(110100,0110)2
+
+***** (52,38)10 ----> (3)
+52/3 = 17 R *1* ; 17/3 = 5 R *2* ; 5/3 = 1 R *2* ; 1/3 = 0 R *1*
+
+
+0,38 x 3 = *1*.14 ; 0,14 x 3 = *0*.42 ; 0,42 x 3 = *1*.26 ; 0.26 x 3 = *0*.78 ...
+
+
+(1221,101)3
+
+***** (110100,011)2 ----> (8)
+En utilisant le tableau 3bits:
+
+
+(110 100,011)2 ----> (64,3)8
+
+***** (52,38)10 ----> (16)
+52/16 = 3 R *4* ; 3/16 = 0 R *3*
+
+
+0,38 x 16 = *6*,08 ; 0,08 x 16 = *1*,28 ; 0,28 x 16 = *4*,48 ; 0,48 x 16 = *7*,68 ....
+
+
+(34,6147)16
+
+**** (23,5)3
+3 x 3° + 2 x 3 + 5 x 3¯¹ = (10.67)10
+
+***** (10,67)10 ----> (2)
+10/2 = 5 R *0* ; 5/2 = 2 R *1* ; 2/2 = 1 R *0* ; 1/2 = 0 R *1*
+
+
+0,67 x 2 = *1*,34 ; 0,34 x 2 = *0*,68 ; 0,68 x 2 = *1*,36 ; 0,36 x 2 = *0*,72 ...
+
+
+(1010,101)2
+
+***** (001 010,101)2 ----> (8)
+*Ô Magic 3bits table, save me soul, me children and me maiden:*
+
+
+(12,5)8
+***** (10,67)10 ----> (16)
+10/16 = 0 R *A*
+
+
+0,67 x 16 = *A*,72 ; 0,72 x 16 = *B*,52 ; 0,52 x 16 = *8*,32 ; 0,32 x 16 = *5*,12 ...
+
+
+(A,AB85)16
+
+*** Exo2:
+**** (34)? = (22)10
+(34)a = (22)10 ; 4 x a° + 3 x a = 22 ; 4 + 3a = 22 ; 3a = 18
+
+
+*a = 6*
+**** (75)? = (117)10
+(75)b = (117)10 ; 5 x b° + 7 x b¹ = 117 ; 5 + 7b = 117 ; 7b = 112
+
+
+*b = 16*
+*** Exo3:
+**** (101011)2 + (111011)2
+  101011 + 111011 = 1100110
+**** (1011,1101)2 + (11,1)2
+  1011,1101 + 11,1000 = 1111,0101
+**** (1010,0101)2 - (110,1001)2
+1010,0101 - 110,1001 = 11,1100
+** L'arithmétique binaire (Suite): /Oct 4/
+*** La multiplication :
+0 x 0 = 0
+
+
+0 x 1 = 0
+
+
+1 x 0 = 0
+
+
+1 x 1 = 1
+
+*** La division :
+On divise de la manière la plus normale du monde !!!
+* 4th cours : Le codage /Oct 10/
+** Le codage des entiers positifs
+Le codage sur n bits permet de representer tout les entiers naturels compris entre [0, 2^n - 1]. On peut coder sur 8bits les entiers entre [0;2^8 - 1(255)]
+** Le codage des nombres relatifs
+*** Remarque
+Quelque soit le codage utilise, par convention le dernier bit est reserve pour le signe. ou 1 est negatif et 0 est positif.
+*** Le codage en signe + valeur absolue (SVA):
+Avec n bits le n eme est reserve au signe : [-(2^n-1)-1 , 2^n-1 -1]. Sur 8bits [-127, 127]
+
+*** Codage en compliment a 1 (CR):
+On obtiens le compliment a 1 d'un nombre binaire en inversant chaqu'un de ses bits (1 -> 0 et 0-> 1) les nombres positifs sont la meme que SVA (il reste tel qu'il est)
+*** Codage en compliment a 2 (CV):
+C'est literallement CR + 1 pour les negatifs et SVA pour les nombres positifs