close
Warning:
Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Sep 14, 2010, 11:05:17 AM (14 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
109 | 109 | }}} |
110 | 110 | sustituyendo 'x' y 'X' por 'a', 'b' o 'c' y 'A', 'B' o 'C' respectivamente. |
| 111 | |
| 112 | === Nota matemática === |
| 113 | |
| 114 | En las ecuaciones y cálculos anteriores se han utilizado las siguientes relaciones: |
| 115 | {{{ |
| 116 | fNormal(mu, sigma, x+b) == fNormal(mu-b, sigma, x) |
| 117 | fNormal(mu, sigma, -x) == fNormal(-mu, sigma, x) |
| 118 | fNormal(mu, sigma, a*x) == fNormal(mu/a, sigma/a, x)/a ; con a>0 |
| 119 | }}} |
| 120 | donde: |
| 121 | {{{ |
| 122 | fNormal(mu, sigma, x) := 1/(Sqrt(2*Pi)*Sigma) * Exp(-(1/2)*((x-mu)/sigma)**2) |
| 123 | }}} |
| 124 | y también el siguiente resultado que nos permite multiplicar dos funciones de densidad normales: |
| 125 | {{{ |
| 126 | fNormal(muA, sigmaA, x) * fNormal(muB, sigmaB, x) == |
| 127 | fNormal((muA*sigmaB**2 + muB*sigmaA**2)/sigmaAB**2, sigmaA*sigmaB/sigmaAB, x) * fNormal(muA-muB, sigmaAB, 0) |
| 128 | }}} |
| 129 | donde: |
| 130 | {{{ |
| 131 | sigmaAB = Sqrt(sigmaA**2 + sigmaB**2) |
| 132 | }}} |