Difference between revisions of "Documentation/FR/Math/Solutions entrainements"

From Apache OpenOffice Wiki
< Documentation‎ | FR‎ | Math
Jump to: navigation, search
m (Entraînement 2 (les parenthèses))
m (Entraînement 3 (les modèles))
Line 38: Line 38:
  
 
== [[Documentation/FR/Math/Modeles#Entraînement 3|Entraînement 3]] (les modèles) ==
 
== [[Documentation/FR/Math/Modeles#Entraînement 3|Entraînement 3]] (les modèles) ==
* <math>2x\mathrm{-}1\mathrm{\le }3\mathrm{-}5x</math>
+
{| cellpadding="5"
* <math>x\mathrm{\in }A</math>,<math>A\mathrm{\cap }B\mathrm{=}\mathrm{\varnothing }</math>
+
! width="50%" align="left" | La formule
* <math>x\mathrm{\cdot }y\mathrm{=}0\mathrm{\Leftrightarrow }x\mathrm{=}0\mathrm{\vee }y\mathrm{=}0</math>
+
! width="50%" align="right" | peut être codée par
* <math>\sqrt[3]{{x}^{2}}\mathrm{=}{x}^{2\mathrm{/}3}</math>
+
|-
* <math>\frac{1}{2}\left(\frac{2}{3}+\frac{4}{5}\right)</math>
+
| align="left" | <math>2x\mathrm{-}1\mathrm{\le }3\mathrm{-}5x</math>
* <math>A\mathrm{=}\left(\frac{1}{2},\frac{1}{3},\frac{1}{4},\frac{1}{5},\dots \right)</math>
+
| align="right" | <code>'''2 x-1 <= 3-5 x'''</code>
* <math>\underset{1}{\overset{10}{\mathrm{\int }}}{n}^{2}\mathit{dn}</math>
+
|-
* <math>\begin{array}{c}2\left(x\mathrm{-}3\right)+2\mathrm{=}4\left(x+2\right)\mathrm{\Leftrightarrow }\\  
+
| align="left" | <math>x \in A</math>
 +
| align="right" | <code>'''x in A'''</code>
 +
|-
 +
| align="left" | <math>A\mathrm{\cap }B\mathrm{=}\mathrm{\varnothing }</math>
 +
| align="right" | <code>'''A intersection B= emptyset'''</code>
 +
|-
 +
| align="left" | <math>x\mathrm{\cdot }y\mathrm{=}0\mathrm{\Leftrightarrow }x\mathrm{=}0\mathrm{\vee }y\mathrm{=}0</math>
 +
| align="right" | <code>'''x cdot y=0 dlrarrow x=0 or y=0'''</code>
 +
|-
 +
| align="left" | <math>\sqrt[3]{{x}^{2}}\mathrm{=}{x}^{2\mathrm{/}3}</math>
 +
| align="right" | <code>'''nroot 3 x^2= x^{2 / 3}'''</code>
 +
|-
 +
| align="left" | <math>\frac{1}{2}\left(\frac{2}{3}+\frac{4}{5}\right)</math>
 +
| align="right" | <code>'''1 over 2 left ( 2 over 3 + 4 over 5 right )'''</code>
 +
|-
 +
| align="left" | <math>A\mathrm{=}\left(\frac{1}{2},\frac{1}{3},\frac{1}{4},\frac{1}{5},\dots \right)</math>
 +
| align="right" | <code>'''A=left lbrace 1 over 2 , 1 over 3 , 1 over 4 , 1 over 5 , dotslow right rbrace'''</code>
 +
|-
 +
| align="left" | <math>\underset{1}{\overset{10}{\mathrm{\int }}}{n}^{2}\mathit{dn}</math>
 +
| align="right" | <code>'''int from 1 to 10 n^2 dn'''</code>
 +
|-
 +
| align="left" | <math>\begin{array}{c}2\left(x\mathrm{-}3\right)+2\mathrm{=}4\left(x+2\right)\mathrm{\Leftrightarrow }\\  
 
2x\mathrm{-}4\mathrm{=}4x+8\mathrm{\Leftrightarrow }\\  
 
2x\mathrm{-}4\mathrm{=}4x+8\mathrm{\Leftrightarrow }\\  
 
x\mathrm{=}\mathrm{-}6\end{array}</math>
 
x\mathrm{=}\mathrm{-}6\end{array}</math>
 +
 +
| align="right" | <code>'''2(x-3)+2=4(x+2) dlrarrow newline
 +
2 x -4=4 x+8 dlrarrow newline
 +
x=-6'''</code>
 +
|}
  
 
== [[Documentation/FR/Math/Symboles_additionnels#Entraînement 4|Entraînement 4]] (les symboles additionnels) ==
 
== [[Documentation/FR/Math/Symboles_additionnels#Entraînement 4|Entraînement 4]] (les symboles additionnels) ==

Revision as of 13:11, 24 May 2010

Solutions des entraînements

Entraînement 1 (les bases)

La formule peut être codée par
(a-b)^2=a^2+b^2-2 a b
1 over R=1 over R_1+1 over R_2
3 "m" cdot 5 "m" = 15 "m"^2
1,6726 cdot 10^-27 "kg" = 1,0073 "u"

Entraînement 2 (les parenthèses)

La formule peut être codée par
a cdot {b over c}={a cdot b} over c
{8 y-3} over {5 n} - {y+2} over {2 n}
I= \[ 3 ; 8 \)
left lbrace x=2 right none

Entraînement 3 (les modèles)

La formule peut être codée par
2 x-1 <= 3-5 x
x in A
A intersection B= emptyset
x cdot y=0 dlrarrow x=0 or y=0
nroot 3 x^2= x^{2 / 3}
1 over 2 left ( 2 over 3 + 4 over 5 right )
A=left lbrace 1 over 2 , 1 over 3 , 1 over 4 , 1 over 5 , dotslow right rbrace
int from 1 to 10 n^2 dn
2(x-3)+2=4(x+2) dlrarrow newline

2 x -4=4 x+8 dlrarrow newline x=-6

Entraînement 4 (les symboles additionnels)

Entraînement 5 (les polices)

  • Fr.HT Math Couleur exemple.PNG

Entraînement 6 (les formules chimiques)


Chapitre précédent : Annexe 5 Formules chimiques

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools