Skip to content

Commit 0c08e35

Browse files
authored
Update VarianceEchantillon.adoc
1 parent a70a270 commit 0c08e35

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

fr/modules/ROOT/pages/commands/VarianceEchantillon.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
:page-en: commands/SampleVariance
33
ifdef::env-github[:imagesdir: /fr/modules/ROOT/assets/images]
44

5-
VarianceEchantillon( <Liste Nombres> )::
6-
Retourne la https://fr.wikipedia.org/Variance_(statistiques_et_probabilit%C3%A9s)#Estimation[variance
7-
d'échantillon] de la liste de nombres donnée.
5+
xref:commands/Commandes_Statistiques.adoc[Commandes Statistiques]
86

9-
stem:[\frac{1}\{n-1}\sum_\{i=1}^\{i=n} x_i^2 - \frac{n}\{n-1} \overline{x}^2 ]
7+
VarianceEchantillon( <Série brute> )::
8+
Retourne la https://fr.wikipedia.org/wiki/Variance_(statistiques_et_probabilit%C3%A9s)#Estimation[variance
9+
d'échantillon] de la liste _ Série brute_ de nombres donnée.
10+
11+
stem:[\frac{1}{n-1}\sum_{i=1}^{i=n} x_i^2 - \frac{n}{n-1} \overline{x}^2 ]
1012

1113
VarianceEchantillon( <Liste Nombres>, <Liste Effectifs> )::
1214

1315
[EXAMPLE]
1416
====
1517
16-
*Exemple :*
17-
1818
`++VarianceEchantillon({1, 2, 3, 4, 5},{3, 2, 4, 4, 1})++` donne _1.67_ (_option 2 décimales_).
1919
2020
====
@@ -23,7 +23,7 @@ ____________________________________________________________
2323
2424
image:32px-Menu_view_cas.svg.png[Menu view cas.svg,width=32,height=32] *Calcul formel* :
2525
26-
Cette commande fonctionne à l'identique dans la fenêtre Calcul formel
26+
Cette commande fonctionne à l'identique dans la fenêtre Calcul formel. (Pour moi, la seconde syntaxe est aussi acceptée, même si elle n'est pas proposée dans _Aide Saisie_.
2727
2828
Avec la possibilité de travailler en littéral.
2929
@@ -32,8 +32,8 @@ Si ces nombres ne sont pas définis, vous obtenez une formule littérale.
3232
[EXAMPLE]
3333
====
3434
35-
`++VarianceEchantillon({x, y, z})++` donne stem:[\frac{1}\{3} x² - \frac{1}\{3}x y - \frac{1}\{3}x z +
36-
\frac{1}\{3}y² - \frac{1}\{3}y z + \frac{1}\{3}z²], avec l'outil ou la commande Factoriser
37-
`++Factoriser(VarianceEchantillon({x, y, z}))++` donnestem:[\frac{x² - x y - x z + y² - y z + z²}\{3}].
35+
`++VarianceEchantillon({x, y, z})++` retourne stem:[\frac{1}{3} x² - \frac{1}{3}x y - \frac{1}{3}x z + \frac{1}{3}y² - \frac{1}{3}y z + \frac{1}{3}z²],
36+
37+
avec l'outil ou la commande Factoriser `++Factoriser(VarianceEchantillon({x, y, z}))++` retourne stem:[\frac{1}{3} \; \left(x^{2} + y^{2} + z^{2} - x \; y - x \; z - y \; z \right)].
3838
3939
====

0 commit comments

Comments
 (0)